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

Commit 70d289e

Browse files
committed
Pinning versions for 1.1.0 release
1 parent 16acfb0 commit 70d289e

File tree

5 files changed

+19
-18
lines changed

5 files changed

+19
-18
lines changed

NuGet.config

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<packageSources>
4-
<add key="AspNetCore" value="https://dotnet.myget.org/F/aspnetcore-ci-release/api/v3/index.json" />
5-
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
4+
<clear />
5+
<add key="NuGet.org" value="https://api.nuget.org/v3/index.json" />
6+
<add key="AspNetCore" value="https://dotnet.myget.org/f/aspnetcore-master/api/v3/index.json" />
67
</packageSources>
7-
</configuration>
8+
</configuration>

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.1.0-*",
2+
"version": "1.1.0",
33
"description": "Abstractions for dependency injection.\r\nCommonly used types:\r\nMicrosoft.Extensions.DependencyInjection.IServiceCollection",
44
"packOptions": {
55
"repository": {
@@ -22,14 +22,14 @@
2222
"dependencies": {
2323
"Microsoft.Extensions.ActivatorUtilities.Sources": {
2424
"type": "build",
25-
"version": "1.1.0-*"
25+
"version": "1.1.0-rtm-22752"
2626
},
27-
"NETStandard.Library": "1.6.1-*"
27+
"NETStandard.Library": "1.6.1"
2828
},
2929
"frameworks": {
3030
"netstandard1.0": {
3131
"dependencies": {
32-
"System.ComponentModel": "4.3.0-*"
32+
"System.ComponentModel": "4.3.0"
3333
}
3434
}
3535
}

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.1.0-*",
2+
"version": "1.1.0",
33
"description": "Suite of xUnit.net tests to check for container compatibility with Microsoft.Extensions.DependencyInjection.",
44
"packOptions": {
55
"tags": [
@@ -8,8 +8,8 @@
88
]
99
},
1010
"dependencies": {
11-
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0-*",
12-
"NETStandard.Library": "1.6.1-*",
11+
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
12+
"NETStandard.Library": "1.6.1",
1313
"xunit.assert": "2.2.0-*",
1414
"xunit.extensibility.core": "2.2.0-*"
1515
},

src/Microsoft.Extensions.DependencyInjection/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.1.0-*",
2+
"version": "1.1.0",
33
"description": "Default implementation of dependency injection for Microsoft.Extensions.DependencyInjection.",
44
"packOptions": {
55
"repository": {
@@ -20,8 +20,8 @@
2020
"xmlDoc": true
2121
},
2222
"dependencies": {
23-
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0-*",
24-
"NETStandard.Library": "1.6.1-*"
23+
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
24+
"NETStandard.Library": "1.6.1"
2525
},
2626
"frameworks": {
2727
"netstandard1.1": {}

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@
66
},
77
"dependencies": {
88
"dotnet-test-xunit": "2.2.0-*",
9-
"Microsoft.AspNetCore.Testing": "1.1.0-*",
10-
"Microsoft.Extensions.DependencyInjection": "1.1.0-*",
11-
"Microsoft.Extensions.DependencyInjection.Specification.Tests": "1.1.0-*",
9+
"Microsoft.AspNetCore.Testing": "1.1.0-rtm-22752",
10+
"Microsoft.Extensions.DependencyInjection": "1.1.0",
11+
"Microsoft.Extensions.DependencyInjection.Specification.Tests": "1.1.0",
1212
"xunit": "2.2.0-*"
1313
},
1414
"frameworks": {
1515
"netcoreapp1.1": {
1616
"dependencies": {
1717
"Microsoft.NETCore.App": {
18-
"version": "1.1.0-*",
18+
"version": "1.1.0",
1919
"type": "platform"
2020
}
2121
}

0 commit comments

Comments
 (0)