diff --git a/samples/ActionConstraintSample.Web/Startup.cs b/samples/ActionConstraintSample.Web/Startup.cs index c068dfb79c..e4a49af4a6 100644 --- a/samples/ActionConstraintSample.Web/Startup.cs +++ b/samples/ActionConstraintSample.Web/Startup.cs @@ -31,7 +31,7 @@ namespace ActionConstraintSample.Web { var host = new WebHostBuilder() .UseDefaultHostingConfiguration(args) - .UseIISPlatformHandlerUrl() + .UseIISIntegration() .UseKestrel() .UseStartup() .Build(); diff --git a/samples/ActionConstraintSample.Web/project.json b/samples/ActionConstraintSample.Web/project.json index 32a3161f73..dd2ac96329 100644 --- a/samples/ActionConstraintSample.Web/project.json +++ b/samples/ActionConstraintSample.Web/project.json @@ -3,11 +3,8 @@ "emitEntryPoint": true, "preserveCompilationContext": true }, - "commands": { - "web": "ActionConstraintSample.Web" - }, "dependencies": { - "Microsoft.AspNetCore.IISPlatformHandler": "1.0.0-*", + "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*", "Microsoft.AspNetCore.Mvc": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", "Microsoft.NETCore.Platforms": "1.0.1-*" @@ -23,5 +20,8 @@ "NETStandard.Library": "1.5.0-*" } } - } + }, + "content": [ + "web.config" + ] } \ No newline at end of file diff --git a/samples/ActionConstraintSample.Web/web.config b/samples/ActionConstraintSample.Web/web.config new file mode 100644 index 0000000000..d85eb57289 --- /dev/null +++ b/samples/ActionConstraintSample.Web/web.config @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/samples/ActionConstraintSample.Web/wwwroot/web.config b/samples/ActionConstraintSample.Web/wwwroot/web.config deleted file mode 100644 index 8485f6719f..0000000000 --- a/samples/ActionConstraintSample.Web/wwwroot/web.config +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/samples/CustomRouteSample.Web/Startup.cs b/samples/CustomRouteSample.Web/Startup.cs index f277950044..e2ee8f1e70 100644 --- a/samples/CustomRouteSample.Web/Startup.cs +++ b/samples/CustomRouteSample.Web/Startup.cs @@ -28,7 +28,7 @@ namespace CustomRouteSample.Web { var host = new WebHostBuilder() .UseDefaultHostingConfiguration(args) - .UseIISPlatformHandlerUrl() + .UseIISIntegration() .UseKestrel() .UseStartup() .Build(); diff --git a/samples/CustomRouteSample.Web/project.json b/samples/CustomRouteSample.Web/project.json index 293ffb1391..dd2ac96329 100644 --- a/samples/CustomRouteSample.Web/project.json +++ b/samples/CustomRouteSample.Web/project.json @@ -3,11 +3,8 @@ "emitEntryPoint": true, "preserveCompilationContext": true }, - "commands": { - "web": "CustomRouteSample.Web" - }, "dependencies": { - "Microsoft.AspNetCore.IISPlatformHandler": "1.0.0-*", + "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*", "Microsoft.AspNetCore.Mvc": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", "Microsoft.NETCore.Platforms": "1.0.1-*" @@ -23,5 +20,8 @@ "NETStandard.Library": "1.5.0-*" } } - } + }, + "content": [ + "web.config" + ] } \ No newline at end of file diff --git a/samples/CustomRouteSample.Web/web.config b/samples/CustomRouteSample.Web/web.config new file mode 100644 index 0000000000..8bcaa9abdd --- /dev/null +++ b/samples/CustomRouteSample.Web/web.config @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/samples/CustomRouteSample.Web/wwwroot/web.config b/samples/CustomRouteSample.Web/wwwroot/web.config deleted file mode 100644 index 8485f6719f..0000000000 --- a/samples/CustomRouteSample.Web/wwwroot/web.config +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/samples/EmbeddedViewSample.Web/Startup.cs b/samples/EmbeddedViewSample.Web/Startup.cs index 73701c63c9..7bf6887247 100644 --- a/samples/EmbeddedViewSample.Web/Startup.cs +++ b/samples/EmbeddedViewSample.Web/Startup.cs @@ -45,7 +45,7 @@ namespace EmbeddedViewSample.Web { var host = new WebHostBuilder() .UseDefaultHostingConfiguration(args) - .UseIISPlatformHandlerUrl() + .UseIISIntegration() .UseKestrel() .UseStartup() .Build(); diff --git a/samples/EmbeddedViewSample.Web/project.json b/samples/EmbeddedViewSample.Web/project.json index 433471b7de..859af76e86 100644 --- a/samples/EmbeddedViewSample.Web/project.json +++ b/samples/EmbeddedViewSample.Web/project.json @@ -3,12 +3,9 @@ "emitEntryPoint": true, "preserveCompilationContext": true }, - "commands": { - "web": "EmbeddedViewSample.Web" - }, "resource": "EmbeddedResources/**", "dependencies": { - "Microsoft.AspNetCore.IISPlatformHandler": "1.0.0-*", + "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*", "Microsoft.AspNetCore.Mvc": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", "Microsoft.Extensions.FileProviders.Embedded": "1.0.0-*", @@ -25,5 +22,8 @@ "NETStandard.Library": "1.5.0-*" } } - } + }, + "content": [ + "web.config" + ] } \ No newline at end of file diff --git a/samples/EmbeddedViewSample.Web/web.config b/samples/EmbeddedViewSample.Web/web.config new file mode 100644 index 0000000000..2bfc0ed510 --- /dev/null +++ b/samples/EmbeddedViewSample.Web/web.config @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/samples/EmbeddedViewSample.Web/wwwroot/web.config b/samples/EmbeddedViewSample.Web/wwwroot/web.config deleted file mode 100644 index 8485f6719f..0000000000 --- a/samples/EmbeddedViewSample.Web/wwwroot/web.config +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/samples/FormatFilterSample.Web/Startup.cs b/samples/FormatFilterSample.Web/Startup.cs index dd89d327ad..4dfb799a58 100644 --- a/samples/FormatFilterSample.Web/Startup.cs +++ b/samples/FormatFilterSample.Web/Startup.cs @@ -41,7 +41,7 @@ namespace FormatFilterSample.Web { var host = new WebHostBuilder() .UseDefaultHostingConfiguration(args) - .UseIISPlatformHandlerUrl() + .UseIISIntegration() .UseKestrel() .UseStartup() .Build(); diff --git a/samples/FormatFilterSample.Web/project.json b/samples/FormatFilterSample.Web/project.json index a66e0c7041..45cb0505c1 100644 --- a/samples/FormatFilterSample.Web/project.json +++ b/samples/FormatFilterSample.Web/project.json @@ -3,11 +3,8 @@ "emitEntryPoint": true, "preserveCompilationContext": true }, - "commands": { - "web": "FormatFilterSample.Web" - }, "dependencies": { - "Microsoft.AspNetCore.IISPlatformHandler": "1.0.0-*", + "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*", "Microsoft.AspNetCore.Mvc": "1.0.0-*", "Microsoft.AspNetCore.Mvc.Formatters.Xml": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", @@ -24,5 +21,8 @@ "NETStandard.Library": "1.5.0-*" } } - } + }, + "content": [ + "web.config" + ] } \ No newline at end of file diff --git a/samples/FormatFilterSample.Web/web.config b/samples/FormatFilterSample.Web/web.config new file mode 100644 index 0000000000..cef4c2448c --- /dev/null +++ b/samples/FormatFilterSample.Web/web.config @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/samples/FormatFilterSample.Web/wwwroot/web.config b/samples/FormatFilterSample.Web/wwwroot/web.config deleted file mode 100644 index 8485f6719f..0000000000 --- a/samples/FormatFilterSample.Web/wwwroot/web.config +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/samples/InlineConstraintSample.Web/Startup.cs b/samples/InlineConstraintSample.Web/Startup.cs index 81c59008a7..2f4dc40f7b 100644 --- a/samples/InlineConstraintSample.Web/Startup.cs +++ b/samples/InlineConstraintSample.Web/Startup.cs @@ -40,7 +40,7 @@ namespace InlineConstraintSample.Web { var host = new WebHostBuilder() .UseDefaultHostingConfiguration(args) - .UseIISPlatformHandlerUrl() + .UseIISIntegration() .UseKestrel() .UseStartup() .Build(); diff --git a/samples/InlineConstraintSample.Web/project.json b/samples/InlineConstraintSample.Web/project.json index 2d841081c9..9d6ed11855 100644 --- a/samples/InlineConstraintSample.Web/project.json +++ b/samples/InlineConstraintSample.Web/project.json @@ -3,11 +3,8 @@ "emitEntryPoint": true, "preserveCompilationContext": true }, - "commands": { - "web": "InlineConstraintSample.Web" - }, "dependencies": { - "Microsoft.AspNetCore.IISPlatformHandler": "1.0.0-*", + "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*", "Microsoft.AspNetCore.Mvc": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", "Microsoft.NETCore.Platforms": "1.0.1-*" @@ -23,5 +20,9 @@ "NETStandard.Library": "1.5.0-*" } } - } + }, + "content": [ + "Views", + "web.config" + ] } \ No newline at end of file diff --git a/samples/InlineConstraintSample.Web/web.config b/samples/InlineConstraintSample.Web/web.config new file mode 100644 index 0000000000..4434cf6269 --- /dev/null +++ b/samples/InlineConstraintSample.Web/web.config @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/samples/InlineConstraintSample.Web/wwwroot/web.config b/samples/InlineConstraintSample.Web/wwwroot/web.config deleted file mode 100644 index 8485f6719f..0000000000 --- a/samples/InlineConstraintSample.Web/wwwroot/web.config +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/samples/JsonPatchSample.Web/Startup.cs b/samples/JsonPatchSample.Web/Startup.cs index 6b31ad7051..612c295933 100644 --- a/samples/JsonPatchSample.Web/Startup.cs +++ b/samples/JsonPatchSample.Web/Startup.cs @@ -26,7 +26,7 @@ namespace JsonPatchSample.Web { var host = new WebHostBuilder() .UseDefaultHostingConfiguration(args) - .UseIISPlatformHandlerUrl() + .UseIISIntegration() .UseKestrel() .UseStartup() .Build(); diff --git a/samples/JsonPatchSample.Web/project.json b/samples/JsonPatchSample.Web/project.json index 8ef38a7848..dd2ac96329 100644 --- a/samples/JsonPatchSample.Web/project.json +++ b/samples/JsonPatchSample.Web/project.json @@ -3,11 +3,8 @@ "emitEntryPoint": true, "preserveCompilationContext": true }, - "commands": { - "web": "JsonPatchSample.Web" - }, "dependencies": { - "Microsoft.AspNetCore.IISPlatformHandler": "1.0.0-*", + "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*", "Microsoft.AspNetCore.Mvc": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", "Microsoft.NETCore.Platforms": "1.0.1-*" @@ -23,5 +20,8 @@ "NETStandard.Library": "1.5.0-*" } } - } + }, + "content": [ + "web.config" + ] } \ No newline at end of file diff --git a/samples/JsonPatchSample.Web/web.config b/samples/JsonPatchSample.Web/web.config new file mode 100644 index 0000000000..d887718b8d --- /dev/null +++ b/samples/JsonPatchSample.Web/web.config @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/samples/JsonPatchSample.Web/wwwroot/web.config b/samples/JsonPatchSample.Web/wwwroot/web.config deleted file mode 100644 index 8485f6719f..0000000000 --- a/samples/JsonPatchSample.Web/wwwroot/web.config +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/samples/LocalizationSample.Web/Startup.cs b/samples/LocalizationSample.Web/Startup.cs index 6a1f8cebdd..c83e54dfdb 100644 --- a/samples/LocalizationSample.Web/Startup.cs +++ b/samples/LocalizationSample.Web/Startup.cs @@ -44,7 +44,7 @@ namespace LocalizationSample.Web { var host = new WebHostBuilder() .UseDefaultHostingConfiguration(args) - .UseIISPlatformHandlerUrl() + .UseIISIntegration() .UseKestrel() .UseStartup() .Build(); diff --git a/samples/LocalizationSample.Web/project.json b/samples/LocalizationSample.Web/project.json index 40300a7ed8..9d6ed11855 100644 --- a/samples/LocalizationSample.Web/project.json +++ b/samples/LocalizationSample.Web/project.json @@ -1,13 +1,10 @@ { - "commands": { - "web": "LocalizationSample.Web" - }, "compilationOptions": { "emitEntryPoint": true, "preserveCompilationContext": true }, "dependencies": { - "Microsoft.AspNetCore.IISPlatformHandler": "1.0.0-*", + "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*", "Microsoft.AspNetCore.Mvc": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", "Microsoft.NETCore.Platforms": "1.0.1-*" @@ -23,5 +20,9 @@ "NETStandard.Library": "1.5.0-*" } } - } + }, + "content": [ + "Views", + "web.config" + ] } \ No newline at end of file diff --git a/samples/LocalizationSample.Web/web.config b/samples/LocalizationSample.Web/web.config new file mode 100644 index 0000000000..8bbb3707d3 --- /dev/null +++ b/samples/LocalizationSample.Web/web.config @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/samples/LocalizationSample.Web/wwwroot/web.config b/samples/LocalizationSample.Web/wwwroot/web.config deleted file mode 100644 index 8485f6719f..0000000000 --- a/samples/LocalizationSample.Web/wwwroot/web.config +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/samples/MvcSandbox/Startup.cs b/samples/MvcSandbox/Startup.cs index 659ebea209..5ebfaca1f8 100644 --- a/samples/MvcSandbox/Startup.cs +++ b/samples/MvcSandbox/Startup.cs @@ -36,7 +36,7 @@ namespace MvcSandbox var host = new WebHostBuilder() .UseDefaultHostingConfiguration(args) .UseContentRoot(Directory.GetCurrentDirectory()) - .UseIISPlatformHandlerUrl() + .UseIISIntegration() .UseKestrel() .UseStartup() .Build(); diff --git a/samples/MvcSandbox/project.json b/samples/MvcSandbox/project.json index 3e8e1cb540..cf41871afe 100644 --- a/samples/MvcSandbox/project.json +++ b/samples/MvcSandbox/project.json @@ -1,7 +1,4 @@ { - "commands": { - "web": "MvcSandbox" - }, "compilationOptions": { "emitEntryPoint": true, "warningsAsErrors": true, @@ -9,7 +6,7 @@ }, "dependencies": { "Microsoft.AspNetCore.Diagnostics": "1.0.0-*", - "Microsoft.AspNetCore.IISPlatformHandler": "1.0.0-*", + "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*", "Microsoft.AspNetCore.Mvc": "1.0.0-*", "Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", @@ -19,11 +16,9 @@ "Microsoft.NETCore.Platforms": "1.0.1-*" }, "content": [ - "Views" + "Views", + "web.config" ], - "tools": { - "dotnet-razor-tooling": "1.0.0-*" - }, "frameworks": { "net451": {}, "netstandardapp1.5": { @@ -35,14 +30,5 @@ "NETStandard.Library": "1.5.0-*" } } - }, - "exclude": [ - "wwwroot", - "node_modules", - "bower_components" - ], - "publishExclude": [ - "**.user", - "**.vspscc" - ] + } } \ No newline at end of file diff --git a/samples/MvcSandbox/wwwroot/favicon.ico b/samples/MvcSandbox/wwwroot/favicon.ico deleted file mode 100644 index a3a799985c..0000000000 Binary files a/samples/MvcSandbox/wwwroot/favicon.ico and /dev/null differ diff --git a/samples/MvcSandbox/wwwroot/web.config b/samples/MvcSandbox/wwwroot/web.config deleted file mode 100644 index 8485f6719f..0000000000 --- a/samples/MvcSandbox/wwwroot/web.config +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/samples/MvcSubAreaSample.Web/Startup.cs b/samples/MvcSubAreaSample.Web/Startup.cs index 3f1e9c8e77..4075d364e5 100644 --- a/samples/MvcSubAreaSample.Web/Startup.cs +++ b/samples/MvcSubAreaSample.Web/Startup.cs @@ -40,7 +40,7 @@ namespace MvcSubAreaSample.Web { var host = new WebHostBuilder() .UseDefaultHostingConfiguration(args) - .UseIISPlatformHandlerUrl() + .UseIISIntegration() .UseKestrel() .UseStartup() .Build(); diff --git a/samples/MvcSubAreaSample.Web/project.json b/samples/MvcSubAreaSample.Web/project.json index d1a3d0e71c..84743c276a 100644 --- a/samples/MvcSubAreaSample.Web/project.json +++ b/samples/MvcSubAreaSample.Web/project.json @@ -3,11 +3,8 @@ "emitEntryPoint": true, "preserveCompilationContext": true }, - "commands": { - "web": "MvcSubAreaSample.Web" - }, "dependencies": { - "Microsoft.AspNetCore.IISPlatformHandler": "1.0.0-*", + "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*", "Microsoft.AspNetCore.Diagnostics": "1.0.0-*", "Microsoft.AspNetCore.Mvc": "1.0.0-*", "Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.0-*", @@ -26,5 +23,9 @@ "NETStandard.Library": "1.5.0-*" } } - } + }, + "content": [ + "Views", + "web.config" + ] } \ No newline at end of file diff --git a/samples/MvcSubAreaSample.Web/web.config b/samples/MvcSubAreaSample.Web/web.config new file mode 100644 index 0000000000..dee121d0f5 --- /dev/null +++ b/samples/MvcSubAreaSample.Web/web.config @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/samples/MvcSubAreaSample.Web/wwwroot/web.config b/samples/MvcSubAreaSample.Web/wwwroot/web.config deleted file mode 100644 index 9a0d90abf8..0000000000 --- a/samples/MvcSubAreaSample.Web/wwwroot/web.config +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/samples/TagHelperSample.Web/Startup.cs b/samples/TagHelperSample.Web/Startup.cs index d2879b9b6a..4d22db1e96 100644 --- a/samples/TagHelperSample.Web/Startup.cs +++ b/samples/TagHelperSample.Web/Startup.cs @@ -38,7 +38,7 @@ namespace TagHelperSample.Web { var host = new WebHostBuilder() .UseDefaultHostingConfiguration(args) - .UseIISPlatformHandlerUrl() + .UseIISIntegration() .UseKestrel() .UseStartup() .Build(); diff --git a/samples/TagHelperSample.Web/project.json b/samples/TagHelperSample.Web/project.json index 227ed18516..3c8f32b4a2 100644 --- a/samples/TagHelperSample.Web/project.json +++ b/samples/TagHelperSample.Web/project.json @@ -4,11 +4,8 @@ "warningsAsErrors": true, "preserveCompilationContext": true }, - "commands": { - "web": "TagHelperSample.Web" - }, "dependencies": { - "Microsoft.AspNetCore.IISPlatformHandler": "1.0.0-*", + "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", "Microsoft.Extensions.Logging.Console": "1.0.0-*", "Microsoft.AspNetCore.Diagnostics": "1.0.0-*", @@ -17,9 +14,6 @@ "Microsoft.AspNetCore.StaticFiles": "1.0.0-*", "Microsoft.NETCore.Platforms": "1.0.1-*" }, - "tools": { - "dotnet-razor-tooling": "1.0.0-*" - }, "frameworks": { "net451": {}, "netstandardapp1.5": { @@ -32,13 +26,9 @@ } } }, - "exclude": [ + "content": [ + "Views", "wwwroot", - "node_modules", - "bower_components" - ], - "publishExclude": [ - "**.user", - "**.vspscc" + "web.config" ] } \ No newline at end of file diff --git a/samples/TagHelperSample.Web/web.config b/samples/TagHelperSample.Web/web.config new file mode 100644 index 0000000000..22dfb2ddc6 --- /dev/null +++ b/samples/TagHelperSample.Web/web.config @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/samples/TagHelperSample.Web/wwwroot/web.config b/samples/TagHelperSample.Web/wwwroot/web.config deleted file mode 100644 index 9a0d90abf8..0000000000 --- a/samples/TagHelperSample.Web/wwwroot/web.config +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/samples/UrlHelperSample.Web/Startup.cs b/samples/UrlHelperSample.Web/Startup.cs index 16b3f1f350..c96c72a9b3 100644 --- a/samples/UrlHelperSample.Web/Startup.cs +++ b/samples/UrlHelperSample.Web/Startup.cs @@ -41,6 +41,7 @@ namespace UrlHelperSample.Web .UseDefaultHostingConfiguration(args) .UseStartup() .UseKestrel() + .UseIISIntegration() .Build(); host.Run(); diff --git a/samples/UrlHelperSample.Web/project.json b/samples/UrlHelperSample.Web/project.json index ae1d275168..85a5dac108 100644 --- a/samples/UrlHelperSample.Web/project.json +++ b/samples/UrlHelperSample.Web/project.json @@ -3,11 +3,9 @@ "emitEntryPoint": true, "preserveCompilationContext": true }, - "commands": { - "web": "UrlHelperSample.Web" - }, "dependencies": { "Microsoft.AspNetCore.Mvc": "1.0.0-*", + "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", "Microsoft.NETCore.Platforms": "1.0.1-*" }, @@ -22,5 +20,9 @@ "NETStandard.Library": "1.5.0-*" } } - } + }, + "content": [ + "Views", + "web.config" + ] } \ No newline at end of file diff --git a/samples/UrlHelperSample.Web/web.config b/samples/UrlHelperSample.Web/web.config new file mode 100644 index 0000000000..7e7e8f097a --- /dev/null +++ b/samples/UrlHelperSample.Web/web.config @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file