Skip to content

Instantly share code, notes, and snippets.

@marcel-valdez
Created June 28, 2012 00:30
Show Gist options
  • Save marcel-valdez/3007864 to your computer and use it in GitHub Desktop.
Save marcel-valdez/3007864 to your computer and use it in GitHub Desktop.
VS2010 Target to deploy a website using the project file
<Target Name="Deploy">
<MSBuild Projects="$(SolutionFile)"
Properties="Configuration=$(Configuration);DeployOnBuild=true;DeployTarget=Package"
ContinueOnError="false" />
<Exec Command="&quot;$(ProjectPath)\obj\$(Configuration)\Package\$(ProjectName).deploy.cmd&quot; /y /m:$(DeployServer) -enableRule:DoNotDeleteRule"
ContinueOnError="false" />
</Target>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment