Search Results

1
vote

Any way to do Visual Studio “project only” build from command line?

Depending on the structure of your build system, this may be what you're looking for: msbuild /p:BuildProjectReferences=false project.proj …
2
votes

Apache Ant command line arguments without double quotes - is it possible?

Have you tried <arg line="..." />? …