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

Commit dfd6d8f

Browse files
authored
1.0.4 patch train updates (#312)
* 1.0.4 patch train updates * Update to Microsoft.NETCore.App 1.0.4 and pin cli to 1.0.0-preview2-003154 * Update NuGet.config
1 parent b755818 commit dfd6d8f

File tree

10 files changed

+14
-14
lines changed

10 files changed

+14
-14
lines changed

NuGet.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<packageSources>
44
<clear />
55
<add key="AspNetCore" value="https://dotnet.myget.org/F/aspnetcore-master/api/v3/index.json" />
6-
<add key="AspNetCore-Patch" value="https://dotnet.myget.org/F/aspnetcore-rel-1-0-3/api/v3/index.json" />
6+
<add key="AspNetCore-Patch" value="https://dotnet.myget.org/F/aspnet-1-0-4-patch/api/v3/index.json" />
77
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
88
</packageSources>
9-
</configuration>
9+
</configuration>

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"projects": ["src", "test"],
33
"sdk": {
4-
"version": "1.0.0-preview2-1-003177"
4+
"version": "1.0.0-preview2-003154"
55
}
66
}

samples/HelloWorld/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"netcoreapp1.0": {
1414
"dependencies": {
1515
"Microsoft.NETCore.App": {
16-
"version": "1.0.3",
16+
"version": "1.0.4",
1717
"type": "platform"
1818
}
1919
}

samples/HotAddSample/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"version": "1.1.0-*",
33
"dependencies": {
44
"Microsoft.AspNetCore.Server.WebListener": "1.0.2",
5-
"Microsoft.Extensions.Logging.Console": "1.0.1"
5+
"Microsoft.Extensions.Logging.Console": "1.0.2"
66
},
77
"buildOptions": {
88
"emitEntryPoint": true
@@ -15,7 +15,7 @@
1515
"netcoreapp1.0": {
1616
"dependencies": {
1717
"Microsoft.NETCore.App": {
18-
"version": "1.0.3",
18+
"version": "1.0.4",
1919
"type": "platform"
2020
}
2121
}

samples/SelfHostServer/project.json

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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
]
99
},
1010
"dependencies": {
11-
"Microsoft.AspNetCore.Hosting": "1.0.1",
12-
"Microsoft.Net.Http.Headers": "1.0.1",
11+
"Microsoft.AspNetCore.Hosting": "1.0.2",
12+
"Microsoft.Net.Http.Headers": "1.0.2",
1313
"Microsoft.Net.Http.Server": "1.0.2"
1414
},
1515
"buildOptions": {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
]
99
},
1010
"dependencies": {
11-
"Microsoft.Extensions.Logging.Abstractions": "1.0.1",
11+
"Microsoft.Extensions.Logging.Abstractions": "1.0.2",
1212
"Microsoft.Extensions.Primitives": "1.0.1"
1313
},
1414
"buildOptions": {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"netcoreapp1.0": {
1515
"dependencies": {
1616
"Microsoft.NETCore.App": {
17-
"version": "1.0.3",
17+
"version": "1.0.4",
1818
"type": "platform"
1919
},
2020
"System.Net.Http.WinHttpHandler": "4.0.0-*",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"netcoreapp1.0": {
1111
"dependencies": {
1212
"Microsoft.NETCore.App": {
13-
"version": "1.0.3",
13+
"version": "1.0.4",
1414
"type": "platform"
1515
},
1616
"System.Net.Http": "4.1.1",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"netcoreapp1.0": {
1010
"dependencies": {
1111
"Microsoft.NETCore.App": {
12-
"version": "1.0.3",
12+
"version": "1.0.4",
1313
"type": "platform"
1414
}
1515
},

0 commit comments

Comments
 (0)