Skip to content

Instantly share code, notes, and snippets.

@rsds143
Created January 5, 2011 01:36
Show Gist options
  • Save rsds143/765789 to your computer and use it in GitHub Desktop.
Save rsds143/765789 to your computer and use it in GitHub Desktop.
cause I can never find it when I need it
<?xml version="1.0"?>
<project name="foobar" default="build" basedir=".">
<description>foobar</description>
<target name="build" description="Compile Web Site.">
<exec basedir="."
program="msbuild.exe"
commandline=" MySite.csproj /nologo
/t:Rebuild
/t:ResolveReferences;_CopyWebApplication
/p:OutDir=..\..\deploymentdir\bin\
/p:WebProjectOutputDir=..\..\deploymentdir\"
workingdir="."
failonerror="true" />
</target>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment