Merge branch 'release' into dev

This commit is contained in:
BrennanConroy 2016-04-25 11:27:27 -07:00
commit e49911e28f
2 changed files with 9 additions and 2 deletions

View File

@ -47,13 +47,20 @@
} }
} }
}, },
"tools": {
"Microsoft.AspNetCore.Server.IISIntegration.Tools": {
"version": "1.0.0-*",
"imports": "portable-net45+wp80+win8+wpa81+dnxcore50"
}
},
"scripts": { "scripts": {
"prepublish": [ "prepublish": [
"npm install", "npm install",
"bower install", "bower install",
"gulp clean", "gulp clean",
"gulp min" "gulp min"
] ],
"postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%"
}, },
"content": [ "content": [
"appsettings.json", "appsettings.json",

View File

@ -4,6 +4,6 @@
<handlers> <handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" /> <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" />
</handlers> </handlers>
<aspNetCore processPath=".\IdentitySample.Mvc.exe" arguments="" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" /> <aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" />
</system.webServer> </system.webServer>
</configuration> </configuration>