Merge branch 'release' into dev

This commit is contained in:
John Luo 2016-04-13 16:45:52 -07:00
commit 67e18c70cc
73 changed files with 277 additions and 119 deletions

View File

@ -47,6 +47,7 @@ namespace ApiExplorerWebSite
var host = new WebHostBuilder()
.UseDefaultHostingConfiguration(args)
.UseKestrel()
.UseIISIntegration()
.UseStartup<Startup>()
.Build();

View File

@ -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"
]
}

View File

@ -0,0 +1,9 @@
<?xml version="1.0"?>
<configuration>
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/>
</handlers>
<aspNetCore processPath=".\ApiExplorerWebSite.exe" arguments="" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" />
</system.webServer>
</configuration>

View File

@ -1 +0,0 @@
HelloWorld

View File

@ -38,6 +38,7 @@ namespace ApplicationModelWebSite
.UseDefaultHostingConfiguration(args)
.UseStartup<Startup>()
.UseKestrel()
.UseIISIntegration()
.Build();
host.Run();

View File

@ -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"
]
}

View File

@ -0,0 +1,9 @@
<?xml version="1.0"?>
<configuration>
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/>
</handlers>
<aspNetCore processPath=".\ApplicationModelWebSite.exe" arguments="" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" />
</system.webServer>
</configuration>

View File

@ -59,6 +59,7 @@ namespace BasicWebSite
.UseDefaultHostingConfiguration(args)
.UseStartup<Startup>()
.UseKestrel()
.UseIISIntegration()
.Build();
host.Run();

View File

@ -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"
]
}

View File

@ -0,0 +1,9 @@
<?xml version="1.0"?>
<configuration>
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/>
</handlers>
<aspNetCore processPath=".\BasicWebSite.exe" arguments="" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" />
</system.webServer>
</configuration>

View File

@ -1,9 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<handlers>
<add name="httpPlatformHandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified" />
</handlers>
<httpPlatform processPath="%DNX_PATH%" arguments="%DNX_ARGS%" forwardWindowsAuthToken="false" startupTimeLimit="3600" />
</system.webServer>
</configuration>

View File

@ -65,6 +65,7 @@ namespace ControllersFromServicesWebSite
.UseDefaultHostingConfiguration(args)
.UseStartup<Startup>()
.UseKestrel()
.UseIISIntegration()
.Build();
host.Run();

View File

@ -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"
]
}

View File

@ -0,0 +1,9 @@
<?xml version="1.0"?>
<configuration>
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/>
</handlers>
<aspNetCore processPath=".\ControllersFromServicesWebSite.exe" arguments="" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" />
</system.webServer>
</configuration>

View File

@ -84,6 +84,7 @@ namespace CorsWebSite
.UseDefaultHostingConfiguration(args)
.UseStartup<Startup>()
.UseKestrel()
.UseIISIntegration()
.Build();
host.Run();

View File

@ -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"
]
}

View File

@ -0,0 +1,9 @@
<?xml version="1.0"?>
<configuration>
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/>
</handlers>
<aspNetCore processPath=".\CorsWebSite.exe" arguments="" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" />
</system.webServer>
</configuration>

View File

@ -1 +0,0 @@
HelloWorld

View File

@ -29,6 +29,7 @@ namespace ErrorPageMiddlewareWebSite
.UseDefaultHostingConfiguration(args)
.UseStartup<Startup>()
.UseKestrel()
.UseIISIntegration()
.Build();
host.Run();

View File

@ -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"
]
}

View File

@ -0,0 +1,9 @@
<?xml version="1.0"?>
<configuration>
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/>
</handlers>
<aspNetCore processPath=".\ErrorPageMiddlewareWebSite.exe" arguments="" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" />
</system.webServer>
</configuration>

View File

@ -31,6 +31,7 @@ namespace FilesWebSite
.UseDefaultHostingConfiguration(args)
.UseStartup<Startup>()
.UseKestrel()
.UseIISIntegration()
.Build();
host.Run();

View File

@ -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"
]
}

View File

@ -0,0 +1,9 @@
<?xml version="1.0"?>
<configuration>
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/>
</handlers>
<aspNetCore processPath=".\FilesWebSite.exe" arguments="" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" />
</system.webServer>
</configuration>

View File

@ -1 +0,0 @@
HelloWorld

View File

@ -59,7 +59,6 @@ namespace FiltersWebSite
{
app.UseCultureReplacer();
app.UseMiddleware<AuthorizeBasicMiddleware>("Interactive");
app.UseMiddleware<AuthorizeBasicMiddleware>("Api");
app.UseMiddleware<ErrorReporterMiddleware>();
@ -73,6 +72,7 @@ namespace FiltersWebSite
.UseDefaultHostingConfiguration(args)
.UseStartup<Startup>()
.UseKestrel()
.UseIISIntegration()
.Build();
host.Run();

View File

@ -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"
]
}

View File

@ -0,0 +1,9 @@
<?xml version="1.0"?>
<configuration>
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/>
</handlers>
<aspNetCore processPath=".\FiltersWebSite.exe" arguments="" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" />
</system.webServer>
</configuration>

View File

@ -1 +0,0 @@
HelloWorld

View File

@ -40,6 +40,7 @@ namespace FormatterWebSite
.UseDefaultHostingConfiguration(args)
.UseStartup<Startup>()
.UseKestrel()
.UseIISIntegration()
.Build();
host.Run();

View File

@ -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"
]
}

View File

@ -0,0 +1,9 @@
<?xml version="1.0"?>
<configuration>
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/>
</handlers>
<aspNetCore processPath=".\FormatterWebSite.exe" arguments="" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" />
</system.webServer>
</configuration>

View File

@ -1 +0,0 @@
HelloWorld

View File

@ -48,6 +48,7 @@ namespace HtmlGenerationWebSite
.UseDefaultHostingConfiguration(args)
.UseStartup<Startup>()
.UseKestrel()
.UseIISIntegration()
.Build();
host.Run();

View File

@ -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"
]
}

View File

@ -0,0 +1,9 @@
<?xml version="1.0"?>
<configuration>
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/>
</handlers>
<aspNetCore processPath=".\HtmlGenerationWebSite.exe" arguments="" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" />
</system.webServer>
</configuration>

View File

@ -1 +0,0 @@
HelloWorld

View File

@ -50,6 +50,7 @@ namespace RazorPageExecutionInstrumentationWebSite
.UseDefaultHostingConfiguration(args)
.UseStartup<Startup>()
.UseKestrel()
.UseIISIntegration()
.Build();
host.Run();

View File

@ -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"
]
}

View File

@ -0,0 +1,9 @@
<?xml version="1.0"?>
<configuration>
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/>
</handlers>
<aspNetCore processPath=".\RazorPageExecutionInstrumentationWebSite.exe" arguments="" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" />
</system.webServer>
</configuration>

View File

@ -67,6 +67,7 @@ namespace RazorWebSite
.UseDefaultHostingConfiguration(args)
.UseStartup<Startup>()
.UseKestrel()
.UseIISIntegration()
.Build();
host.Run();

View File

@ -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"
]
}

View File

@ -0,0 +1,9 @@
<?xml version="1.0"?>
<configuration>
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/>
</handlers>
<aspNetCore processPath=".\RazorWebSite.exe" arguments="" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" />
</system.webServer>
</configuration>

View File

@ -1 +0,0 @@
HelloWorld

View File

@ -47,6 +47,7 @@ namespace RoutingWebSite
.UseDefaultHostingConfiguration(args)
.UseStartup<Startup>()
.UseKestrel()
.UseIISIntegration()
.Build();
host.Run();

View File

@ -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"
]
}

View File

@ -0,0 +1,9 @@
<?xml version="1.0"?>
<configuration>
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/>
</handlers>
<aspNetCore processPath=".\RoutingWebSite.exe" arguments="" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" />
</system.webServer>
</configuration>

View File

@ -1 +0,0 @@
HelloWorld

View File

@ -35,6 +35,7 @@ namespace SimpleWebSite
.UseDefaultHostingConfiguration(args)
.UseStartup<Startup>()
.UseKestrel()
.UseIISIntegration()
.Build();
host.Run();

View File

@ -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"
]
}

View File

@ -0,0 +1,9 @@
<?xml version="1.0"?>
<configuration>
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/>
</handlers>
<aspNetCore processPath=".\SimpleWebSite.exe" arguments="" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" />
</system.webServer>
</configuration>

View File

@ -1,9 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<handlers>
<add name="httpPlatformHandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified"/>
</handlers>
<httpPlatform processPath="%DNX_PATH%" arguments="%DNX_ARGS%" stdoutLogEnabled="false" startupTimeLimit="3600"/>
</system.webServer>
</configuration>

View File

@ -28,6 +28,7 @@ namespace TagHelpersWebSite
.UseDefaultHostingConfiguration(args)
.UseStartup<Startup>()
.UseKestrel()
.UseIISIntegration()
.Build();
host.Run();

View File

@ -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"
]
}

View File

@ -0,0 +1,9 @@
<?xml version="1.0"?>
<configuration>
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/>
</handlers>
<aspNetCore processPath=".\TagHelpersWebSite.exe" arguments="" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" />
</system.webServer>
</configuration>

View File

@ -1 +0,0 @@
HelloWorld

View File

@ -1,9 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<handlers>
<add name="httpPlatformHandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified" />
</handlers>
<httpPlatform processPath="%DNX_PATH%" arguments="%DNX_ARGS%" forwardWindowsAuthToken="false" startupTimeLimit="3600" />
</system.webServer>
</configuration>

View File

@ -32,6 +32,7 @@ namespace VersioningWebSite
.UseDefaultHostingConfiguration(args)
.UseStartup<Startup>()
.UseKestrel()
.UseIISIntegration()
.Build();
host.Run();

View File

@ -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"
]
}

View File

@ -0,0 +1,9 @@
<?xml version="1.0"?>
<configuration>
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/>
</handlers>
<aspNetCore processPath=".\VersioningWebSite.exe" arguments="" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" />
</system.webServer>
</configuration>

View File

@ -1 +0,0 @@
HelloWorld

View File

@ -39,6 +39,7 @@ namespace WebApiCompatShimWebSite
.UseDefaultHostingConfiguration(args)
.UseStartup<Startup>()
.UseKestrel()
.UseIISIntegration()
.Build();
host.Run();

View File

@ -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"
]
}

View File

@ -0,0 +1,9 @@
<?xml version="1.0"?>
<configuration>
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/>
</handlers>
<aspNetCore processPath=".\WebApiCompatShimWebSite.exe" arguments="" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" />
</system.webServer>
</configuration>

View File

@ -83,6 +83,7 @@ namespace XmlFormattersWebSite
.UseDefaultHostingConfiguration(args)
.UseStartup<Startup>()
.UseKestrel()
.UseIISIntegration()
.Build();
host.Run();

View File

@ -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"
]
}

View File

@ -0,0 +1,9 @@
<?xml version="1.0"?>
<configuration>
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/>
</handlers>
<aspNetCore processPath=".\XmlFormattersWebSite.exe" arguments="" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" />
</system.webServer>
</configuration>

View File

@ -1 +0,0 @@
HelloWorld