Skip to content
This repository was archived by the owner on Nov 2, 2018. It is now read-only.

Commit 392ea6c

Browse files
committed
Fix build warnings
1 parent 03dbf06 commit 392ea6c

File tree

4 files changed

+30
-24
lines changed
  • src
    • Microsoft.Extensions.DependencyInjection.Abstractions
    • Microsoft.Extensions.DependencyInjection.Specification.Tests
    • Microsoft.Extensions.DependencyInjection
  • test/Microsoft.Extensions.DependencyInjection.Tests

4 files changed

+30
-24
lines changed

src/Microsoft.Extensions.DependencyInjection.Abstractions/project.json

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
{
22
"version": "1.0.0-*",
33
"description": "Abstractions for dependency injection.\r\nCommonly used types:\r\nMicrosoft.Extensions.DependencyInjection.IServiceCollection\r\nMicrosoft.Extensions.DependencyInjection.ServiceCollectionExtensions",
4-
"tags": [
5-
"dependencyinjection",
6-
"di"
7-
],
8-
"repository": {
9-
"type": "git",
10-
"url": "git://github.com/aspnet/dependencyinjection"
4+
"packOptions": {
5+
"repository": {
6+
"type": "git",
7+
"url": "git://github.com/aspnet/dependencyinjection"
8+
},
9+
"tags": [
10+
"dependencyinjection",
11+
"di"
12+
]
1113
},
12-
"compilationOptions": {
14+
"buildOptions": {
1315
"warningsAsErrors": true,
1416
"keyFile": "../../tools/Key.snk",
1517
"nowarn": [

src/Microsoft.Extensions.DependencyInjection.Specification.Tests/project.json

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
{
22
"version": "1.0.0-*",
33
"description": "Suite of xUnit.net tests to check for container compatibility with Microsoft.Extensions.DependencyInjection.",
4-
"tags": [
5-
"dependencyinjection",
6-
"di"
7-
],
4+
"packOptions": {
5+
"tags": [
6+
"dependencyinjection",
7+
"di"
8+
]
9+
},
810
"dependencies": {
911
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-*",
1012
"xunit.assert": "2.1.0",
1113
"xunit.extensibility.core": "2.1.0"
1214
},
13-
"compilationOptions": {
15+
"buildOptions": {
1416
"warningsAsErrors": true,
1517
"keyFile": "../../tools/Key.snk",
1618
"nowarn": [

src/Microsoft.Extensions.DependencyInjection/project.json

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
{
22
"version": "1.0.0-*",
33
"description": "Default implementation of dependency injection for Microsoft.Extensions.DependencyInjection.",
4-
"tags": [
5-
"dependencyinjection",
6-
"di"
7-
],
8-
"repository": {
9-
"type": "git",
10-
"url": "git://github.com/aspnet/dependencyinjection"
4+
"packOptions": {
5+
"repository": {
6+
"type": "git",
7+
"url": "git://github.com/aspnet/dependencyinjection"
8+
},
9+
"tags": [
10+
"dependencyinjection",
11+
"di"
12+
]
1113
},
12-
"compilationOptions": {
14+
"buildOptions": {
1315
"warningsAsErrors": true,
1416
"keyFile": "../../tools/Key.snk",
1517
"nowarn": [

test/Microsoft.Extensions.DependencyInjection.Tests/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
{
22
"version": "1.0.0-*",
3-
"compilationOptions": {
3+
"buildOptions": {
44
"keyFile": "../../tools/Key.snk",
55
"warningsAsErrors": true
66
},
77
"dependencies": {
8+
"dotnet-test-xunit": "1.0.0-*",
89
"Microsoft.NETCore.Platforms": "1.0.1-*",
910
"Microsoft.AspNetCore.Testing": "1.0.0-*",
1011
"Microsoft.Extensions.DependencyInjection": "1.0.0-*",
@@ -22,8 +23,7 @@
2223
"version": "1.0.0-*",
2324
"type": "platform"
2425
},
25-
"System.Diagnostics.Process": "4.1.0-*",
26-
"dotnet-test-xunit": "1.0.0-*"
26+
"System.Diagnostics.Process": "4.1.0-*"
2727
}
2828
},
2929
"net451": {

0 commit comments

Comments
 (0)