From 3b4d8e2e3d655eb7bac6678719c2b80c61be4cd0 Mon Sep 17 00:00:00 2001 From: Pranav K Date: Thu, 17 Nov 2016 10:50:47 -0800 Subject: [PATCH] Fix downgrade warnings during restore --- test/WebSites/ApiExplorerWebSite/project.json | 6 ++++-- test/WebSites/ApplicationModelWebSite/project.json | 6 ++++-- test/WebSites/BasicWebSite/project.json | 10 ++++++---- .../ControllersFromServicesWebSite/project.json | 14 +++++++++----- test/WebSites/CorsWebSite/project.json | 6 ++++-- .../ErrorPageMiddlewareWebSite/project.json | 6 ++++-- test/WebSites/FilesWebSite/project.json | 6 ++++-- test/WebSites/FiltersWebSite/project.json | 6 ++++-- test/WebSites/FormatterWebSite/project.json | 6 ++++-- test/WebSites/HtmlGenerationWebSite/project.json | 11 ++++++----- .../project.json | 6 ++++-- test/WebSites/RazorWebSite/project.json | 8 ++++---- test/WebSites/RoutingWebSite/project.json | 6 ++++-- test/WebSites/SimpleWebSite/project.json | 2 +- test/WebSites/TagHelpersWebSite/project.json | 10 ++++++---- test/WebSites/VersioningWebSite/project.json | 6 ++++-- test/WebSites/WebApiCompatShimWebSite/project.json | 6 ++++-- test/WebSites/XmlFormattersWebSite/project.json | 6 ++++-- 18 files changed, 80 insertions(+), 47 deletions(-) diff --git a/test/WebSites/ApiExplorerWebSite/project.json b/test/WebSites/ApiExplorerWebSite/project.json index 5eb972d7c3..0f1b4543f1 100644 --- a/test/WebSites/ApiExplorerWebSite/project.json +++ b/test/WebSites/ApiExplorerWebSite/project.json @@ -6,7 +6,9 @@ "dependencies": { "Microsoft.AspNetCore.Mvc": "1.2.0-*", "Microsoft.AspNetCore.Mvc.Formatters.Xml": "1.2.0-*", - "Microsoft.AspNetCore.Mvc.TestConfiguration": "1.0.0", + "Microsoft.AspNetCore.Mvc.TestConfiguration": { + "target": "project" + }, "Microsoft.AspNetCore.Server.IISIntegration": "1.2.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.2.0-*", "Microsoft.AspNetCore.StaticFiles": "1.2.0-*" @@ -28,7 +30,7 @@ ] }, "tools": { - "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-*" + "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.1.0-preview4-final" }, "scripts": { "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" diff --git a/test/WebSites/ApplicationModelWebSite/project.json b/test/WebSites/ApplicationModelWebSite/project.json index d1a6808b7f..2ba2ec081d 100644 --- a/test/WebSites/ApplicationModelWebSite/project.json +++ b/test/WebSites/ApplicationModelWebSite/project.json @@ -5,7 +5,9 @@ }, "dependencies": { "Microsoft.AspNetCore.Mvc": "1.2.0-*", - "Microsoft.AspNetCore.Mvc.TestConfiguration": "1.0.0", + "Microsoft.AspNetCore.Mvc.TestConfiguration": { + "target": "project" + }, "Microsoft.AspNetCore.Server.IISIntegration": "1.2.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.2.0-*", "Microsoft.AspNetCore.StaticFiles": "1.2.0-*" @@ -27,7 +29,7 @@ ] }, "tools": { - "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-*" + "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.1.0-preview4-final" }, "scripts": { "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" diff --git a/test/WebSites/BasicWebSite/project.json b/test/WebSites/BasicWebSite/project.json index 4a2836284b..48408ebff1 100644 --- a/test/WebSites/BasicWebSite/project.json +++ b/test/WebSites/BasicWebSite/project.json @@ -6,10 +6,12 @@ "dependencies": { "Microsoft.AspNetCore.Mvc": "1.2.0-*", "Microsoft.AspNetCore.Mvc.Formatters.Xml": "1.2.0-*", - "Microsoft.AspNetCore.Mvc.TestConfiguration": "1.0.0", + "Microsoft.AspNetCore.Mvc.TestConfiguration": { + "target": "project" + }, "Microsoft.AspNetCore.Razor.Tools": { "type": "build", - "version": "1.0.0-*" + "version": "1.2.0-*" }, "Microsoft.AspNetCore.Server.IISIntegration": "1.2.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.2.0-*", @@ -36,8 +38,8 @@ ] }, "tools": { - "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-*", - "Microsoft.AspNetCore.Razor.Tools": "1.0.0-*" + "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.1.0-preview4-final", + "Microsoft.AspNetCore.Razor.Tools": "1.2.0-*" }, "scripts": { "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" diff --git a/test/WebSites/ControllersFromServicesWebSite/project.json b/test/WebSites/ControllersFromServicesWebSite/project.json index a1fd765057..592d15e409 100644 --- a/test/WebSites/ControllersFromServicesWebSite/project.json +++ b/test/WebSites/ControllersFromServicesWebSite/project.json @@ -3,12 +3,16 @@ "emitEntryPoint": true }, "dependencies": { - "ControllersFromServicesClassLibrary": "1.0.0", + "ControllersFromServicesClassLibrary": { + "target": "project" + }, "Microsoft.AspNetCore.Mvc": "1.2.0-*", - "Microsoft.AspNetCore.Mvc.TestConfiguration": "1.0.0", + "Microsoft.AspNetCore.Mvc.TestConfiguration": { + "target": "project" + }, "Microsoft.AspNetCore.Razor.Tools": { "type": "build", - "version": "1.0.0-*" + "version": "1.2.0-*" }, "Microsoft.AspNetCore.Server.IISIntegration": "1.2.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.2.0-*", @@ -32,8 +36,8 @@ ] }, "tools": { - "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-*", - "Microsoft.AspNetCore.Razor.Tools": "1.0.0-*" + "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.1.0-preview4-final", + "Microsoft.AspNetCore.Razor.Tools": "1.2.0-*" }, "scripts": { "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" diff --git a/test/WebSites/CorsWebSite/project.json b/test/WebSites/CorsWebSite/project.json index 3e8b7270c3..431e9baf1c 100644 --- a/test/WebSites/CorsWebSite/project.json +++ b/test/WebSites/CorsWebSite/project.json @@ -12,7 +12,9 @@ "Microsoft.AspNetCore.Cors": "1.2.0-*", "Microsoft.AspNetCore.Mvc": "1.2.0-*", "Microsoft.AspNetCore.Mvc.Formatters.Xml": "1.2.0-*", - "Microsoft.AspNetCore.Mvc.TestConfiguration": "1.0.0", + "Microsoft.AspNetCore.Mvc.TestConfiguration": { + "target": "project" + }, "Microsoft.AspNetCore.Server.IISIntegration": "1.2.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.2.0-*", "Microsoft.AspNetCore.StaticFiles": "1.2.0-*" @@ -29,7 +31,7 @@ } }, "tools": { - "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-*" + "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.1.0-preview4-final" }, "scripts": { "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" diff --git a/test/WebSites/ErrorPageMiddlewareWebSite/project.json b/test/WebSites/ErrorPageMiddlewareWebSite/project.json index 2046e7e073..4e42f7441b 100644 --- a/test/WebSites/ErrorPageMiddlewareWebSite/project.json +++ b/test/WebSites/ErrorPageMiddlewareWebSite/project.json @@ -6,7 +6,9 @@ "dependencies": { "Microsoft.AspNetCore.Diagnostics": "1.2.0-*", "Microsoft.AspNetCore.Mvc": "1.2.0-*", - "Microsoft.AspNetCore.Mvc.TestConfiguration": "1.0.0", + "Microsoft.AspNetCore.Mvc.TestConfiguration": { + "target": "project" + }, "Microsoft.AspNetCore.Server.IISIntegration": "1.2.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.2.0-*", "Microsoft.AspNetCore.StaticFiles": "1.2.0-*" @@ -29,7 +31,7 @@ ] }, "tools": { - "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-*" + "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.1.0-preview4-final" }, "scripts": { "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" diff --git a/test/WebSites/FilesWebSite/project.json b/test/WebSites/FilesWebSite/project.json index 3e93ede9b2..879f6e358c 100644 --- a/test/WebSites/FilesWebSite/project.json +++ b/test/WebSites/FilesWebSite/project.json @@ -8,7 +8,9 @@ }, "dependencies": { "Microsoft.AspNetCore.Mvc": "1.2.0-*", - "Microsoft.AspNetCore.Mvc.TestConfiguration": "1.0.0", + "Microsoft.AspNetCore.Mvc.TestConfiguration": { + "target": "project" + }, "Microsoft.AspNetCore.Server.IISIntegration": "1.2.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.2.0-*", "Microsoft.AspNetCore.StaticFiles": "1.2.0-*", @@ -32,7 +34,7 @@ ] }, "tools": { - "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-*" + "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.1.0-preview4-final" }, "scripts": { "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" diff --git a/test/WebSites/FiltersWebSite/project.json b/test/WebSites/FiltersWebSite/project.json index 7a2cd2c595..e219d5f38e 100644 --- a/test/WebSites/FiltersWebSite/project.json +++ b/test/WebSites/FiltersWebSite/project.json @@ -8,7 +8,9 @@ "Microsoft.AspNetCore.Localization.Routing": "1.2.0-*", "Microsoft.AspNetCore.Mvc": "1.2.0-*", "Microsoft.AspNetCore.Mvc.Formatters.Xml": "1.2.0-*", - "Microsoft.AspNetCore.Mvc.TestConfiguration": "1.0.0", + "Microsoft.AspNetCore.Mvc.TestConfiguration": { + "target": "project" + }, "Microsoft.AspNetCore.Server.IISIntegration": "1.2.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.2.0-*", "Microsoft.AspNetCore.StaticFiles": "1.2.0-*" @@ -30,7 +32,7 @@ ] }, "tools": { - "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-*" + "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.1.0-preview4-final" }, "scripts": { "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" diff --git a/test/WebSites/FormatterWebSite/project.json b/test/WebSites/FormatterWebSite/project.json index 5eb972d7c3..0f1b4543f1 100644 --- a/test/WebSites/FormatterWebSite/project.json +++ b/test/WebSites/FormatterWebSite/project.json @@ -6,7 +6,9 @@ "dependencies": { "Microsoft.AspNetCore.Mvc": "1.2.0-*", "Microsoft.AspNetCore.Mvc.Formatters.Xml": "1.2.0-*", - "Microsoft.AspNetCore.Mvc.TestConfiguration": "1.0.0", + "Microsoft.AspNetCore.Mvc.TestConfiguration": { + "target": "project" + }, "Microsoft.AspNetCore.Server.IISIntegration": "1.2.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.2.0-*", "Microsoft.AspNetCore.StaticFiles": "1.2.0-*" @@ -28,7 +30,7 @@ ] }, "tools": { - "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-*" + "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.1.0-preview4-final" }, "scripts": { "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" diff --git a/test/WebSites/HtmlGenerationWebSite/project.json b/test/WebSites/HtmlGenerationWebSite/project.json index 6083e14fd7..417e7b0236 100644 --- a/test/WebSites/HtmlGenerationWebSite/project.json +++ b/test/WebSites/HtmlGenerationWebSite/project.json @@ -5,11 +5,12 @@ }, "dependencies": { "Microsoft.AspNetCore.Mvc": "1.2.0-*", - "Microsoft.AspNetCore.Mvc.TagHelpers": "1.2.0-*", - "Microsoft.AspNetCore.Mvc.TestConfiguration": "1.0.0", + "Microsoft.AspNetCore.Mvc.TestConfiguration": { + "target": "project" + }, "Microsoft.AspNetCore.Razor.Tools": { "type": "build", - "version": "1.0.0-*" + "version": "1.2.0-*" }, "Microsoft.AspNetCore.Server.IISIntegration": "1.2.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.2.0-*" @@ -33,8 +34,8 @@ ] }, "tools": { - "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-*", - "Microsoft.AspNetCore.Razor.Tools": "1.0.0-*" + "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.1.0-preview4-final", + "Microsoft.AspNetCore.Razor.Tools": "1.2.0-*" }, "scripts": { "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" diff --git a/test/WebSites/RazorPageExecutionInstrumentationWebSite/project.json b/test/WebSites/RazorPageExecutionInstrumentationWebSite/project.json index 9666f5f582..e8c44e0ea6 100644 --- a/test/WebSites/RazorPageExecutionInstrumentationWebSite/project.json +++ b/test/WebSites/RazorPageExecutionInstrumentationWebSite/project.json @@ -5,7 +5,9 @@ }, "dependencies": { "Microsoft.AspNetCore.Mvc": "1.2.0-*", - "Microsoft.AspNetCore.Mvc.TestConfiguration": "1.0.0", + "Microsoft.AspNetCore.Mvc.TestConfiguration": { + "target": "project" + }, "Microsoft.AspNetCore.Server.IISIntegration": "1.2.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.2.0-*", "Microsoft.AspNetCore.StaticFiles": "1.2.0-*", @@ -29,7 +31,7 @@ ] }, "tools": { - "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-*" + "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.1.0-preview4-final" }, "scripts": { "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" diff --git a/test/WebSites/RazorWebSite/project.json b/test/WebSites/RazorWebSite/project.json index f904030786..b732d11d01 100644 --- a/test/WebSites/RazorWebSite/project.json +++ b/test/WebSites/RazorWebSite/project.json @@ -11,10 +11,10 @@ ] }, "dependencies": { - "Microsoft.AspNetCore.Localization": "1.2.0-*", "Microsoft.AspNetCore.Mvc": "1.2.0-*", - "Microsoft.AspNetCore.Mvc.Localization": "1.2.0-*", - "Microsoft.AspNetCore.Mvc.TestConfiguration": "1.0.0", + "Microsoft.AspNetCore.Mvc.TestConfiguration": { + "target": "project" + }, "Microsoft.AspNetCore.Server.IISIntegration": "1.2.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.2.0-*", "Microsoft.AspNetCore.StaticFiles": "1.2.0-*" @@ -42,7 +42,7 @@ } }, "tools": { - "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-*" + "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.1.0-preview4-final" }, "scripts": { "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" diff --git a/test/WebSites/RoutingWebSite/project.json b/test/WebSites/RoutingWebSite/project.json index d1a6808b7f..2ba2ec081d 100644 --- a/test/WebSites/RoutingWebSite/project.json +++ b/test/WebSites/RoutingWebSite/project.json @@ -5,7 +5,9 @@ }, "dependencies": { "Microsoft.AspNetCore.Mvc": "1.2.0-*", - "Microsoft.AspNetCore.Mvc.TestConfiguration": "1.0.0", + "Microsoft.AspNetCore.Mvc.TestConfiguration": { + "target": "project" + }, "Microsoft.AspNetCore.Server.IISIntegration": "1.2.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.2.0-*", "Microsoft.AspNetCore.StaticFiles": "1.2.0-*" @@ -27,7 +29,7 @@ ] }, "tools": { - "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-*" + "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.1.0-preview4-final" }, "scripts": { "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" diff --git a/test/WebSites/SimpleWebSite/project.json b/test/WebSites/SimpleWebSite/project.json index bf8e22ec36..27c14cfdd3 100644 --- a/test/WebSites/SimpleWebSite/project.json +++ b/test/WebSites/SimpleWebSite/project.json @@ -25,7 +25,7 @@ ] }, "tools": { - "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-*" + "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.1.0-preview4-final" }, "scripts": { "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" diff --git a/test/WebSites/TagHelpersWebSite/project.json b/test/WebSites/TagHelpersWebSite/project.json index abd872713f..96b8025bca 100644 --- a/test/WebSites/TagHelpersWebSite/project.json +++ b/test/WebSites/TagHelpersWebSite/project.json @@ -7,10 +7,12 @@ }, "dependencies": { "Microsoft.AspNetCore.Mvc": "1.2.0-*", - "Microsoft.AspNetCore.Mvc.TestConfiguration": "1.0.0", + "Microsoft.AspNetCore.Mvc.TestConfiguration": { + "target": "project" + }, "Microsoft.AspNetCore.Razor.Tools": { "type": "build", - "version": "1.0.0-*" + "version": "1.2.0-*" }, "Microsoft.AspNetCore.Server.IISIntegration": "1.2.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.2.0-*", @@ -34,8 +36,8 @@ ] }, "tools": { - "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-*", - "Microsoft.AspNetCore.Razor.Tools": "1.0.0-*" + "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.1.0-preview4-final", + "Microsoft.AspNetCore.Razor.Tools": "1.2.0-*" }, "scripts": { "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" diff --git a/test/WebSites/VersioningWebSite/project.json b/test/WebSites/VersioningWebSite/project.json index d1a6808b7f..2ba2ec081d 100644 --- a/test/WebSites/VersioningWebSite/project.json +++ b/test/WebSites/VersioningWebSite/project.json @@ -5,7 +5,9 @@ }, "dependencies": { "Microsoft.AspNetCore.Mvc": "1.2.0-*", - "Microsoft.AspNetCore.Mvc.TestConfiguration": "1.0.0", + "Microsoft.AspNetCore.Mvc.TestConfiguration": { + "target": "project" + }, "Microsoft.AspNetCore.Server.IISIntegration": "1.2.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.2.0-*", "Microsoft.AspNetCore.StaticFiles": "1.2.0-*" @@ -27,7 +29,7 @@ ] }, "tools": { - "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-*" + "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.1.0-preview4-final" }, "scripts": { "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" diff --git a/test/WebSites/WebApiCompatShimWebSite/project.json b/test/WebSites/WebApiCompatShimWebSite/project.json index 4269f52f94..918f0d7461 100644 --- a/test/WebSites/WebApiCompatShimWebSite/project.json +++ b/test/WebSites/WebApiCompatShimWebSite/project.json @@ -5,7 +5,9 @@ }, "dependencies": { "Microsoft.AspNetCore.Mvc": "1.2.0-*", - "Microsoft.AspNetCore.Mvc.TestConfiguration": "1.0.0", + "Microsoft.AspNetCore.Mvc.TestConfiguration": { + "target": "project" + }, "Microsoft.AspNetCore.Mvc.WebApiCompatShim": "1.2.0-*", "Microsoft.AspNetCore.Server.IISIntegration": "1.2.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.2.0-*", @@ -30,7 +32,7 @@ ] }, "tools": { - "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-*" + "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.1.0-preview4-final" }, "scripts": { "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" diff --git a/test/WebSites/XmlFormattersWebSite/project.json b/test/WebSites/XmlFormattersWebSite/project.json index 5eb972d7c3..0f1b4543f1 100644 --- a/test/WebSites/XmlFormattersWebSite/project.json +++ b/test/WebSites/XmlFormattersWebSite/project.json @@ -6,7 +6,9 @@ "dependencies": { "Microsoft.AspNetCore.Mvc": "1.2.0-*", "Microsoft.AspNetCore.Mvc.Formatters.Xml": "1.2.0-*", - "Microsoft.AspNetCore.Mvc.TestConfiguration": "1.0.0", + "Microsoft.AspNetCore.Mvc.TestConfiguration": { + "target": "project" + }, "Microsoft.AspNetCore.Server.IISIntegration": "1.2.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.2.0-*", "Microsoft.AspNetCore.StaticFiles": "1.2.0-*" @@ -28,7 +30,7 @@ ] }, "tools": { - "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-*" + "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.1.0-preview4-final" }, "scripts": { "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%"