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

Commit 1d01da1

Browse files
committed
Pinning versions for 1.1.0 release
1 parent 74677b6 commit 1d01da1

File tree

16 files changed

+74
-73
lines changed

16 files changed

+74
-73
lines changed

NuGet.config

+5-4
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>

samples/SampleApp/project.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"version": "1.1.0-*",
33
"dependencies": {
4-
"Microsoft.AspNetCore.Http": "1.1.0-*",
5-
"Microsoft.AspNetCore.Http.Extensions": "1.1.0-*"
4+
"Microsoft.AspNetCore.Http": "1.1.0",
5+
"Microsoft.AspNetCore.Http.Extensions": "1.1.0"
66
},
77
"frameworks": {
88
"net451": {},
99
"netcoreapp1.1": {
1010
"dependencies": {
1111
"Microsoft.NETCore.App": {
12-
"version": "1.1.0-*",
12+
"version": "1.1.0",
1313
"type": "platform"
1414
}
1515
}

src/Microsoft.AspNetCore.Http.Abstractions/project.json

+9-9
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": "ASP.NET Core HTTP object model for HTTP requests and responses and also common extension methods for registering middleware in an IApplicationBuilder.\r\nCommonly used types:\r\nMicrosoft.AspNetCore.Builder.IApplicationBuilder\r\nMicrosoft.AspNetCore.Http.HttpContext\r\nMicrosoft.AspNetCore.Http.HttpRequest\r\nMicrosoft.AspNetCore.Http.HttpResponse",
44
"packOptions": {
55
"repository": {
@@ -19,18 +19,18 @@
1919
"xmlDoc": true
2020
},
2121
"dependencies": {
22-
"Microsoft.AspNetCore.Http.Features": "1.1.0-*",
22+
"Microsoft.AspNetCore.Http.Features": "1.1.0",
2323
"Microsoft.Extensions.ActivatorUtilities.Sources": {
2424
"type": "build",
25-
"version": "1.1.0-*"
25+
"version": "1.1.0-rtm-22752"
2626
},
27+
"Microsoft.Extensions.Primitives": "1.1.0",
2728
"Microsoft.Extensions.TaskCache.Sources": {
28-
"version": "1.1.0-*",
29+
"version": "1.1.0-rtm-22752",
2930
"type": "build"
3031
},
31-
"NETStandard.Library": "1.6.1-*",
32-
"System.Text.Encodings.Web": "4.3.0-*",
33-
"Microsoft.Extensions.Primitives": "1.1.0-*"
32+
"NETStandard.Library": "1.6.1",
33+
"System.Text.Encodings.Web": "4.3.0"
3434
},
3535
"frameworks": {
3636
"net451": {
@@ -42,8 +42,8 @@
4242
},
4343
"netstandard1.3": {
4444
"dependencies": {
45-
"System.Globalization.Extensions": "4.3.0-*",
46-
"System.Reflection.TypeExtensions": "4.3.0-*"
45+
"System.Globalization.Extensions": "4.3.0",
46+
"System.Reflection.TypeExtensions": "4.3.0"
4747
}
4848
}
4949
}

src/Microsoft.AspNetCore.Http.Extensions/project.json

+6-6
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": "ASP.NET Core common extension methods for HTTP abstractions, HTTP headers, HTTP request/response, and session state.",
44
"packOptions": {
55
"repository": {
@@ -19,11 +19,11 @@
1919
"xmlDoc": true
2020
},
2121
"dependencies": {
22-
"Microsoft.AspNetCore.Http.Abstractions": "1.1.0-*",
23-
"Microsoft.Extensions.FileProviders.Abstractions": "1.1.0-*",
24-
"Microsoft.Net.Http.Headers": "1.1.0-*",
25-
"NETStandard.Library": "1.6.1-*",
26-
"System.Buffers": "4.3.0-*"
22+
"Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
23+
"Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
24+
"Microsoft.Net.Http.Headers": "1.1.0",
25+
"NETStandard.Library": "1.6.1",
26+
"System.Buffers": "4.3.0"
2727
},
2828
"frameworks": {
2929
"net451": {},

src/Microsoft.AspNetCore.Http.Features/project.json

+7-7
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": "ASP.NET Core HTTP feature interface definitions.",
44
"packOptions": {
55
"repository": {
@@ -19,17 +19,17 @@
1919
"xmlDoc": true
2020
},
2121
"dependencies": {
22-
"Microsoft.Extensions.Primitives": "1.1.0-*",
23-
"NETStandard.Library": "1.6.1-*"
22+
"Microsoft.Extensions.Primitives": "1.1.0",
23+
"NETStandard.Library": "1.6.1"
2424
},
2525
"frameworks": {
2626
"net451": {},
2727
"netstandard1.3": {
2828
"dependencies": {
29-
"System.ComponentModel": "4.3.0-*",
30-
"System.Net.WebSockets": "4.3.0-*",
31-
"System.Security.Claims": "4.3.0-*",
32-
"System.Security.Principal": "4.3.0-*"
29+
"System.ComponentModel": "4.3.0",
30+
"System.Net.WebSockets": "4.3.0",
31+
"System.Security.Claims": "4.3.0",
32+
"System.Security.Principal": "4.3.0"
3333
}
3434
}
3535
}

src/Microsoft.AspNetCore.Http/project.json

+9-9
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": "ASP.NET Core default HTTP feature implementations.",
44
"packOptions": {
55
"repository": {
@@ -20,17 +20,17 @@
2020
"xmlDoc": true
2121
},
2222
"dependencies": {
23-
"Microsoft.AspNetCore.Http.Abstractions": "1.1.0-*",
24-
"Microsoft.AspNetCore.WebUtilities": "1.1.0-*",
25-
"Microsoft.Extensions.ObjectPool": "1.1.0-*",
26-
"Microsoft.Extensions.Options": "1.1.0-*",
23+
"Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
24+
"Microsoft.AspNetCore.WebUtilities": "1.1.0",
25+
"Microsoft.Extensions.ObjectPool": "1.1.0",
26+
"Microsoft.Extensions.Options": "1.1.0",
2727
"Microsoft.Extensions.TaskCache.Sources": {
28-
"version": "1.1.0-*",
28+
"version": "1.1.0-rtm-22752",
2929
"type": "build"
3030
},
31-
"Microsoft.Net.Http.Headers": "1.1.0-*",
32-
"NETStandard.Library": "1.6.1-*",
33-
"System.Buffers": "4.3.0-*"
31+
"Microsoft.Net.Http.Headers": "1.1.0",
32+
"NETStandard.Library": "1.6.1",
33+
"System.Buffers": "4.3.0"
3434
},
3535
"frameworks": {
3636
"net451": {},

src/Microsoft.AspNetCore.Owin/project.json

+4-4
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": "ASP.NET Core component for running OWIN middleware in an ASP.NET Core application, and to run ASP.NET Core middleware in an OWIN application.",
44
"packOptions": {
55
"repository": {
@@ -21,12 +21,12 @@
2121
"xmlDoc": true
2222
},
2323
"dependencies": {
24-
"Microsoft.AspNetCore.Http": "1.1.0-*",
24+
"Microsoft.AspNetCore.Http": "1.1.0",
2525
"Microsoft.Extensions.TaskCache.Sources": {
26-
"version": "1.1.0-*",
26+
"version": "1.1.0-rtm-22752",
2727
"type": "build"
2828
},
29-
"NETStandard.Library": "1.6.1-*"
29+
"NETStandard.Library": "1.6.1"
3030
},
3131
"frameworks": {
3232
"net451": {},

src/Microsoft.AspNetCore.WebUtilities/project.json

+7-7
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": "ASP.NET Core utilities, such as for working with forms, multipart messages, and query strings.",
44
"packOptions": {
55
"repository": {
@@ -22,15 +22,15 @@
2222
"xmlDoc": true
2323
},
2424
"dependencies": {
25-
"Microsoft.Extensions.Primitives": "1.1.0-*",
25+
"Microsoft.Extensions.Primitives": "1.1.0",
2626
"Microsoft.Extensions.WebEncoders.Sources": {
2727
"type": "build",
28-
"version": "1.1.0-*"
28+
"version": "1.1.0-rtm-22752"
2929
},
30-
"Microsoft.Net.Http.Headers": "1.1.0-*",
31-
"NETStandard.Library": "1.6.1-*",
32-
"System.Buffers": "4.3.0-*",
33-
"System.Text.Encodings.Web": "4.3.0-*"
30+
"Microsoft.Net.Http.Headers": "1.1.0",
31+
"NETStandard.Library": "1.6.1",
32+
"System.Buffers": "4.3.0",
33+
"System.Text.Encodings.Web": "4.3.0"
3434
},
3535
"frameworks": {
3636
"net451": {

src/Microsoft.Net.Http.Headers/project.json

+5-5
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": "HTTP header parser implementations.",
44
"packOptions": {
55
"repository": {
@@ -19,10 +19,10 @@
1919
"xmlDoc": true
2020
},
2121
"dependencies": {
22-
"Microsoft.Extensions.Primitives": "1.1.0-*",
23-
"NETStandard.Library": "1.6.1-*",
24-
"System.Buffers": "4.3.0-*",
25-
"System.Diagnostics.Contracts": "4.3.0-*"
22+
"Microsoft.Extensions.Primitives": "1.1.0",
23+
"NETStandard.Library": "1.6.1",
24+
"System.Buffers": "4.3.0",
25+
"System.Diagnostics.Contracts": "4.3.0"
2626
},
2727
"frameworks": {
2828
"netstandard1.1": {}

test/Microsoft.AspNetCore.Http.Abstractions.Tests/project.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
},
66
"dependencies": {
77
"dotnet-test-xunit": "2.2.0-*",
8-
"Microsoft.AspNetCore.Http": "1.1.0-*",
9-
"Microsoft.AspNetCore.Testing": "1.1.0-*",
8+
"Microsoft.AspNetCore.Http": "1.1.0",
9+
"Microsoft.AspNetCore.Testing": "1.1.0-rtm-22752",
1010
"xunit": "2.2.0-*"
1111
},
1212
"frameworks": {
1313
"netcoreapp1.1": {
1414
"dependencies": {
1515
"Microsoft.NETCore.App": {
16-
"version": "1.1.0-*",
16+
"version": "1.1.0",
1717
"type": "platform"
1818
}
1919
}

test/Microsoft.AspNetCore.Http.Extensions.Tests/project.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"dependencies": {
33
"dotnet-test-xunit": "2.2.0-*",
4-
"Microsoft.AspNetCore.Http": "1.1.0-*",
5-
"Microsoft.AspNetCore.Http.Extensions": "1.1.0-*",
6-
"Microsoft.Extensions.DependencyInjection": "1.1.0-*",
4+
"Microsoft.AspNetCore.Http": "1.1.0",
5+
"Microsoft.AspNetCore.Http.Extensions": "1.1.0",
6+
"Microsoft.Extensions.DependencyInjection": "1.1.0",
77
"xunit": "2.2.0-*"
88
},
99
"frameworks": {
1010
"netcoreapp1.1": {
1111
"dependencies": {
1212
"Microsoft.NETCore.App": {
13-
"version": "1.1.0-*",
13+
"version": "1.1.0",
1414
"type": "platform"
1515
}
1616
}

test/Microsoft.AspNetCore.Http.Features.Tests/project.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"dependencies": {
33
"dotnet-test-xunit": "2.2.0-*",
4-
"Microsoft.AspNetCore.Http.Features": "1.1.0-*",
4+
"Microsoft.AspNetCore.Http.Features": "1.1.0",
55
"xunit": "2.2.0-*"
66
},
77
"frameworks": {
88
"netcoreapp1.1": {
99
"dependencies": {
1010
"Microsoft.NETCore.App": {
11-
"version": "1.1.0-*",
11+
"version": "1.1.0",
1212
"type": "platform"
1313
}
1414
}

test/Microsoft.AspNetCore.Http.Tests/project.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"dependencies": {
33
"dotnet-test-xunit": "2.2.0-*",
4-
"Microsoft.AspNetCore.Http": "1.1.0-*",
4+
"Microsoft.AspNetCore.Http": "1.1.0",
55
"xunit": "2.2.0-*"
66
},
77
"frameworks": {
88
"netcoreapp1.1": {
99
"dependencies": {
1010
"Microsoft.NETCore.App": {
11-
"version": "1.1.0-*",
11+
"version": "1.1.0",
1212
"type": "platform"
1313
}
1414
}

test/Microsoft.AspNetCore.Owin.Tests/project.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"dependencies": {
33
"dotnet-test-xunit": "2.2.0-*",
4-
"Microsoft.AspNetCore.Http": "1.1.0-*",
5-
"Microsoft.AspNetCore.Owin": "1.1.0-*",
6-
"Microsoft.Extensions.DependencyInjection": "1.1.0-*",
4+
"Microsoft.AspNetCore.Http": "1.1.0",
5+
"Microsoft.AspNetCore.Owin": "1.1.0",
6+
"Microsoft.Extensions.DependencyInjection": "1.1.0",
77
"xunit": "2.2.0-*"
88
},
99
"frameworks": {
1010
"netcoreapp1.1": {
1111
"dependencies": {
1212
"Microsoft.NETCore.App": {
13-
"version": "1.1.0-*",
13+
"version": "1.1.0",
1414
"type": "platform"
1515
}
1616
}

test/Microsoft.AspNetCore.WebUtilities.Tests/project.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"dependencies": {
33
"dotnet-test-xunit": "2.2.0-*",
4-
"Microsoft.AspNetCore.WebUtilities": "1.1.0-*",
4+
"Microsoft.AspNetCore.WebUtilities": "1.1.0",
55
"xunit": "2.2.0-*"
66
},
77
"buildOptions": {
@@ -12,7 +12,7 @@
1212
"netcoreapp1.1": {
1313
"dependencies": {
1414
"Microsoft.NETCore.App": {
15-
"version": "1.1.0-*",
15+
"version": "1.1.0",
1616
"type": "platform"
1717
}
1818
}

test/Microsoft.Net.Http.Headers.Tests/project.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
"version": "1.1.0-*",
33
"dependencies": {
44
"dotnet-test-xunit": "2.2.0-*",
5-
"Microsoft.Net.Http.Headers": "1.1.0-*",
5+
"Microsoft.Net.Http.Headers": "1.1.0",
66
"xunit": "2.2.0-*"
77
},
88
"frameworks": {
99
"netcoreapp1.1": {
1010
"dependencies": {
1111
"Microsoft.NETCore.App": {
12-
"version": "1.1.0-*",
12+
"version": "1.1.0",
1313
"type": "platform"
1414
}
1515
}

0 commit comments

Comments
 (0)