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

Commit f42bbe4

Browse files
authored
1.0.4 patch train updates (#172)
* 1.0.4 patch train updates * Update to Microsoft.NETCore.App 1.0.4 and pin cli to 1.0.0-preview2-003154 * Revert tool version updates * Update NuGet.config
1 parent 4a6b2d4 commit f42bbe4

File tree

5 files changed

+21
-18
lines changed

5 files changed

+21
-18
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: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
{
2-
"projects": ["src"]
2+
"projects": ["src"],
3+
"sdk": {
4+
"version": "1.0.0-preview2-003154"
5+
}
36
}

samples/StaticFileSample/project.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@
33
"emitEntryPoint": true
44
},
55
"dependencies": {
6-
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.1",
7-
"Microsoft.AspNetCore.Server.Kestrel": "1.0.2",
8-
"Microsoft.AspNetCore.StaticFiles": "1.0.1",
9-
"Microsoft.Extensions.Logging.Console": "1.0.1"
6+
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.2",
7+
"Microsoft.AspNetCore.Server.Kestrel": "1.0.3",
8+
"Microsoft.AspNetCore.StaticFiles": "1.0.2",
9+
"Microsoft.Extensions.Logging.Console": "1.0.2"
1010
},
1111
"frameworks": {
1212
"net451": {},
1313
"netcoreapp1.0": {
1414
"dependencies": {
1515
"Microsoft.NETCore.App": {
16-
"version": "1.0.3",
16+
"version": "1.0.4",
1717
"type": "platform"
1818
}
1919
}
@@ -26,7 +26,7 @@
2626
]
2727
},
2828
"tools": {
29-
"Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-*"
29+
"Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview4-final"
3030
},
3131
"scripts": {
3232
"postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%"

src/Microsoft.AspNetCore.StaticFiles/project.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.1",
2+
"version": "1.0.2",
33
"buildOptions": {
44
"warningsAsErrors": true,
55
"keyFile": "../../tools/Key.snk",
@@ -20,11 +20,11 @@
2020
]
2121
},
2222
"dependencies": {
23-
"Microsoft.AspNetCore.Http.Extensions": "1.0.1",
24-
"Microsoft.AspNetCore.Hosting.Abstractions": "1.0.1",
23+
"Microsoft.AspNetCore.Http.Extensions": "1.0.2",
24+
"Microsoft.AspNetCore.Hosting.Abstractions": "1.0.2",
2525
"Microsoft.Extensions.FileProviders.Abstractions": "1.0.1",
26-
"Microsoft.Extensions.Logging.Abstractions": "1.0.1",
27-
"Microsoft.Extensions.WebEncoders": "1.0.1"
26+
"Microsoft.Extensions.Logging.Abstractions": "1.0.2",
27+
"Microsoft.Extensions.WebEncoders": "1.0.2"
2828
},
2929
"frameworks": {
3030
"net451": {},

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@
1818
"dependencies": {
1919
"System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
2020
"dotnet-test-xunit": "1.0.0-rc3-000000-01",
21-
"Microsoft.AspNetCore.StaticFiles": "1.0.1",
22-
"Microsoft.AspNetCore.TestHost": "1.0.1",
21+
"Microsoft.AspNetCore.StaticFiles": "1.0.2",
22+
"Microsoft.AspNetCore.TestHost": "1.0.2",
2323
"Microsoft.AspNetCore.Testing": "1.0.1",
24-
"Microsoft.Extensions.Logging.Testing": "1.0.1",
24+
"Microsoft.Extensions.Logging.Testing": "1.0.2",
2525
"xunit": "2.1.0"
2626
},
2727
"frameworks": {
2828
"netcoreapp1.0": {
2929
"dependencies": {
3030
"Microsoft.NETCore.App": {
31-
"version": "1.0.3",
31+
"version": "1.0.4",
3232
"type": "platform"
3333
},
3434
"System.Diagnostics.Process": "4.1.0"

0 commit comments

Comments
 (0)