Tag: msbuild

如何两次调用rake目标

我通过修改.csproj文件以包含额外的编译符号,从我的.sln生成两组不同的DLL文件。 我正在使用rake构建解决方案,并具有以下构建任务: #========================================================== desc “Builds the DPSF.sln in Release mode.” msbuild :Build do |msb| puts ‘Building the DPSF solution…’ msb.properties :configuration => :Release msb.targets [:Clean, :Rebuild] msb.solution = DPSF_SOLUTION_FILE_PATH msb.parameters “/nologo”, “/maxcpucount”, “/fileLogger”, “/noconsolelogger” msb.verbosity = “quiet” # Use “diagnostic” instead of “quiet” for troubleshooting build problems. # Delete the build log file if the […]