Quick fix: Yes, MvcSandbox is a web project

- add a `web.config` file so VS recognizes this
This commit is contained in:
Doug Bunting 2016-04-30 23:11:01 -07:00
parent f8ca631be2
commit aa1afc0a8e
1 changed files with 9 additions and 0 deletions

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="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" />
</system.webServer>
</configuration>