diff --git a/samples/HelloWorld/project.json b/samples/HelloWorld/project.json index b63c18564c..949af79c8c 100644 --- a/samples/HelloWorld/project.json +++ b/samples/HelloWorld/project.json @@ -3,7 +3,7 @@ "emitEntryPoint": true }, "dependencies": { - "Microsoft.Net.Http.Server": "0.2.0-*" + "Microsoft.Net.Http.Server": "1.1.0-*" }, "commands": { "sample": "HelloWorld" diff --git a/samples/HotAddSample/project.json b/samples/HotAddSample/project.json index d6538aa090..8f3fda7f58 100644 --- a/samples/HotAddSample/project.json +++ b/samples/HotAddSample/project.json @@ -1,7 +1,6 @@ { - "version": "1.1.0-*", "dependencies": { - "Microsoft.AspNetCore.Server.WebListener": "0.2.0-*", + "Microsoft.AspNetCore.Server.WebListener": "1.1.0-*", "Microsoft.Extensions.Logging.Console": "1.1.0-*" }, "buildOptions": { diff --git a/samples/SelfHostServer/project.json b/samples/SelfHostServer/project.json index f621b8021a..f0c79263dd 100644 --- a/samples/SelfHostServer/project.json +++ b/samples/SelfHostServer/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "Microsoft.AspNetCore.Server.WebListener": "0.2.0-*", + "Microsoft.AspNetCore.Server.WebListener": "1.1.0-*", "Microsoft.Extensions.Logging.Console": "1.1.0-*" }, "buildOptions": { diff --git a/src/Microsoft.AspNetCore.Server.WebListener/project.json b/src/Microsoft.AspNetCore.Server.WebListener/project.json index 1154107020..cf4cefd3f1 100644 --- a/src/Microsoft.AspNetCore.Server.WebListener/project.json +++ b/src/Microsoft.AspNetCore.Server.WebListener/project.json @@ -1,10 +1,16 @@ { - "version": "0.2.0-*", - "description": "ASP.NET 5 self-host web server.", + "version": "1.1.0-*", + "description": "ASP.NET Core HTTP server for Windows.", + "packOptions": { + "tags": [ + "aspnetcore", + "weblistener" + ] + }, "dependencies": { "Microsoft.AspNetCore.Hosting": "1.1.0-*", "Microsoft.Net.Http.Headers": "1.1.0-*", - "Microsoft.Net.Http.Server": "0.2.0-*", + "Microsoft.Net.Http.Server": "1.1.0-*", "Microsoft.Extensions.TaskCache.Sources": { "version": "1.1.0-*", "type": "build" diff --git a/src/Microsoft.Net.Http.Server/project.json b/src/Microsoft.Net.Http.Server/project.json index c7083374f7..b21926e4d5 100644 --- a/src/Microsoft.Net.Http.Server/project.json +++ b/src/Microsoft.Net.Http.Server/project.json @@ -1,6 +1,12 @@ { - "version": "0.2.0-*", - "description": "Implementation of WebListener, a successor to HttpListener. It is used in the WebListener server package.", + "version": "1.1.0-*", + "description": ".NET HTTP server that uses the Windows HTTP Server API.", + "packOptions": { + "tags": [ + "netcore", + "weblistener" + ] + }, "dependencies": { "Microsoft.Extensions.Logging.Abstractions": "1.1.0-*", "Microsoft.Extensions.Primitives": "1.1.0-*" diff --git a/test/Microsoft.AspNetCore.Server.WebListener.FunctionalTests/project.json b/test/Microsoft.AspNetCore.Server.WebListener.FunctionalTests/project.json index d25973f484..fd7ec4854b 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": "0.2.0-*", + "Microsoft.AspNetCore.Server.WebListener": "1.1.0-*", "Microsoft.AspNetCore.Testing": "1.1.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 399d8dc19d..c183b6d9b9 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": "0.2.0-*", + "Microsoft.Net.Http.Server": "1.1.0-*", "Microsoft.AspNetCore.Testing": "1.1.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 f4d93ce1af..4c7be985ef 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": "0.2.0-*", + "Microsoft.Net.Http.Server": "1.1.0-*", "xunit": "2.2.0-*" }, "frameworks": {