diff --git a/samples/HelloWorld/project.json b/samples/HelloWorld/project.json index 0188f94723..f96d62cfbe 100644 --- a/samples/HelloWorld/project.json +++ b/samples/HelloWorld/project.json @@ -3,7 +3,7 @@ "emitEntryPoint": true }, "dependencies": { - "Microsoft.Net.Http.Server": "1.0.0-rc2-final" + "Microsoft.Net.Http.Server": "1.0.0" }, "commands": { "sample": "HelloWorld" diff --git a/samples/HotAddSample/project.json b/samples/HotAddSample/project.json index 1371305e91..4f100af911 100644 --- a/samples/HotAddSample/project.json +++ b/samples/HotAddSample/project.json @@ -1,7 +1,7 @@ { "version": "1.1.0-*", "dependencies": { - "Microsoft.AspNetCore.Server.WebListener": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Server.WebListener": "1.0.0", "Microsoft.Extensions.Logging.Console": "1.0.0" }, "buildOptions": { diff --git a/samples/SelfHostServer/project.json b/samples/SelfHostServer/project.json index f33119839b..11c1095a86 100644 --- a/samples/SelfHostServer/project.json +++ b/samples/SelfHostServer/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "Microsoft.AspNetCore.Server.WebListener": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Server.WebListener": "1.0.0", "Microsoft.Extensions.Logging.Console": "1.0.0" }, "buildOptions": { diff --git a/src/Microsoft.AspNetCore.Server.WebListener/project.json b/src/Microsoft.AspNetCore.Server.WebListener/project.json index bdfe64508c..6fd4fa8c9b 100644 --- a/src/Microsoft.AspNetCore.Server.WebListener/project.json +++ b/src/Microsoft.AspNetCore.Server.WebListener/project.json @@ -1,5 +1,5 @@ { - "version": "1.0.0-rc2-final", + "version": "1.0.0", "description": "ASP.NET Core HTTP server for Windows.", "packOptions": { "tags": [ @@ -10,7 +10,7 @@ "dependencies": { "Microsoft.AspNetCore.Hosting": "1.0.0", "Microsoft.Net.Http.Headers": "1.0.0", - "Microsoft.Net.Http.Server": "1.0.0-rc2-final" + "Microsoft.Net.Http.Server": "1.0.0" }, "buildOptions": { "allowUnsafe": true, diff --git a/src/Microsoft.Net.Http.Server/project.json b/src/Microsoft.Net.Http.Server/project.json index b0b467ba09..6c59ede1cf 100644 --- a/src/Microsoft.Net.Http.Server/project.json +++ b/src/Microsoft.Net.Http.Server/project.json @@ -1,5 +1,5 @@ { - "version": "1.0.0-rc2-final", + "version": "1.0.0", "description": ".NET HTTP server that uses the Windows HTTP Server API.", "packOptions": { "tags": [ diff --git a/test/Microsoft.AspNetCore.Server.WebListener.FunctionalTests/project.json b/test/Microsoft.AspNetCore.Server.WebListener.FunctionalTests/project.json index 17449f517c..32717e085a 100644 --- a/test/Microsoft.AspNetCore.Server.WebListener.FunctionalTests/project.json +++ b/test/Microsoft.AspNetCore.Server.WebListener.FunctionalTests/project.json @@ -6,7 +6,7 @@ "testRunner": "xunit", "dependencies": { "dotnet-test-xunit": "2.2.0-*", - "Microsoft.AspNetCore.Server.WebListener": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Server.WebListener": "1.0.0", "Microsoft.AspNetCore.Testing": "1.0.0", "xunit": "2.2.0-*" }, diff --git a/test/Microsoft.Net.Http.Server.FunctionalTests/project.json b/test/Microsoft.Net.Http.Server.FunctionalTests/project.json index f69d545db9..dbecc2d495 100644 --- a/test/Microsoft.Net.Http.Server.FunctionalTests/project.json +++ b/test/Microsoft.Net.Http.Server.FunctionalTests/project.json @@ -2,7 +2,7 @@ "testRunner": "xunit", "dependencies": { "dotnet-test-xunit": "2.2.0-*", - "Microsoft.Net.Http.Server": "1.0.0-rc2-final", + "Microsoft.Net.Http.Server": "1.0.0", "Microsoft.AspNetCore.Testing": "1.0.0", "xunit": "2.2.0-*" }, diff --git a/test/Microsoft.Net.Http.Server.Tests/project.json b/test/Microsoft.Net.Http.Server.Tests/project.json index bfdd758b97..bd58330d2c 100644 --- a/test/Microsoft.Net.Http.Server.Tests/project.json +++ b/test/Microsoft.Net.Http.Server.Tests/project.json @@ -2,7 +2,7 @@ "testRunner": "xunit", "dependencies": { "dotnet-test-xunit": "2.2.0-*", - "Microsoft.Net.Http.Server": "1.0.0-rc2-final", + "Microsoft.Net.Http.Server": "1.0.0", "xunit": "2.2.0-*" }, "frameworks": {