Skip to content

Instantly share code, notes, and snippets.

@robertlj
Created August 31, 2012 13:17
Show Gist options
  • Save robertlj/3552549 to your computer and use it in GitHub Desktop.
Save robertlj/3552549 to your computer and use it in GitHub Desktop.
CLojureCLR command line build Win7 (4.0 Profile)
MSBuild.exe build.proj /target:Test /p:Configuration="Debug 4.0" /p:Platform="Any CPU"
MSBuild.exe build.proj /target:Build /p:Configuration="Debug 4.0" /p:Platform="Any CPU"
MSBuild.exe build.proj /target:Dist /p:Configuration="Debug 4.0" /p:Platform="Any CPU"
MSBuild.exe build.proj /target:Build /p:Configuration="Release 4.0" /p:Platform="Any CPU"
MSBuild.exe build.proj /target:Dist /p:Configuration="Release 4.0" /p:Platform="Any CPU"
== Older .Net Versions - For backward incompatibility ==
MSBuild.exe build.proj /target:Test /p:Configuration="Debug 3.5" /p:Platform="Any CPU"
MSBuild.exe build.proj /target:Build /p:Configuration="Debug 3.5" /p:Platform="Any CPU"
MSBuild.exe build.proj /target:Dist /p:Configuration="Debug 3.5" /p:Platform="Any CPU"
MSBuild.exe build.proj /target:Build /p:Configuration="Release 3.5" /p:Platform="Any CPU"
MSBuild.exe build.proj /target:Dist /p:Configuration="Release 3.5" /p:Platform="Any CPU"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment