Skip to content

Commit f7f8d79

Browse files
authored
Merge pull request #372 from Particular/fixing_version_for_iis_install
Fix the issue with version when extracting to host in IIS
2 parents 1e858b1 + 2da62ad commit f7f8d79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ServicePulse.Host/Hosting/HostArguments.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public HostArguments(string[] args)
5757
@"Extract files to be installed in a Web Server."
5858
, s =>
5959
{
60-
commands = new List<Type> { typeof(ExtractAndUpdateConstantsCommand), typeof(ExtractCommand) };
60+
commands = new List<Type> { typeof(ExtractCommand), typeof(ExtractAndUpdateConstantsCommand) };
6161
executionMode = ExecutionMode.Extract;
6262
}
6363
},

0 commit comments

Comments
 (0)