diff --git a/test/WebSites/ApiExplorerWebSite/Startup.cs b/test/WebSites/ApiExplorerWebSite/Startup.cs index 9581a979ed..f7bb8a83a3 100644 --- a/test/WebSites/ApiExplorerWebSite/Startup.cs +++ b/test/WebSites/ApiExplorerWebSite/Startup.cs @@ -47,6 +47,7 @@ namespace ApiExplorerWebSite var host = new WebHostBuilder() .UseDefaultHostingConfiguration(args) .UseKestrel() + .UseIISIntegration() .UseStartup() .Build(); diff --git a/test/WebSites/ApiExplorerWebSite/project.json b/test/WebSites/ApiExplorerWebSite/project.json index 868f9eb59b..f197d3207b 100644 --- a/test/WebSites/ApiExplorerWebSite/project.json +++ b/test/WebSites/ApiExplorerWebSite/project.json @@ -1,12 +1,10 @@ { - "commands": { - "web": "ApiExplorerWebSite" - }, "compilationOptions": { "emitEntryPoint": true, "preserveCompilationContext": true }, "dependencies": { + "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", "Microsoft.AspNetCore.Mvc": "1.0.0-*", "Microsoft.AspNetCore.Mvc.Formatters.Xml": "1.0.0-*", @@ -24,5 +22,8 @@ "NETStandard.Library": "1.5.0-*" } } - } + }, + "content": [ + "web.config" + ] } \ No newline at end of file diff --git a/test/WebSites/ApiExplorerWebSite/web.config b/test/WebSites/ApiExplorerWebSite/web.config new file mode 100644 index 0000000000..c46776030d --- /dev/null +++ b/test/WebSites/ApiExplorerWebSite/web.config @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/test/WebSites/ApiExplorerWebSite/wwwroot/HelloWorld.htm b/test/WebSites/ApiExplorerWebSite/wwwroot/HelloWorld.htm deleted file mode 100644 index 3da1ec26e9..0000000000 --- a/test/WebSites/ApiExplorerWebSite/wwwroot/HelloWorld.htm +++ /dev/null @@ -1 +0,0 @@ -HelloWorld diff --git a/test/WebSites/ApplicationModelWebSite/Startup.cs b/test/WebSites/ApplicationModelWebSite/Startup.cs index 3dc26e460b..1dff0ad54c 100644 --- a/test/WebSites/ApplicationModelWebSite/Startup.cs +++ b/test/WebSites/ApplicationModelWebSite/Startup.cs @@ -38,6 +38,7 @@ namespace ApplicationModelWebSite .UseDefaultHostingConfiguration(args) .UseStartup() .UseKestrel() + .UseIISIntegration() .Build(); host.Run(); diff --git a/test/WebSites/ApplicationModelWebSite/project.json b/test/WebSites/ApplicationModelWebSite/project.json index 401412a17c..750b3653b4 100644 --- a/test/WebSites/ApplicationModelWebSite/project.json +++ b/test/WebSites/ApplicationModelWebSite/project.json @@ -1,12 +1,10 @@ { - "commands": { - "web": "ApplicationModelWebSite" - }, "compilationOptions": { "emitEntryPoint": true, "preserveCompilationContext": true }, "dependencies": { + "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", "Microsoft.AspNetCore.Mvc": "1.0.0-*", "Microsoft.AspNetCore.Mvc.TestConfiguration": "1.0.0", @@ -23,5 +21,8 @@ "NETStandard.Library": "1.5.0-*" } } - } + }, + "content": [ + "web.config" + ] } \ No newline at end of file diff --git a/test/WebSites/ApplicationModelWebSite/web.config b/test/WebSites/ApplicationModelWebSite/web.config new file mode 100644 index 0000000000..bfc5619669 --- /dev/null +++ b/test/WebSites/ApplicationModelWebSite/web.config @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/test/WebSites/ApplicationModelWebSite/wwwroot/HelloWorld.htm b/test/WebSites/ApplicationModelWebSite/wwwroot/HelloWorld.htm deleted file mode 100644 index 3da1ec26e9..0000000000 --- a/test/WebSites/ApplicationModelWebSite/wwwroot/HelloWorld.htm +++ /dev/null @@ -1 +0,0 @@ -HelloWorld diff --git a/test/WebSites/BasicWebSite/Startup.cs b/test/WebSites/BasicWebSite/Startup.cs index 5a0c5a50dc..fb835cfa2a 100644 --- a/test/WebSites/BasicWebSite/Startup.cs +++ b/test/WebSites/BasicWebSite/Startup.cs @@ -59,6 +59,7 @@ namespace BasicWebSite .UseDefaultHostingConfiguration(args) .UseStartup() .UseKestrel() + .UseIISIntegration() .Build(); host.Run(); diff --git a/test/WebSites/BasicWebSite/project.json b/test/WebSites/BasicWebSite/project.json index 4818f31b64..c9ff4ca0b6 100644 --- a/test/WebSites/BasicWebSite/project.json +++ b/test/WebSites/BasicWebSite/project.json @@ -1,7 +1,4 @@ { - "commands": { - "web": "BasicWebSite" - }, "compilationOptions": { "emitEntryPoint": true, "preserveCompilationContext": true @@ -10,6 +7,7 @@ "Microsoft.AspNetCore.Mvc": "1.0.0-*", "Microsoft.AspNetCore.Mvc.Formatters.Xml": "1.0.0-*", "Microsoft.AspNetCore.Mvc.TestConfiguration": "1.0.0", + "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", "Microsoft.AspNetCore.Session": "1.0.0-*", "Microsoft.AspNetCore.StaticFiles": "1.0.0-*" @@ -26,9 +24,8 @@ } } }, - "exclude": [ - "wwwroot", - "node_modules", - "bower_components" + "content": [ + "Views", + "web.config" ] } \ No newline at end of file diff --git a/test/WebSites/BasicWebSite/web.config b/test/WebSites/BasicWebSite/web.config new file mode 100644 index 0000000000..a1806ad9a6 --- /dev/null +++ b/test/WebSites/BasicWebSite/web.config @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/test/WebSites/BasicWebSite/wwwroot/web.config b/test/WebSites/BasicWebSite/wwwroot/web.config deleted file mode 100644 index 9a0d90abf8..0000000000 --- a/test/WebSites/BasicWebSite/wwwroot/web.config +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/test/WebSites/ControllersFromServicesWebSite/Startup.cs b/test/WebSites/ControllersFromServicesWebSite/Startup.cs index 85c805a688..0d89e41921 100644 --- a/test/WebSites/ControllersFromServicesWebSite/Startup.cs +++ b/test/WebSites/ControllersFromServicesWebSite/Startup.cs @@ -65,6 +65,7 @@ namespace ControllersFromServicesWebSite .UseDefaultHostingConfiguration(args) .UseStartup() .UseKestrel() + .UseIISIntegration() .Build(); host.Run(); diff --git a/test/WebSites/ControllersFromServicesWebSite/project.json b/test/WebSites/ControllersFromServicesWebSite/project.json index 03518f9da5..68dd629159 100644 --- a/test/WebSites/ControllersFromServicesWebSite/project.json +++ b/test/WebSites/ControllersFromServicesWebSite/project.json @@ -1,13 +1,11 @@ { - "commands": { - "web": "ControllersFromServicesWebSite" - }, "compilationOptions": { "emitEntryPoint": true, "preserveCompilationContext": true }, "dependencies": { "ControllersFromServicesClassLibrary": "1.0.0", + "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", "Microsoft.AspNetCore.Mvc": "1.0.0-*", "Microsoft.AspNetCore.Mvc.TestConfiguration": "1.0.0", @@ -24,5 +22,9 @@ "NETStandard.Library": "1.5.0-*" } } - } + }, + "content": [ + "Views", + "web.config" + ] } \ No newline at end of file diff --git a/test/WebSites/ControllersFromServicesWebSite/web.config b/test/WebSites/ControllersFromServicesWebSite/web.config new file mode 100644 index 0000000000..821607c9e3 --- /dev/null +++ b/test/WebSites/ControllersFromServicesWebSite/web.config @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/test/WebSites/ControllersFromServicesWebSite/wwwroot/HelloWorld.htm b/test/WebSites/ControllersFromServicesWebSite/wwwroot/HelloWorld.htm deleted file mode 100644 index 3da1ec26e9..0000000000 --- a/test/WebSites/ControllersFromServicesWebSite/wwwroot/HelloWorld.htm +++ /dev/null @@ -1 +0,0 @@ -HelloWorld diff --git a/test/WebSites/CorsWebSite/Startup.cs b/test/WebSites/CorsWebSite/Startup.cs index 8e010a9c01..bdae6af456 100644 --- a/test/WebSites/CorsWebSite/Startup.cs +++ b/test/WebSites/CorsWebSite/Startup.cs @@ -84,6 +84,7 @@ namespace CorsWebSite .UseDefaultHostingConfiguration(args) .UseStartup() .UseKestrel() + .UseIISIntegration() .Build(); host.Run(); diff --git a/test/WebSites/CorsWebSite/project.json b/test/WebSites/CorsWebSite/project.json index d059a0a151..703a93277b 100644 --- a/test/WebSites/CorsWebSite/project.json +++ b/test/WebSites/CorsWebSite/project.json @@ -1,12 +1,10 @@ { - "commands": { - "web": "CorsWebSite" - }, "compilationOptions": { "emitEntryPoint": true, "preserveCompilationContext": true }, "dependencies": { + "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", "Microsoft.AspNetCore.Cors": "1.0.0-*", "Microsoft.AspNetCore.Mvc": "1.0.0-*", @@ -25,5 +23,8 @@ "NETStandard.Library": "1.5.0-*" } } - } + }, + "content": [ + "web.config" + ] } \ No newline at end of file diff --git a/test/WebSites/CorsWebSite/web.config b/test/WebSites/CorsWebSite/web.config new file mode 100644 index 0000000000..926601d691 --- /dev/null +++ b/test/WebSites/CorsWebSite/web.config @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/test/WebSites/CorsWebSite/wwwroot/HelloWorld.htm b/test/WebSites/CorsWebSite/wwwroot/HelloWorld.htm deleted file mode 100644 index 3da1ec26e9..0000000000 --- a/test/WebSites/CorsWebSite/wwwroot/HelloWorld.htm +++ /dev/null @@ -1 +0,0 @@ -HelloWorld diff --git a/test/WebSites/ErrorPageMiddlewareWebSite/Startup.cs b/test/WebSites/ErrorPageMiddlewareWebSite/Startup.cs index 4310a7d845..ecfbdc0541 100644 --- a/test/WebSites/ErrorPageMiddlewareWebSite/Startup.cs +++ b/test/WebSites/ErrorPageMiddlewareWebSite/Startup.cs @@ -29,6 +29,7 @@ namespace ErrorPageMiddlewareWebSite .UseDefaultHostingConfiguration(args) .UseStartup() .UseKestrel() + .UseIISIntegration() .Build(); host.Run(); diff --git a/test/WebSites/ErrorPageMiddlewareWebSite/project.json b/test/WebSites/ErrorPageMiddlewareWebSite/project.json index de5098aac3..323f255617 100644 --- a/test/WebSites/ErrorPageMiddlewareWebSite/project.json +++ b/test/WebSites/ErrorPageMiddlewareWebSite/project.json @@ -1,12 +1,10 @@ { - "commands": { - "web": "ErrorPageMiddlewareWebSite" - }, "compilationOptions": { "emitEntryPoint": true, "preserveCompilationContext": true }, "dependencies": { + "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", "Microsoft.AspNetCore.Diagnostics": "1.0.0-*", "Microsoft.AspNetCore.Mvc": "1.0.0-*", @@ -24,5 +22,9 @@ "NETStandard.Library": "1.5.0-*" } } - } + }, + "content": [ + "Views", + "web.config" + ] } \ No newline at end of file diff --git a/test/WebSites/ErrorPageMiddlewareWebSite/web.config b/test/WebSites/ErrorPageMiddlewareWebSite/web.config new file mode 100644 index 0000000000..e0fba72049 --- /dev/null +++ b/test/WebSites/ErrorPageMiddlewareWebSite/web.config @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/test/WebSites/ErrorPageMiddlewareWebSite/wwwroot/HelloWorld.htm b/test/WebSites/ErrorPageMiddlewareWebSite/wwwroot/HelloWorld.htm deleted file mode 100644 index 3da1ec26e9..0000000000 --- a/test/WebSites/ErrorPageMiddlewareWebSite/wwwroot/HelloWorld.htm +++ /dev/null @@ -1 +0,0 @@ -HelloWorld diff --git a/test/WebSites/FilesWebSite/Startup.cs b/test/WebSites/FilesWebSite/Startup.cs index 192bc3b6d3..812d4a43a9 100644 --- a/test/WebSites/FilesWebSite/Startup.cs +++ b/test/WebSites/FilesWebSite/Startup.cs @@ -31,6 +31,7 @@ namespace FilesWebSite .UseDefaultHostingConfiguration(args) .UseStartup() .UseKestrel() + .UseIISIntegration() .Build(); host.Run(); diff --git a/test/WebSites/FilesWebSite/project.json b/test/WebSites/FilesWebSite/project.json index 5e353042aa..80fa4e342a 100644 --- a/test/WebSites/FilesWebSite/project.json +++ b/test/WebSites/FilesWebSite/project.json @@ -1,13 +1,11 @@ { - "commands": { - "web": "FilesWebSite" - }, "compilationOptions": { "emitEntryPoint": true, "preserveCompilationContext": true }, "resource": "EmbeddedResources/**", "dependencies": { + "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", "Microsoft.AspNetCore.Mvc": "1.0.0-*", "Microsoft.AspNetCore.Mvc.TestConfiguration": "1.0.0", @@ -25,5 +23,9 @@ "NETStandard.Library": "1.5.0-*" } } - } + }, + "content": [ + "sample.txt", + "web.config" + ] } \ No newline at end of file diff --git a/test/WebSites/FilesWebSite/web.config b/test/WebSites/FilesWebSite/web.config new file mode 100644 index 0000000000..a27d275a58 --- /dev/null +++ b/test/WebSites/FilesWebSite/web.config @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/test/WebSites/FilesWebSite/wwwroot/HelloWorld.htm b/test/WebSites/FilesWebSite/wwwroot/HelloWorld.htm deleted file mode 100644 index 3da1ec26e9..0000000000 --- a/test/WebSites/FilesWebSite/wwwroot/HelloWorld.htm +++ /dev/null @@ -1 +0,0 @@ -HelloWorld diff --git a/test/WebSites/FiltersWebSite/Startup.cs b/test/WebSites/FiltersWebSite/Startup.cs index 4ea8a6598b..2a8a62155d 100644 --- a/test/WebSites/FiltersWebSite/Startup.cs +++ b/test/WebSites/FiltersWebSite/Startup.cs @@ -59,7 +59,6 @@ namespace FiltersWebSite { app.UseCultureReplacer(); - app.UseMiddleware("Interactive"); app.UseMiddleware("Api"); app.UseMiddleware(); @@ -73,6 +72,7 @@ namespace FiltersWebSite .UseDefaultHostingConfiguration(args) .UseStartup() .UseKestrel() + .UseIISIntegration() .Build(); host.Run(); diff --git a/test/WebSites/FiltersWebSite/project.json b/test/WebSites/FiltersWebSite/project.json index 5ab570b9b0..b4894d4c5c 100644 --- a/test/WebSites/FiltersWebSite/project.json +++ b/test/WebSites/FiltersWebSite/project.json @@ -1,12 +1,10 @@ { - "commands": { - "web": "FiltersWebSite" - }, "compilationOptions": { "emitEntryPoint": true, "preserveCompilationContext": true }, "dependencies": { + "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", "Microsoft.AspNetCore.Authentication": "1.0.0-*", "Microsoft.AspNetCore.Mvc": "1.0.0-*", @@ -25,5 +23,8 @@ "NETStandard.Library": "1.5.0-*" } } - } + }, + "content": [ + "web.config" + ] } \ No newline at end of file diff --git a/test/WebSites/FiltersWebSite/web.config b/test/WebSites/FiltersWebSite/web.config new file mode 100644 index 0000000000..b6560efaf0 --- /dev/null +++ b/test/WebSites/FiltersWebSite/web.config @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/test/WebSites/FiltersWebSite/wwwroot/HelloWorld.htm b/test/WebSites/FiltersWebSite/wwwroot/HelloWorld.htm deleted file mode 100644 index 3da1ec26e9..0000000000 --- a/test/WebSites/FiltersWebSite/wwwroot/HelloWorld.htm +++ /dev/null @@ -1 +0,0 @@ -HelloWorld diff --git a/test/WebSites/FormatterWebSite/Startup.cs b/test/WebSites/FormatterWebSite/Startup.cs index b164730eda..b044221299 100644 --- a/test/WebSites/FormatterWebSite/Startup.cs +++ b/test/WebSites/FormatterWebSite/Startup.cs @@ -40,6 +40,7 @@ namespace FormatterWebSite .UseDefaultHostingConfiguration(args) .UseStartup() .UseKestrel() + .UseIISIntegration() .Build(); host.Run(); diff --git a/test/WebSites/FormatterWebSite/project.json b/test/WebSites/FormatterWebSite/project.json index 940b63e212..f197d3207b 100644 --- a/test/WebSites/FormatterWebSite/project.json +++ b/test/WebSites/FormatterWebSite/project.json @@ -1,12 +1,10 @@ { - "commands": { - "web": "FormatterWebSite" - }, "compilationOptions": { "emitEntryPoint": true, "preserveCompilationContext": true }, "dependencies": { + "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", "Microsoft.AspNetCore.Mvc": "1.0.0-*", "Microsoft.AspNetCore.Mvc.Formatters.Xml": "1.0.0-*", @@ -24,5 +22,8 @@ "NETStandard.Library": "1.5.0-*" } } - } + }, + "content": [ + "web.config" + ] } \ No newline at end of file diff --git a/test/WebSites/FormatterWebSite/web.config b/test/WebSites/FormatterWebSite/web.config new file mode 100644 index 0000000000..e2af143542 --- /dev/null +++ b/test/WebSites/FormatterWebSite/web.config @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/test/WebSites/FormatterWebSite/wwwroot/HelloWorld.htm b/test/WebSites/FormatterWebSite/wwwroot/HelloWorld.htm deleted file mode 100644 index 3da1ec26e9..0000000000 --- a/test/WebSites/FormatterWebSite/wwwroot/HelloWorld.htm +++ /dev/null @@ -1 +0,0 @@ -HelloWorld diff --git a/test/WebSites/HtmlGenerationWebSite/Startup.cs b/test/WebSites/HtmlGenerationWebSite/Startup.cs index 30e9d48f32..359e7908e1 100644 --- a/test/WebSites/HtmlGenerationWebSite/Startup.cs +++ b/test/WebSites/HtmlGenerationWebSite/Startup.cs @@ -48,6 +48,7 @@ namespace HtmlGenerationWebSite .UseDefaultHostingConfiguration(args) .UseStartup() .UseKestrel() + .UseIISIntegration() .Build(); host.Run(); diff --git a/test/WebSites/HtmlGenerationWebSite/project.json b/test/WebSites/HtmlGenerationWebSite/project.json index 144cd0e5ab..19d8f3fe1f 100644 --- a/test/WebSites/HtmlGenerationWebSite/project.json +++ b/test/WebSites/HtmlGenerationWebSite/project.json @@ -1,12 +1,10 @@ { - "commands": { - "web": "HtmlGenerationWebSite" - }, "compilationOptions": { "emitEntryPoint": true, "preserveCompilationContext": true }, "dependencies": { + "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", "Microsoft.AspNetCore.Mvc": "1.0.0-*", "Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.0-*", @@ -23,5 +21,10 @@ "NETStandard.Library": "1.5.0-*" } } - } + }, + "content": [ + "Views", + "wwwroot", + "web.config" + ] } \ No newline at end of file diff --git a/test/WebSites/HtmlGenerationWebSite/web.config b/test/WebSites/HtmlGenerationWebSite/web.config new file mode 100644 index 0000000000..6db6e6ba08 --- /dev/null +++ b/test/WebSites/HtmlGenerationWebSite/web.config @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/test/WebSites/HtmlGenerationWebSite/wwwroot/HelloWorld.htm b/test/WebSites/HtmlGenerationWebSite/wwwroot/HelloWorld.htm deleted file mode 100644 index 3da1ec26e9..0000000000 --- a/test/WebSites/HtmlGenerationWebSite/wwwroot/HelloWorld.htm +++ /dev/null @@ -1 +0,0 @@ -HelloWorld diff --git a/test/WebSites/RazorPageExecutionInstrumentationWebSite/Startup.cs b/test/WebSites/RazorPageExecutionInstrumentationWebSite/Startup.cs index ce6dc32707..81cfed8316 100644 --- a/test/WebSites/RazorPageExecutionInstrumentationWebSite/Startup.cs +++ b/test/WebSites/RazorPageExecutionInstrumentationWebSite/Startup.cs @@ -50,6 +50,7 @@ namespace RazorPageExecutionInstrumentationWebSite .UseDefaultHostingConfiguration(args) .UseStartup() .UseKestrel() + .UseIISIntegration() .Build(); host.Run(); diff --git a/test/WebSites/RazorPageExecutionInstrumentationWebSite/project.json b/test/WebSites/RazorPageExecutionInstrumentationWebSite/project.json index 124e5a85af..d8043dbf22 100644 --- a/test/WebSites/RazorPageExecutionInstrumentationWebSite/project.json +++ b/test/WebSites/RazorPageExecutionInstrumentationWebSite/project.json @@ -3,12 +3,10 @@ "emitEntryPoint": true, "preserveCompilationContext": true }, - "commands": { - "web": "RazorPageExecutionInstrumentationWebSite" - }, "dependencies": { "Microsoft.AspNetCore.Mvc": "1.0.0-*", "Microsoft.AspNetCore.Mvc.TestConfiguration": "1.0.0", + "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", "Microsoft.AspNetCore.StaticFiles": "1.0.0-*", "Microsoft.Extensions.DiagnosticAdapter": "1.0.0-*" @@ -24,5 +22,9 @@ "NETStandard.Library": "1.5.0-*" } } - } + }, + "content": [ + "Views", + "web.config" + ] } \ No newline at end of file diff --git a/test/WebSites/RazorPageExecutionInstrumentationWebSite/web.config b/test/WebSites/RazorPageExecutionInstrumentationWebSite/web.config new file mode 100644 index 0000000000..25cd32cfb4 --- /dev/null +++ b/test/WebSites/RazorPageExecutionInstrumentationWebSite/web.config @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/test/WebSites/RazorPageExecutionInstrumentationWebSite/wwwroot/HelloWorld.htm b/test/WebSites/RazorPageExecutionInstrumentationWebSite/wwwroot/HelloWorld.htm deleted file mode 100644 index 3da1ec26e9..0000000000 --- a/test/WebSites/RazorPageExecutionInstrumentationWebSite/wwwroot/HelloWorld.htm +++ /dev/null @@ -1 +0,0 @@ -HelloWorld diff --git a/test/WebSites/RazorWebSite/Startup.cs b/test/WebSites/RazorWebSite/Startup.cs index 34c53eee3e..1f6505c39f 100644 --- a/test/WebSites/RazorWebSite/Startup.cs +++ b/test/WebSites/RazorWebSite/Startup.cs @@ -67,6 +67,7 @@ namespace RazorWebSite .UseDefaultHostingConfiguration(args) .UseStartup() .UseKestrel() + .UseIISIntegration() .Build(); host.Run(); diff --git a/test/WebSites/RazorWebSite/project.json b/test/WebSites/RazorWebSite/project.json index 15236bd721..e3a064971f 100644 --- a/test/WebSites/RazorWebSite/project.json +++ b/test/WebSites/RazorWebSite/project.json @@ -1,7 +1,4 @@ { - "commands": { - "web": "RazorWebSite" - }, "compilationOptions": { "emitEntryPoint": true, "preserveCompilationContext": true @@ -11,6 +8,7 @@ "Microsoft.AspNetCore.Mvc": "1.0.0-*", "Microsoft.AspNetCore.Mvc.Localization": "1.0.0-*", "Microsoft.AspNetCore.Mvc.TestConfiguration": "1.0.0", + "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", "Microsoft.AspNetCore.StaticFiles": "1.0.0-*" }, @@ -36,5 +34,9 @@ "NETStandard.Library": "1.5.0-*" } } - } + }, + "content": [ + "Views", + "web.config" + ] } \ No newline at end of file diff --git a/test/WebSites/RazorWebSite/web.config b/test/WebSites/RazorWebSite/web.config new file mode 100644 index 0000000000..889b72f924 --- /dev/null +++ b/test/WebSites/RazorWebSite/web.config @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/test/WebSites/RazorWebSite/wwwroot/HelloWorld.htm b/test/WebSites/RazorWebSite/wwwroot/HelloWorld.htm deleted file mode 100644 index 3da1ec26e9..0000000000 --- a/test/WebSites/RazorWebSite/wwwroot/HelloWorld.htm +++ /dev/null @@ -1 +0,0 @@ -HelloWorld diff --git a/test/WebSites/RoutingWebSite/Startup.cs b/test/WebSites/RoutingWebSite/Startup.cs index 4c56118a51..31f9ea912d 100644 --- a/test/WebSites/RoutingWebSite/Startup.cs +++ b/test/WebSites/RoutingWebSite/Startup.cs @@ -47,6 +47,7 @@ namespace RoutingWebSite .UseDefaultHostingConfiguration(args) .UseStartup() .UseKestrel() + .UseIISIntegration() .Build(); host.Run(); diff --git a/test/WebSites/RoutingWebSite/project.json b/test/WebSites/RoutingWebSite/project.json index bbc1b600d0..1baad45505 100644 --- a/test/WebSites/RoutingWebSite/project.json +++ b/test/WebSites/RoutingWebSite/project.json @@ -3,12 +3,10 @@ "emitEntryPoint": true, "preserveCompilationContext": true }, - "commands": { - "web": "RoutingWebSite" - }, "dependencies": { "Microsoft.AspNetCore.Mvc": "1.0.0-*", "Microsoft.AspNetCore.Mvc.TestConfiguration": "1.0.0", + "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", "Microsoft.AspNetCore.StaticFiles": "1.0.0-*" }, @@ -23,5 +21,8 @@ "NETStandard.Library": "1.5.0-*" } } - } + }, + "content": [ + "web.config" + ] } \ No newline at end of file diff --git a/test/WebSites/RoutingWebSite/web.config b/test/WebSites/RoutingWebSite/web.config new file mode 100644 index 0000000000..5aae5da4bb --- /dev/null +++ b/test/WebSites/RoutingWebSite/web.config @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/test/WebSites/RoutingWebSite/wwwroot/HelloWorld.htm b/test/WebSites/RoutingWebSite/wwwroot/HelloWorld.htm deleted file mode 100644 index 3da1ec26e9..0000000000 --- a/test/WebSites/RoutingWebSite/wwwroot/HelloWorld.htm +++ /dev/null @@ -1 +0,0 @@ -HelloWorld diff --git a/test/WebSites/SimpleWebSite/Startup.cs b/test/WebSites/SimpleWebSite/Startup.cs index ecce56980c..796b1415f9 100644 --- a/test/WebSites/SimpleWebSite/Startup.cs +++ b/test/WebSites/SimpleWebSite/Startup.cs @@ -35,6 +35,7 @@ namespace SimpleWebSite .UseDefaultHostingConfiguration(args) .UseStartup() .UseKestrel() + .UseIISIntegration() .Build(); host.Run(); diff --git a/test/WebSites/SimpleWebSite/project.json b/test/WebSites/SimpleWebSite/project.json index 97bb88a797..4511bf803c 100644 --- a/test/WebSites/SimpleWebSite/project.json +++ b/test/WebSites/SimpleWebSite/project.json @@ -3,11 +3,9 @@ "emitEntryPoint": true, "preserveCompilationContext": true }, - "commands": { - "web": "SimpleWebSite" - }, "dependencies": { "Microsoft.AspNetCore.Mvc": "1.0.0-*", + "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*" }, "frameworks": { @@ -21,5 +19,8 @@ "NETStandard.Library": "1.5.0-*" } } - } + }, + "content": [ + "web.config" + ] } \ No newline at end of file diff --git a/test/WebSites/SimpleWebSite/web.config b/test/WebSites/SimpleWebSite/web.config new file mode 100644 index 0000000000..61491888ff --- /dev/null +++ b/test/WebSites/SimpleWebSite/web.config @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/test/WebSites/SimpleWebSite/wwwroot/web.config b/test/WebSites/SimpleWebSite/wwwroot/web.config deleted file mode 100644 index 8485f6719f..0000000000 --- a/test/WebSites/SimpleWebSite/wwwroot/web.config +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/test/WebSites/TagHelpersWebSite/Startup.cs b/test/WebSites/TagHelpersWebSite/Startup.cs index cae390216d..703ab6a92f 100644 --- a/test/WebSites/TagHelpersWebSite/Startup.cs +++ b/test/WebSites/TagHelpersWebSite/Startup.cs @@ -28,6 +28,7 @@ namespace TagHelpersWebSite .UseDefaultHostingConfiguration(args) .UseStartup() .UseKestrel() + .UseIISIntegration() .Build(); host.Run(); diff --git a/test/WebSites/TagHelpersWebSite/project.json b/test/WebSites/TagHelpersWebSite/project.json index d1b92392e4..1715dab862 100644 --- a/test/WebSites/TagHelpersWebSite/project.json +++ b/test/WebSites/TagHelpersWebSite/project.json @@ -5,13 +5,11 @@ "warningsAsErrors": true, "preserveCompilationContext": true }, - "commands": { - "web": "TagHelpersWebSite" - }, "dependencies": { "Microsoft.AspNetCore.Mvc": "1.0.0-*", "Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.0-*", "Microsoft.AspNetCore.Mvc.TestConfiguration": "1.0.0", + "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", "Microsoft.AspNetCore.StaticFiles": "1.0.0-*" }, @@ -26,5 +24,9 @@ "NETStandard.Library": "1.5.0-*" } } - } + }, + "content": [ + "Views", + "web.config" + ] } \ No newline at end of file diff --git a/test/WebSites/TagHelpersWebSite/web.config b/test/WebSites/TagHelpersWebSite/web.config new file mode 100644 index 0000000000..7995fe05af --- /dev/null +++ b/test/WebSites/TagHelpersWebSite/web.config @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/test/WebSites/TagHelpersWebSite/wwwroot/HelloWorld.htm b/test/WebSites/TagHelpersWebSite/wwwroot/HelloWorld.htm deleted file mode 100644 index 3da1ec26e9..0000000000 --- a/test/WebSites/TagHelpersWebSite/wwwroot/HelloWorld.htm +++ /dev/null @@ -1 +0,0 @@ -HelloWorld diff --git a/test/WebSites/TagHelpersWebSite/wwwroot/web.config b/test/WebSites/TagHelpersWebSite/wwwroot/web.config deleted file mode 100644 index 9a0d90abf8..0000000000 --- a/test/WebSites/TagHelpersWebSite/wwwroot/web.config +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/test/WebSites/VersioningWebSite/Startup.cs b/test/WebSites/VersioningWebSite/Startup.cs index 445d851ca2..80834a697f 100644 --- a/test/WebSites/VersioningWebSite/Startup.cs +++ b/test/WebSites/VersioningWebSite/Startup.cs @@ -32,6 +32,7 @@ namespace VersioningWebSite .UseDefaultHostingConfiguration(args) .UseStartup() .UseKestrel() + .UseIISIntegration() .Build(); host.Run(); diff --git a/test/WebSites/VersioningWebSite/project.json b/test/WebSites/VersioningWebSite/project.json index 8600cab346..1baad45505 100644 --- a/test/WebSites/VersioningWebSite/project.json +++ b/test/WebSites/VersioningWebSite/project.json @@ -3,12 +3,10 @@ "emitEntryPoint": true, "preserveCompilationContext": true }, - "commands": { - "web": "VersioningWebSite" - }, "dependencies": { "Microsoft.AspNetCore.Mvc": "1.0.0-*", "Microsoft.AspNetCore.Mvc.TestConfiguration": "1.0.0", + "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", "Microsoft.AspNetCore.StaticFiles": "1.0.0-*" }, @@ -23,5 +21,8 @@ "NETStandard.Library": "1.5.0-*" } } - } + }, + "content": [ + "web.config" + ] } \ No newline at end of file diff --git a/test/WebSites/VersioningWebSite/web.config b/test/WebSites/VersioningWebSite/web.config new file mode 100644 index 0000000000..95ec30c655 --- /dev/null +++ b/test/WebSites/VersioningWebSite/web.config @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/test/WebSites/VersioningWebSite/wwwroot/HelloWorld.htm b/test/WebSites/VersioningWebSite/wwwroot/HelloWorld.htm deleted file mode 100644 index 3da1ec26e9..0000000000 --- a/test/WebSites/VersioningWebSite/wwwroot/HelloWorld.htm +++ /dev/null @@ -1 +0,0 @@ -HelloWorld diff --git a/test/WebSites/WebApiCompatShimWebSite/Startup.cs b/test/WebSites/WebApiCompatShimWebSite/Startup.cs index 6213bebcb9..fc1879ef3f 100644 --- a/test/WebSites/WebApiCompatShimWebSite/Startup.cs +++ b/test/WebSites/WebApiCompatShimWebSite/Startup.cs @@ -39,6 +39,7 @@ namespace WebApiCompatShimWebSite .UseDefaultHostingConfiguration(args) .UseStartup() .UseKestrel() + .UseIISIntegration() .Build(); host.Run(); diff --git a/test/WebSites/WebApiCompatShimWebSite/project.json b/test/WebSites/WebApiCompatShimWebSite/project.json index de6f6a3a5a..493b49df98 100644 --- a/test/WebSites/WebApiCompatShimWebSite/project.json +++ b/test/WebSites/WebApiCompatShimWebSite/project.json @@ -3,13 +3,11 @@ "emitEntryPoint": true, "preserveCompilationContext": true }, - "commands": { - "web": "WebApiCompatShimWebSite" - }, "dependencies": { "Microsoft.AspNetCore.Mvc": "1.0.0-*", "Microsoft.AspNetCore.Mvc.TestConfiguration": "1.0.0", "Microsoft.AspNetCore.Mvc.WebApiCompatShim": "1.0.0-*", + "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", "Microsoft.AspNetCore.StaticFiles": "1.0.0-*" }, @@ -26,5 +24,8 @@ "System.Diagnostics.Tracing": "4.1.0-*" } } - } + }, + "content": [ + "web.config" + ] } \ No newline at end of file diff --git a/test/WebSites/WebApiCompatShimWebSite/web.config b/test/WebSites/WebApiCompatShimWebSite/web.config new file mode 100644 index 0000000000..6c9f2be8d7 --- /dev/null +++ b/test/WebSites/WebApiCompatShimWebSite/web.config @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/test/WebSites/WebApiCompatShimWebSite/wwwroot/HelloWorld.htm b/test/WebSites/WebApiCompatShimWebSite/wwwroot/HelloWorld.htm deleted file mode 100644 index 3da1ec26e9..0000000000 --- a/test/WebSites/WebApiCompatShimWebSite/wwwroot/HelloWorld.htm +++ /dev/null @@ -1 +0,0 @@ -HelloWorld diff --git a/test/WebSites/XmlFormattersWebSite/Startup.cs b/test/WebSites/XmlFormattersWebSite/Startup.cs index 3e86f686a5..d2edae833d 100644 --- a/test/WebSites/XmlFormattersWebSite/Startup.cs +++ b/test/WebSites/XmlFormattersWebSite/Startup.cs @@ -83,6 +83,7 @@ namespace XmlFormattersWebSite .UseDefaultHostingConfiguration(args) .UseStartup() .UseKestrel() + .UseIISIntegration() .Build(); host.Run(); diff --git a/test/WebSites/XmlFormattersWebSite/project.json b/test/WebSites/XmlFormattersWebSite/project.json index 59a83b9179..90b905ed1b 100644 --- a/test/WebSites/XmlFormattersWebSite/project.json +++ b/test/WebSites/XmlFormattersWebSite/project.json @@ -3,13 +3,11 @@ "emitEntryPoint": true, "preserveCompilationContext": true }, - "commands": { - "web": "XmlFormattersWebSite" - }, "dependencies": { "Microsoft.AspNetCore.Mvc": "1.0.0-*", "Microsoft.AspNetCore.Mvc.Formatters.Xml": "1.0.0-*", "Microsoft.AspNetCore.Mvc.TestConfiguration": "1.0.0", + "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", "Microsoft.AspNetCore.StaticFiles": "1.0.0-*" }, @@ -25,5 +23,8 @@ "System.Linq.Queryable": "4.0.1-*" } } - } + }, + "content": [ + "web.config" + ] } \ No newline at end of file diff --git a/test/WebSites/XmlFormattersWebSite/web.config b/test/WebSites/XmlFormattersWebSite/web.config new file mode 100644 index 0000000000..34106a2d6e --- /dev/null +++ b/test/WebSites/XmlFormattersWebSite/web.config @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/test/WebSites/XmlFormattersWebSite/wwwroot/HelloWorld.htm b/test/WebSites/XmlFormattersWebSite/wwwroot/HelloWorld.htm deleted file mode 100644 index 3da1ec26e9..0000000000 --- a/test/WebSites/XmlFormattersWebSite/wwwroot/HelloWorld.htm +++ /dev/null @@ -1 +0,0 @@ -HelloWorld