Skip to content

Commit 023e969

Browse files
committed
[pack] Fix 'Program Files' path. Fixes #4866
1 parent 3ab6fff commit 023e969

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
33
<system.webServer>
4-
<aspNetCore processPath="D:\Program Files\dotnet\dotnet.exe" arguments=".\Microsoft.Azure.WebJobs.Script.WebHost.dll" stdoutLogEnabled="false" hostingModel="inprocess" startupTimeLimit="3600" xdt:Transform="Replace" />
4+
<aspNetCore processPath="%PROGRAMFILES%\dotnet\dotnet.exe" arguments=".\Microsoft.Azure.WebJobs.Script.WebHost.dll" stdoutLogEnabled="false" hostingModel="inprocess" startupTimeLimit="3600" xdt:Transform="Replace" />
55
</system.webServer>
66
</configuration>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
33
<system.webServer>
4-
<aspNetCore processPath="D:\Program Files (x86)\dotnet\dotnet.exe" arguments=".\Microsoft.Azure.WebJobs.Script.WebHost.dll" stdoutLogEnabled="false" hostingModel="inprocess" startupTimeLimit="3600" xdt:Transform="Replace" />
4+
<aspNetCore processPath="%PROGRAMFILES(X86)%\dotnet\dotnet.exe" arguments=".\Microsoft.Azure.WebJobs.Script.WebHost.dll" stdoutLogEnabled="false" hostingModel="inprocess" startupTimeLimit="3600" xdt:Transform="Replace" />
55
</system.webServer>
66
</configuration>

0 commit comments

Comments
 (0)