Skip to content
This repository was archived by the owner on Mar 19, 2019. It is now read-only.

Commit 5fca3b0

Browse files
committed
Pinning versions for 1.1.0 release
1 parent 8414a65 commit 5fca3b0

File tree

9 files changed

+43
-42
lines changed

9 files changed

+43
-42
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>

samples/HelloWorld/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"emitEntryPoint": true
44
},
55
"dependencies": {
6-
"Microsoft.Net.Http.Server": "1.1.0-*"
6+
"Microsoft.Net.Http.Server": "1.1.0"
77
},
88
"commands": {
99
"sample": "HelloWorld"
@@ -13,7 +13,7 @@
1313
"netcoreapp1.1": {
1414
"dependencies": {
1515
"Microsoft.NETCore.App": {
16-
"version": "1.1.0-*",
16+
"version": "1.1.0",
1717
"type": "platform"
1818
}
1919
}

samples/HotAddSample/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"dependencies": {
3-
"Microsoft.AspNetCore.Server.WebListener": "1.1.0-*",
4-
"Microsoft.Extensions.Logging.Console": "1.1.0-*"
3+
"Microsoft.AspNetCore.Server.WebListener": "1.1.0",
4+
"Microsoft.Extensions.Logging.Console": "1.1.0"
55
},
66
"buildOptions": {
77
"emitEntryPoint": true
@@ -14,7 +14,7 @@
1414
"netcoreapp1.1": {
1515
"dependencies": {
1616
"Microsoft.NETCore.App": {
17-
"version": "1.1.0-*",
17+
"version": "1.1.0",
1818
"type": "platform"
1919
}
2020
}

samples/SelfHostServer/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"dependencies": {
3-
"Microsoft.AspNetCore.Server.WebListener": "1.1.0-*",
4-
"Microsoft.Extensions.Logging.Console": "1.1.0-*"
3+
"Microsoft.AspNetCore.Server.WebListener": "1.1.0",
4+
"Microsoft.Extensions.Logging.Console": "1.1.0"
55
},
66
"buildOptions": {
77
"emitEntryPoint": true
@@ -14,7 +14,7 @@
1414
"netcoreapp1.1": {
1515
"dependencies": {
1616
"Microsoft.NETCore.App": {
17-
"version": "1.1.0-*",
17+
"version": "1.1.0",
1818
"type": "platform"
1919
}
2020
}

src/Microsoft.AspNetCore.Server.WebListener/project.json

Lines changed: 7 additions & 7 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": "ASP.NET Core HTTP server for Windows.",
44
"packOptions": {
55
"tags": [
@@ -8,14 +8,14 @@
88
]
99
},
1010
"dependencies": {
11-
"Microsoft.AspNetCore.Hosting": "1.1.0-*",
11+
"Microsoft.AspNetCore.Hosting": "1.1.0",
1212
"Microsoft.Extensions.TaskCache.Sources": {
13-
"version": "1.1.0-*",
13+
"version": "1.1.0-rtm-22752",
1414
"type": "build"
1515
},
16-
"Microsoft.Net.Http.Headers": "1.1.0-*",
17-
"Microsoft.Net.Http.Server": "1.1.0-*",
18-
"NETStandard.Library": "1.6.1-*"
16+
"Microsoft.Net.Http.Headers": "1.1.0",
17+
"Microsoft.Net.Http.Server": "1.1.0",
18+
"NETStandard.Library": "1.6.1"
1919
},
2020
"buildOptions": {
2121
"allowUnsafe": true,
@@ -30,7 +30,7 @@
3030
"net451": {},
3131
"netstandard1.3": {
3232
"dependencies": {
33-
"System.Security.Claims": "4.3.0-*"
33+
"System.Security.Claims": "4.3.0"
3434
}
3535
}
3636
}

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

Lines changed: 10 additions & 10 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": ".NET HTTP server that uses the Windows HTTP Server API.",
44
"packOptions": {
55
"tags": [
@@ -8,9 +8,9 @@
88
]
99
},
1010
"dependencies": {
11-
"Microsoft.Extensions.Logging.Abstractions": "1.1.0-*",
12-
"Microsoft.Extensions.Primitives": "1.1.0-*",
13-
"NETStandard.Library": "1.6.1-*"
11+
"Microsoft.Extensions.Logging.Abstractions": "1.1.0",
12+
"Microsoft.Extensions.Primitives": "1.1.0",
13+
"NETStandard.Library": "1.6.1"
1414
},
1515
"buildOptions": {
1616
"allowUnsafe": true,
@@ -33,13 +33,13 @@
3333
"dependencies": {
3434
"Microsoft.Extensions.RuntimeEnvironment.Sources": {
3535
"type": "build",
36-
"version": "1.1.0-*"
36+
"version": "1.1.0-rtm-22752"
3737
},
38-
"System.Diagnostics.Contracts": "4.3.0-*",
39-
"System.Net.WebSockets": "4.3.0-*",
40-
"System.Security.Claims": "4.3.0-*",
41-
"System.Security.Principal.Windows": "4.3.0-*",
42-
"System.Threading.Overlapped": "4.3.0-*"
38+
"System.Diagnostics.Contracts": "4.3.0",
39+
"System.Net.WebSockets": "4.3.0",
40+
"System.Security.Claims": "4.3.0",
41+
"System.Security.Principal.Windows": "4.3.0",
42+
"System.Threading.Overlapped": "4.3.0"
4343
}
4444
}
4545
}

test/Microsoft.AspNetCore.Server.WebListener.FunctionalTests/project.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@
66
"testRunner": "xunit",
77
"dependencies": {
88
"dotnet-test-xunit": "2.2.0-*",
9-
"Microsoft.AspNetCore.Server.WebListener": "1.1.0-*",
10-
"Microsoft.AspNetCore.Testing": "1.1.0-*",
9+
"Microsoft.AspNetCore.Server.WebListener": "1.1.0",
10+
"Microsoft.AspNetCore.Testing": "1.1.0-rtm-22752",
1111
"xunit": "2.2.0-*"
1212
},
1313
"frameworks": {
1414
"netcoreapp1.1": {
1515
"dependencies": {
1616
"Microsoft.NETCore.App": {
17-
"version": "1.1.0-*",
17+
"version": "1.1.0",
1818
"type": "platform"
1919
},
20-
"System.Net.Http.WinHttpHandler": "4.3.0-*",
21-
"System.Net.WebSockets.Client": "4.3.0-*"
20+
"System.Net.Http.WinHttpHandler": "4.3.0",
21+
"System.Net.WebSockets.Client": "4.3.0"
2222
}
2323
},
2424
"net451": {

test/Microsoft.Net.Http.Server.FunctionalTests/project.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,23 @@
66
},
77
"dependencies": {
88
"dotnet-test-xunit": "2.2.0-*",
9-
"Microsoft.AspNetCore.Testing": "1.1.0-*",
10-
"Microsoft.Net.Http.Server": "1.1.0-*",
9+
"Microsoft.AspNetCore.Testing": "1.1.0-rtm-22752",
10+
"Microsoft.Net.Http.Server": "1.1.0",
1111
"xunit": "2.2.0-*"
1212
},
1313
"frameworks": {
1414
"netcoreapp1.1": {
1515
"dependencies": {
1616
"Microsoft.Extensions.RuntimeEnvironment.Sources": {
1717
"type": "build",
18-
"version": "1.1.0-*"
18+
"version": "1.1.0-rtm-22752"
1919
},
2020
"Microsoft.NETCore.App": {
21-
"version": "1.1.0-*",
21+
"version": "1.1.0",
2222
"type": "platform"
2323
},
24-
"System.Net.Http.WinHttpHandler": "4.3.0-*",
25-
"System.Net.WebSockets.Client": "4.3.0-*"
24+
"System.Net.Http.WinHttpHandler": "4.3.0",
25+
"System.Net.WebSockets.Client": "4.3.0"
2626
}
2727
},
2828
"net451": {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
"testRunner": "xunit",
33
"dependencies": {
44
"dotnet-test-xunit": "2.2.0-*",
5-
"Microsoft.Net.Http.Server": "1.1.0-*",
5+
"Microsoft.Net.Http.Server": "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)