我正在使用命令行使用msbuild構建項目。它總是將輸出文件放到「bin/$ Configuration」(例如bin/Release),但我希望輸出只是「bin」(不帶$ Configuration)。我怎樣才能做到這一點?
現在我用下面的命令建立:
msbuild c:\projects\gameplay\b\gameplay.sln /t:Build /p:Configuration=Release /p:Platform=x64 /p:OutputPath=c:\projects\gameplay\bin
將OutputPath設置爲$(SolutionDir).. \ bin? – stijn