Skip to content
This repository was archived by the owner on Nov 22, 2018. It is now read-only.

Commit d19b874

Browse files
committed
Merge branch 'release' into dev
2 parents 8e6ae72 + 30a9138 commit d19b874

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

samples/StaticFileSample/project.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,14 @@
2626
"content": [
2727
"wwwroot",
2828
"web.config"
29-
]
29+
],
30+
"tools": {
31+
"Microsoft.AspNetCore.Server.IISIntegration.Tools": {
32+
"version": "1.0.0-*",
33+
"imports": "portable-net45+wp80+win8+wpa81+dnxcore50"
34+
}
35+
},
36+
"scripts": {
37+
"postpublish": "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%"
38+
}
3039
}

samples/StaticFileSample/web.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
<handlers>
55
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" />
66
</handlers>
7-
<aspNetCore processPath=".\StaticFileSample.exe" arguments="" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" />
7+
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" />
88
</system.webServer>
99
</configuration>

0 commit comments

Comments
 (0)