Skip to content

Instantly share code, notes, and snippets.

@thinktainer
Created August 11, 2012 11:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thinktainer/3323835 to your computer and use it in GitHub Desktop.
Save thinktainer/3323835 to your computer and use it in GitHub Desktop.
Set IIS Express urls from csproj
<PropertyGroup>
<AppCmd>&quot;$(ProgramFiles)\IIS Express\appcmd.exe&quot; set site</AppCmd>
<BindingsParam>/bindings:&quot;http/*:port:host1,http/*:port:host2&quot;</BindingsParam>
<PropertyGroup>
<Target Name="SetIISUrls">
<Exec Command="$(AppCmd) $(BindingsParam)" />
</Target>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment