From 967001f92384bd601c71f6ae617f00b6467348fc Mon Sep 17 00:00:00 2001 From: BrennanConroy Date: Thu, 21 Apr 2016 14:43:49 -0700 Subject: [PATCH] Add publish-iis and fix web.config --- samples/ActionConstraintSample.Web/project.json | 11 ++++++++++- samples/ActionConstraintSample.Web/web.config | 2 +- samples/CustomRouteSample.Web/project.json | 11 ++++++++++- samples/CustomRouteSample.Web/web.config | 2 +- samples/EmbeddedViewSample.Web/project.json | 11 ++++++++++- samples/EmbeddedViewSample.Web/web.config | 2 +- samples/FormatFilterSample.Web/project.json | 11 ++++++++++- samples/FormatFilterSample.Web/web.config | 2 +- samples/InlineConstraintSample.Web/project.json | 11 ++++++++++- samples/InlineConstraintSample.Web/web.config | 2 +- samples/JsonPatchSample.Web/project.json | 11 ++++++++++- samples/JsonPatchSample.Web/web.config | 2 +- samples/LocalizationSample.Web/project.json | 11 ++++++++++- samples/LocalizationSample.Web/web.config | 2 +- samples/MvcSubAreaSample.Web/project.json | 11 ++++++++++- samples/MvcSubAreaSample.Web/web.config | 2 +- samples/TagHelperSample.Web/project.json | 11 ++++++++++- samples/TagHelperSample.Web/web.config | 2 +- samples/UrlHelperSample.Web/project.json | 11 ++++++++++- samples/UrlHelperSample.Web/web.config | 2 +- test/WebSites/ApiExplorerWebSite/project.json | 11 ++++++++++- test/WebSites/ApiExplorerWebSite/web.config | 2 +- test/WebSites/ApplicationModelWebSite/project.json | 11 ++++++++++- test/WebSites/ApplicationModelWebSite/web.config | 2 +- test/WebSites/BasicWebSite/project.json | 11 ++++++++++- test/WebSites/BasicWebSite/web.config | 2 +- .../ControllersFromServicesWebSite/project.json | 11 ++++++++++- .../ControllersFromServicesWebSite/web.config | 2 +- test/WebSites/CorsWebSite/project.json | 11 ++++++++++- test/WebSites/CorsWebSite/web.config | 2 +- test/WebSites/ErrorPageMiddlewareWebSite/project.json | 11 ++++++++++- test/WebSites/ErrorPageMiddlewareWebSite/web.config | 2 +- test/WebSites/FilesWebSite/project.json | 11 ++++++++++- test/WebSites/FilesWebSite/web.config | 2 +- test/WebSites/FiltersWebSite/project.json | 11 ++++++++++- test/WebSites/FiltersWebSite/web.config | 2 +- test/WebSites/FormatterWebSite/project.json | 11 ++++++++++- test/WebSites/FormatterWebSite/web.config | 2 +- test/WebSites/HtmlGenerationWebSite/project.json | 11 ++++++++++- test/WebSites/HtmlGenerationWebSite/web.config | 2 +- .../project.json | 11 ++++++++++- .../web.config | 2 +- test/WebSites/RazorWebSite/project.json | 11 ++++++++++- test/WebSites/RazorWebSite/web.config | 2 +- test/WebSites/RoutingWebSite/project.json | 11 ++++++++++- test/WebSites/RoutingWebSite/web.config | 2 +- test/WebSites/SimpleWebSite/project.json | 11 ++++++++++- test/WebSites/SimpleWebSite/web.config | 2 +- test/WebSites/TagHelpersWebSite/project.json | 11 ++++++++++- test/WebSites/TagHelpersWebSite/web.config | 2 +- test/WebSites/VersioningWebSite/project.json | 11 ++++++++++- test/WebSites/VersioningWebSite/web.config | 2 +- test/WebSites/WebApiCompatShimWebSite/project.json | 11 ++++++++++- test/WebSites/WebApiCompatShimWebSite/web.config | 2 +- test/WebSites/XmlFormattersWebSite/project.json | 11 ++++++++++- test/WebSites/XmlFormattersWebSite/web.config | 2 +- 56 files changed, 308 insertions(+), 56 deletions(-) diff --git a/samples/ActionConstraintSample.Web/project.json b/samples/ActionConstraintSample.Web/project.json index 91d25a07bf..437e5db977 100644 --- a/samples/ActionConstraintSample.Web/project.json +++ b/samples/ActionConstraintSample.Web/project.json @@ -26,5 +26,14 @@ }, "content": [ "web.config" - ] + ], + "tools": { + "Microsoft.AspNetCore.Server.IISIntegration.Tools": { + "version": "1.0.0-*", + "imports": "portable-net45+wp80+win8+wpa81+dnxcore50" + } + }, + "scripts": { + "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" + } } \ No newline at end of file diff --git a/samples/ActionConstraintSample.Web/web.config b/samples/ActionConstraintSample.Web/web.config index d85eb57289..f0398741c5 100644 --- a/samples/ActionConstraintSample.Web/web.config +++ b/samples/ActionConstraintSample.Web/web.config @@ -4,6 +4,6 @@ - + \ No newline at end of file diff --git a/samples/CustomRouteSample.Web/project.json b/samples/CustomRouteSample.Web/project.json index 91d25a07bf..437e5db977 100644 --- a/samples/CustomRouteSample.Web/project.json +++ b/samples/CustomRouteSample.Web/project.json @@ -26,5 +26,14 @@ }, "content": [ "web.config" - ] + ], + "tools": { + "Microsoft.AspNetCore.Server.IISIntegration.Tools": { + "version": "1.0.0-*", + "imports": "portable-net45+wp80+win8+wpa81+dnxcore50" + } + }, + "scripts": { + "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" + } } \ No newline at end of file diff --git a/samples/CustomRouteSample.Web/web.config b/samples/CustomRouteSample.Web/web.config index 8bcaa9abdd..f0398741c5 100644 --- a/samples/CustomRouteSample.Web/web.config +++ b/samples/CustomRouteSample.Web/web.config @@ -4,6 +4,6 @@ - + \ No newline at end of file diff --git a/samples/EmbeddedViewSample.Web/project.json b/samples/EmbeddedViewSample.Web/project.json index 8083002e9c..2a27c74048 100644 --- a/samples/EmbeddedViewSample.Web/project.json +++ b/samples/EmbeddedViewSample.Web/project.json @@ -28,5 +28,14 @@ }, "content": [ "web.config" - ] + ], + "tools": { + "Microsoft.AspNetCore.Server.IISIntegration.Tools": { + "version": "1.0.0-*", + "imports": "portable-net45+wp80+win8+wpa81+dnxcore50" + } + }, + "scripts": { + "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" + } } \ No newline at end of file diff --git a/samples/EmbeddedViewSample.Web/web.config b/samples/EmbeddedViewSample.Web/web.config index 2bfc0ed510..f0398741c5 100644 --- a/samples/EmbeddedViewSample.Web/web.config +++ b/samples/EmbeddedViewSample.Web/web.config @@ -4,6 +4,6 @@ - + \ No newline at end of file diff --git a/samples/FormatFilterSample.Web/project.json b/samples/FormatFilterSample.Web/project.json index 5918907893..91a81de494 100644 --- a/samples/FormatFilterSample.Web/project.json +++ b/samples/FormatFilterSample.Web/project.json @@ -27,5 +27,14 @@ }, "content": [ "web.config" - ] + ], + "tools": { + "Microsoft.AspNetCore.Server.IISIntegration.Tools": { + "version": "1.0.0-*", + "imports": "portable-net45+wp80+win8+wpa81+dnxcore50" + } + }, + "scripts": { + "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" + } } \ No newline at end of file diff --git a/samples/FormatFilterSample.Web/web.config b/samples/FormatFilterSample.Web/web.config index cef4c2448c..f0398741c5 100644 --- a/samples/FormatFilterSample.Web/web.config +++ b/samples/FormatFilterSample.Web/web.config @@ -4,6 +4,6 @@ - + \ No newline at end of file diff --git a/samples/InlineConstraintSample.Web/project.json b/samples/InlineConstraintSample.Web/project.json index 4565c6c032..bf9bb72fcf 100644 --- a/samples/InlineConstraintSample.Web/project.json +++ b/samples/InlineConstraintSample.Web/project.json @@ -27,5 +27,14 @@ "content": [ "Views", "web.config" - ] + ], + "tools": { + "Microsoft.AspNetCore.Server.IISIntegration.Tools": { + "version": "1.0.0-*", + "imports": "portable-net45+wp80+win8+wpa81+dnxcore50" + } + }, + "scripts": { + "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" + } } \ No newline at end of file diff --git a/samples/InlineConstraintSample.Web/web.config b/samples/InlineConstraintSample.Web/web.config index 4434cf6269..f0398741c5 100644 --- a/samples/InlineConstraintSample.Web/web.config +++ b/samples/InlineConstraintSample.Web/web.config @@ -4,6 +4,6 @@ - + \ No newline at end of file diff --git a/samples/JsonPatchSample.Web/project.json b/samples/JsonPatchSample.Web/project.json index 91d25a07bf..437e5db977 100644 --- a/samples/JsonPatchSample.Web/project.json +++ b/samples/JsonPatchSample.Web/project.json @@ -26,5 +26,14 @@ }, "content": [ "web.config" - ] + ], + "tools": { + "Microsoft.AspNetCore.Server.IISIntegration.Tools": { + "version": "1.0.0-*", + "imports": "portable-net45+wp80+win8+wpa81+dnxcore50" + } + }, + "scripts": { + "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" + } } \ No newline at end of file diff --git a/samples/JsonPatchSample.Web/web.config b/samples/JsonPatchSample.Web/web.config index d887718b8d..f0398741c5 100644 --- a/samples/JsonPatchSample.Web/web.config +++ b/samples/JsonPatchSample.Web/web.config @@ -4,6 +4,6 @@ - + \ No newline at end of file diff --git a/samples/LocalizationSample.Web/project.json b/samples/LocalizationSample.Web/project.json index 4565c6c032..bf9bb72fcf 100644 --- a/samples/LocalizationSample.Web/project.json +++ b/samples/LocalizationSample.Web/project.json @@ -27,5 +27,14 @@ "content": [ "Views", "web.config" - ] + ], + "tools": { + "Microsoft.AspNetCore.Server.IISIntegration.Tools": { + "version": "1.0.0-*", + "imports": "portable-net45+wp80+win8+wpa81+dnxcore50" + } + }, + "scripts": { + "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" + } } \ No newline at end of file diff --git a/samples/LocalizationSample.Web/web.config b/samples/LocalizationSample.Web/web.config index 8bbb3707d3..f0398741c5 100644 --- a/samples/LocalizationSample.Web/web.config +++ b/samples/LocalizationSample.Web/web.config @@ -4,6 +4,6 @@ - + \ No newline at end of file diff --git a/samples/MvcSubAreaSample.Web/project.json b/samples/MvcSubAreaSample.Web/project.json index 62e2ac92e4..fd80ef3b68 100644 --- a/samples/MvcSubAreaSample.Web/project.json +++ b/samples/MvcSubAreaSample.Web/project.json @@ -30,5 +30,14 @@ "content": [ "Views", "web.config" - ] + ], + "tools": { + "Microsoft.AspNetCore.Server.IISIntegration.Tools": { + "version": "1.0.0-*", + "imports": "portable-net45+wp80+win8+wpa81+dnxcore50" + } + }, + "scripts": { + "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" + } } \ No newline at end of file diff --git a/samples/MvcSubAreaSample.Web/web.config b/samples/MvcSubAreaSample.Web/web.config index dee121d0f5..f0398741c5 100644 --- a/samples/MvcSubAreaSample.Web/web.config +++ b/samples/MvcSubAreaSample.Web/web.config @@ -4,6 +4,6 @@ - + \ No newline at end of file diff --git a/samples/TagHelperSample.Web/project.json b/samples/TagHelperSample.Web/project.json index 72fe318e65..2a81bd9517 100644 --- a/samples/TagHelperSample.Web/project.json +++ b/samples/TagHelperSample.Web/project.json @@ -33,5 +33,14 @@ "Views", "wwwroot", "web.config" - ] + ], + "tools": { + "Microsoft.AspNetCore.Server.IISIntegration.Tools": { + "version": "1.0.0-*", + "imports": "portable-net45+wp80+win8+wpa81+dnxcore50" + } + }, + "scripts": { + "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" + } } \ No newline at end of file diff --git a/samples/TagHelperSample.Web/web.config b/samples/TagHelperSample.Web/web.config index 22dfb2ddc6..f0398741c5 100644 --- a/samples/TagHelperSample.Web/web.config +++ b/samples/TagHelperSample.Web/web.config @@ -4,6 +4,6 @@ - + \ No newline at end of file diff --git a/samples/UrlHelperSample.Web/project.json b/samples/UrlHelperSample.Web/project.json index 9fa35b6d72..52a63dc396 100644 --- a/samples/UrlHelperSample.Web/project.json +++ b/samples/UrlHelperSample.Web/project.json @@ -27,5 +27,14 @@ "content": [ "Views", "web.config" - ] + ], + "tools": { + "Microsoft.AspNetCore.Server.IISIntegration.Tools": { + "version": "1.0.0-*", + "imports": "portable-net45+wp80+win8+wpa81+dnxcore50" + } + }, + "scripts": { + "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" + } } \ No newline at end of file diff --git a/samples/UrlHelperSample.Web/web.config b/samples/UrlHelperSample.Web/web.config index 7e7e8f097a..f0398741c5 100644 --- a/samples/UrlHelperSample.Web/web.config +++ b/samples/UrlHelperSample.Web/web.config @@ -4,6 +4,6 @@ - + \ No newline at end of file diff --git a/test/WebSites/ApiExplorerWebSite/project.json b/test/WebSites/ApiExplorerWebSite/project.json index 4500b1c726..ae586d419f 100644 --- a/test/WebSites/ApiExplorerWebSite/project.json +++ b/test/WebSites/ApiExplorerWebSite/project.json @@ -29,5 +29,14 @@ }, "content": [ "web.config" - ] + ], + "tools": { + "Microsoft.AspNetCore.Server.IISIntegration.Tools": { + "version": "1.0.0-*", + "imports": "portable-net45+wp80+win8+wpa81+dnxcore50" + } + }, + "scripts": { + "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" + } } \ No newline at end of file diff --git a/test/WebSites/ApiExplorerWebSite/web.config b/test/WebSites/ApiExplorerWebSite/web.config index c46776030d..f0398741c5 100644 --- a/test/WebSites/ApiExplorerWebSite/web.config +++ b/test/WebSites/ApiExplorerWebSite/web.config @@ -4,6 +4,6 @@ - + \ No newline at end of file diff --git a/test/WebSites/ApplicationModelWebSite/project.json b/test/WebSites/ApplicationModelWebSite/project.json index 5591449b4c..57f745ead8 100644 --- a/test/WebSites/ApplicationModelWebSite/project.json +++ b/test/WebSites/ApplicationModelWebSite/project.json @@ -28,5 +28,14 @@ }, "content": [ "web.config" - ] + ], + "tools": { + "Microsoft.AspNetCore.Server.IISIntegration.Tools": { + "version": "1.0.0-*", + "imports": "portable-net45+wp80+win8+wpa81+dnxcore50" + } + }, + "scripts": { + "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" + } } \ No newline at end of file diff --git a/test/WebSites/ApplicationModelWebSite/web.config b/test/WebSites/ApplicationModelWebSite/web.config index bfc5619669..f0398741c5 100644 --- a/test/WebSites/ApplicationModelWebSite/web.config +++ b/test/WebSites/ApplicationModelWebSite/web.config @@ -4,6 +4,6 @@ - + \ No newline at end of file diff --git a/test/WebSites/BasicWebSite/project.json b/test/WebSites/BasicWebSite/project.json index 80d32f4594..db68b5efa1 100644 --- a/test/WebSites/BasicWebSite/project.json +++ b/test/WebSites/BasicWebSite/project.json @@ -31,5 +31,14 @@ "content": [ "Views", "web.config" - ] + ], + "tools": { + "Microsoft.AspNetCore.Server.IISIntegration.Tools": { + "version": "1.0.0-*", + "imports": "portable-net45+wp80+win8+wpa81+dnxcore50" + } + }, + "scripts": { + "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" + } } \ No newline at end of file diff --git a/test/WebSites/BasicWebSite/web.config b/test/WebSites/BasicWebSite/web.config index a1806ad9a6..f0398741c5 100644 --- a/test/WebSites/BasicWebSite/web.config +++ b/test/WebSites/BasicWebSite/web.config @@ -4,6 +4,6 @@ - + \ No newline at end of file diff --git a/test/WebSites/ControllersFromServicesWebSite/project.json b/test/WebSites/ControllersFromServicesWebSite/project.json index 254a817726..3fc2592bd0 100644 --- a/test/WebSites/ControllersFromServicesWebSite/project.json +++ b/test/WebSites/ControllersFromServicesWebSite/project.json @@ -30,5 +30,14 @@ "content": [ "Views", "web.config" - ] + ], + "tools": { + "Microsoft.AspNetCore.Server.IISIntegration.Tools": { + "version": "1.0.0-*", + "imports": "portable-net45+wp80+win8+wpa81+dnxcore50" + } + }, + "scripts": { + "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" + } } \ No newline at end of file diff --git a/test/WebSites/ControllersFromServicesWebSite/web.config b/test/WebSites/ControllersFromServicesWebSite/web.config index 821607c9e3..f0398741c5 100644 --- a/test/WebSites/ControllersFromServicesWebSite/web.config +++ b/test/WebSites/ControllersFromServicesWebSite/web.config @@ -4,6 +4,6 @@ - + \ No newline at end of file diff --git a/test/WebSites/CorsWebSite/project.json b/test/WebSites/CorsWebSite/project.json index bc5baba7d4..69ca0504a0 100644 --- a/test/WebSites/CorsWebSite/project.json +++ b/test/WebSites/CorsWebSite/project.json @@ -30,5 +30,14 @@ }, "content": [ "web.config" - ] + ], + "tools": { + "Microsoft.AspNetCore.Server.IISIntegration.Tools": { + "version": "1.0.0-*", + "imports": "portable-net45+wp80+win8+wpa81+dnxcore50" + } + }, + "scripts": { + "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" + } } \ No newline at end of file diff --git a/test/WebSites/CorsWebSite/web.config b/test/WebSites/CorsWebSite/web.config index 926601d691..f0398741c5 100644 --- a/test/WebSites/CorsWebSite/web.config +++ b/test/WebSites/CorsWebSite/web.config @@ -4,6 +4,6 @@ - + \ No newline at end of file diff --git a/test/WebSites/ErrorPageMiddlewareWebSite/project.json b/test/WebSites/ErrorPageMiddlewareWebSite/project.json index 013173b382..29af93e71f 100644 --- a/test/WebSites/ErrorPageMiddlewareWebSite/project.json +++ b/test/WebSites/ErrorPageMiddlewareWebSite/project.json @@ -30,5 +30,14 @@ "content": [ "Views", "web.config" - ] + ], + "tools": { + "Microsoft.AspNetCore.Server.IISIntegration.Tools": { + "version": "1.0.0-*", + "imports": "portable-net45+wp80+win8+wpa81+dnxcore50" + } + }, + "scripts": { + "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" + } } \ No newline at end of file diff --git a/test/WebSites/ErrorPageMiddlewareWebSite/web.config b/test/WebSites/ErrorPageMiddlewareWebSite/web.config index e0fba72049..f0398741c5 100644 --- a/test/WebSites/ErrorPageMiddlewareWebSite/web.config +++ b/test/WebSites/ErrorPageMiddlewareWebSite/web.config @@ -4,6 +4,6 @@ - + \ No newline at end of file diff --git a/test/WebSites/FilesWebSite/project.json b/test/WebSites/FilesWebSite/project.json index 8e4a662966..58b8723a5e 100644 --- a/test/WebSites/FilesWebSite/project.json +++ b/test/WebSites/FilesWebSite/project.json @@ -31,5 +31,14 @@ "content": [ "sample.txt", "web.config" - ] + ], + "tools": { + "Microsoft.AspNetCore.Server.IISIntegration.Tools": { + "version": "1.0.0-*", + "imports": "portable-net45+wp80+win8+wpa81+dnxcore50" + } + }, + "scripts": { + "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" + } } \ No newline at end of file diff --git a/test/WebSites/FilesWebSite/web.config b/test/WebSites/FilesWebSite/web.config index a27d275a58..f0398741c5 100644 --- a/test/WebSites/FilesWebSite/web.config +++ b/test/WebSites/FilesWebSite/web.config @@ -4,6 +4,6 @@ - + \ No newline at end of file diff --git a/test/WebSites/FiltersWebSite/project.json b/test/WebSites/FiltersWebSite/project.json index d5c04ec61b..63e443f9be 100644 --- a/test/WebSites/FiltersWebSite/project.json +++ b/test/WebSites/FiltersWebSite/project.json @@ -30,5 +30,14 @@ }, "content": [ "web.config" - ] + ], + "tools": { + "Microsoft.AspNetCore.Server.IISIntegration.Tools": { + "version": "1.0.0-*", + "imports": "portable-net45+wp80+win8+wpa81+dnxcore50" + } + }, + "scripts": { + "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" + } } \ No newline at end of file diff --git a/test/WebSites/FiltersWebSite/web.config b/test/WebSites/FiltersWebSite/web.config index b6560efaf0..f0398741c5 100644 --- a/test/WebSites/FiltersWebSite/web.config +++ b/test/WebSites/FiltersWebSite/web.config @@ -4,6 +4,6 @@ - + \ No newline at end of file diff --git a/test/WebSites/FormatterWebSite/project.json b/test/WebSites/FormatterWebSite/project.json index 4500b1c726..ae586d419f 100644 --- a/test/WebSites/FormatterWebSite/project.json +++ b/test/WebSites/FormatterWebSite/project.json @@ -29,5 +29,14 @@ }, "content": [ "web.config" - ] + ], + "tools": { + "Microsoft.AspNetCore.Server.IISIntegration.Tools": { + "version": "1.0.0-*", + "imports": "portable-net45+wp80+win8+wpa81+dnxcore50" + } + }, + "scripts": { + "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" + } } \ No newline at end of file diff --git a/test/WebSites/FormatterWebSite/web.config b/test/WebSites/FormatterWebSite/web.config index e2af143542..f0398741c5 100644 --- a/test/WebSites/FormatterWebSite/web.config +++ b/test/WebSites/FormatterWebSite/web.config @@ -4,6 +4,6 @@ - + \ No newline at end of file diff --git a/test/WebSites/HtmlGenerationWebSite/project.json b/test/WebSites/HtmlGenerationWebSite/project.json index c0a46ced42..d322cac812 100644 --- a/test/WebSites/HtmlGenerationWebSite/project.json +++ b/test/WebSites/HtmlGenerationWebSite/project.json @@ -30,5 +30,14 @@ "Views", "wwwroot", "web.config" - ] + ], + "tools": { + "Microsoft.AspNetCore.Server.IISIntegration.Tools": { + "version": "1.0.0-*", + "imports": "portable-net45+wp80+win8+wpa81+dnxcore50" + } + }, + "scripts": { + "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" + } } \ No newline at end of file diff --git a/test/WebSites/HtmlGenerationWebSite/web.config b/test/WebSites/HtmlGenerationWebSite/web.config index 6db6e6ba08..f0398741c5 100644 --- a/test/WebSites/HtmlGenerationWebSite/web.config +++ b/test/WebSites/HtmlGenerationWebSite/web.config @@ -4,6 +4,6 @@ - + \ No newline at end of file diff --git a/test/WebSites/RazorPageExecutionInstrumentationWebSite/project.json b/test/WebSites/RazorPageExecutionInstrumentationWebSite/project.json index bbf818ebda..ef106b7d4b 100644 --- a/test/WebSites/RazorPageExecutionInstrumentationWebSite/project.json +++ b/test/WebSites/RazorPageExecutionInstrumentationWebSite/project.json @@ -30,5 +30,14 @@ "content": [ "Views", "web.config" - ] + ], + "tools": { + "Microsoft.AspNetCore.Server.IISIntegration.Tools": { + "version": "1.0.0-*", + "imports": "portable-net45+wp80+win8+wpa81+dnxcore50" + } + }, + "scripts": { + "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" + } } \ No newline at end of file diff --git a/test/WebSites/RazorPageExecutionInstrumentationWebSite/web.config b/test/WebSites/RazorPageExecutionInstrumentationWebSite/web.config index 25cd32cfb4..f0398741c5 100644 --- a/test/WebSites/RazorPageExecutionInstrumentationWebSite/web.config +++ b/test/WebSites/RazorPageExecutionInstrumentationWebSite/web.config @@ -4,6 +4,6 @@ - + \ No newline at end of file diff --git a/test/WebSites/RazorWebSite/project.json b/test/WebSites/RazorWebSite/project.json index 183cf89b87..a4d5288dd5 100644 --- a/test/WebSites/RazorWebSite/project.json +++ b/test/WebSites/RazorWebSite/project.json @@ -42,5 +42,14 @@ "content": [ "Views", "web.config" - ] + ], + "tools": { + "Microsoft.AspNetCore.Server.IISIntegration.Tools": { + "version": "1.0.0-*", + "imports": "portable-net45+wp80+win8+wpa81+dnxcore50" + } + }, + "scripts": { + "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" + } } \ No newline at end of file diff --git a/test/WebSites/RazorWebSite/web.config b/test/WebSites/RazorWebSite/web.config index 889b72f924..f0398741c5 100644 --- a/test/WebSites/RazorWebSite/web.config +++ b/test/WebSites/RazorWebSite/web.config @@ -4,6 +4,6 @@ - + \ No newline at end of file diff --git a/test/WebSites/RoutingWebSite/project.json b/test/WebSites/RoutingWebSite/project.json index 915a4ede35..e704b2075b 100644 --- a/test/WebSites/RoutingWebSite/project.json +++ b/test/WebSites/RoutingWebSite/project.json @@ -28,5 +28,14 @@ }, "content": [ "web.config" - ] + ], + "tools": { + "Microsoft.AspNetCore.Server.IISIntegration.Tools": { + "version": "1.0.0-*", + "imports": "portable-net45+wp80+win8+wpa81+dnxcore50" + } + }, + "scripts": { + "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" + } } \ No newline at end of file diff --git a/test/WebSites/RoutingWebSite/web.config b/test/WebSites/RoutingWebSite/web.config index 5aae5da4bb..f0398741c5 100644 --- a/test/WebSites/RoutingWebSite/web.config +++ b/test/WebSites/RoutingWebSite/web.config @@ -4,6 +4,6 @@ - + \ No newline at end of file diff --git a/test/WebSites/SimpleWebSite/project.json b/test/WebSites/SimpleWebSite/project.json index 1f7cb44a8e..116d888567 100644 --- a/test/WebSites/SimpleWebSite/project.json +++ b/test/WebSites/SimpleWebSite/project.json @@ -26,5 +26,14 @@ }, "content": [ "web.config" - ] + ], + "tools": { + "Microsoft.AspNetCore.Server.IISIntegration.Tools": { + "version": "1.0.0-*", + "imports": "portable-net45+wp80+win8+wpa81+dnxcore50" + } + }, + "scripts": { + "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" + } } \ No newline at end of file diff --git a/test/WebSites/SimpleWebSite/web.config b/test/WebSites/SimpleWebSite/web.config index 61491888ff..f0398741c5 100644 --- a/test/WebSites/SimpleWebSite/web.config +++ b/test/WebSites/SimpleWebSite/web.config @@ -4,6 +4,6 @@ - + \ No newline at end of file diff --git a/test/WebSites/TagHelpersWebSite/project.json b/test/WebSites/TagHelpersWebSite/project.json index 755c999856..2bcb9ce026 100644 --- a/test/WebSites/TagHelpersWebSite/project.json +++ b/test/WebSites/TagHelpersWebSite/project.json @@ -32,5 +32,14 @@ "content": [ "Views", "web.config" - ] + ], + "tools": { + "Microsoft.AspNetCore.Server.IISIntegration.Tools": { + "version": "1.0.0-*", + "imports": "portable-net45+wp80+win8+wpa81+dnxcore50" + } + }, + "scripts": { + "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" + } } \ No newline at end of file diff --git a/test/WebSites/TagHelpersWebSite/web.config b/test/WebSites/TagHelpersWebSite/web.config index 7995fe05af..f0398741c5 100644 --- a/test/WebSites/TagHelpersWebSite/web.config +++ b/test/WebSites/TagHelpersWebSite/web.config @@ -4,6 +4,6 @@ - + \ No newline at end of file diff --git a/test/WebSites/VersioningWebSite/project.json b/test/WebSites/VersioningWebSite/project.json index 915a4ede35..e704b2075b 100644 --- a/test/WebSites/VersioningWebSite/project.json +++ b/test/WebSites/VersioningWebSite/project.json @@ -28,5 +28,14 @@ }, "content": [ "web.config" - ] + ], + "tools": { + "Microsoft.AspNetCore.Server.IISIntegration.Tools": { + "version": "1.0.0-*", + "imports": "portable-net45+wp80+win8+wpa81+dnxcore50" + } + }, + "scripts": { + "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" + } } \ No newline at end of file diff --git a/test/WebSites/VersioningWebSite/web.config b/test/WebSites/VersioningWebSite/web.config index 95ec30c655..f0398741c5 100644 --- a/test/WebSites/VersioningWebSite/web.config +++ b/test/WebSites/VersioningWebSite/web.config @@ -4,6 +4,6 @@ - + \ No newline at end of file diff --git a/test/WebSites/WebApiCompatShimWebSite/project.json b/test/WebSites/WebApiCompatShimWebSite/project.json index 94eff7594a..b25fb9df4f 100644 --- a/test/WebSites/WebApiCompatShimWebSite/project.json +++ b/test/WebSites/WebApiCompatShimWebSite/project.json @@ -31,5 +31,14 @@ }, "content": [ "web.config" - ] + ], + "tools": { + "Microsoft.AspNetCore.Server.IISIntegration.Tools": { + "version": "1.0.0-*", + "imports": "portable-net45+wp80+win8+wpa81+dnxcore50" + } + }, + "scripts": { + "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" + } } \ No newline at end of file diff --git a/test/WebSites/WebApiCompatShimWebSite/web.config b/test/WebSites/WebApiCompatShimWebSite/web.config index 6c9f2be8d7..f0398741c5 100644 --- a/test/WebSites/WebApiCompatShimWebSite/web.config +++ b/test/WebSites/WebApiCompatShimWebSite/web.config @@ -4,6 +4,6 @@ - + \ No newline at end of file diff --git a/test/WebSites/XmlFormattersWebSite/project.json b/test/WebSites/XmlFormattersWebSite/project.json index eaf5b7fe5d..5092e8df91 100644 --- a/test/WebSites/XmlFormattersWebSite/project.json +++ b/test/WebSites/XmlFormattersWebSite/project.json @@ -30,5 +30,14 @@ }, "content": [ "web.config" - ] + ], + "tools": { + "Microsoft.AspNetCore.Server.IISIntegration.Tools": { + "version": "1.0.0-*", + "imports": "portable-net45+wp80+win8+wpa81+dnxcore50" + } + }, + "scripts": { + "postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" + } } \ No newline at end of file diff --git a/test/WebSites/XmlFormattersWebSite/web.config b/test/WebSites/XmlFormattersWebSite/web.config index 34106a2d6e..f0398741c5 100644 --- a/test/WebSites/XmlFormattersWebSite/web.config +++ b/test/WebSites/XmlFormattersWebSite/web.config @@ -4,6 +4,6 @@ - + \ No newline at end of file