Created
November 17, 2010 19:01
-
-
Save jnericks/703837 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Publish to Daily Build Location --> | |
| <Target Name="PublishDailyBuild"> | |
| <MSBuild Projects="MyProject.csproj" | |
| Targets="Clean;Publish" | |
| Properties="Configuration=Release; | |
| Platform=x86; | |
| PublishDir=$(DailyBuildDir); | |
| PublishUrl=$(DailyBuildDir); | |
| InstallUrl=$(DailyBuildDir); | |
| ApplicationVersion=$(Version); | |
| MinimumRequiredVersion=$(Version); | |
| UpdateMode=Foreground; | |
| UpdateRequired=True;"> | |
| <Output ItemName="OutputFiles" TaskParameter="TargetOutputs"/> | |
| </MSBuild> | |
| </Target> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment