我正在使用下面的MSBuild脚本编译一个解决方案,并且在obj / Release文件夹中创建了类库项目.dll,但是那里没有从属项目dll。并且Bin \ Release文件夹也没有被创建。<ItemGroup> <PPTProjectToBuild Include="C:\TestProject\sln\Test.sln" /></ItemGroup><MSBuild Projects="@(PPTProjectToBuild)" Properties="Configuration=Release;DebugType=None;DebugSymbols=false;OutputPath=$(PPTCompiledOutputDirPath);ReferencePath=$(ReferencePath)" ContinueOnError="ErrorAndStop"/>
1 回答
慕桂英4014372
TA贡献1871条经验 获得超13个赞
您将多个属性传递给MSBuild任务:“配置=发布; DebugType =无; DebugSymbols = false; OutputPath = $(PPTCompiledOutputDirPath); ReferencePath = $(ReferencePath)”
只需删除“ OutputPath = $(PPTCompiledOutputDirPath);”部分。从属性字符串中,您的dll将放置在每个项目配置的位置。
如果您希望将构建输出放置在其他位置,只需将“ OutputPath =“属性值设置为适当的位置即可。
- 1 回答
- 0 关注
- 216 浏览
添加回答
举报
0/150
提交
取消