猿问

MSBuild:bin / release文件夹未创建

我正在使用下面的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"/>



呼啦一阵风
浏览 217回答 1
1回答

慕桂英4014372

您将多个属性传递给MSBuild任务:“配置=发布; DebugType =无; DebugSymbols = false; OutputPath = $(PPTCompiledOutputDirPath); ReferencePath = $(ReferencePath)”只需删除“ OutputPath = $(PPTCompiledOutputDirPath);”部分。从属性字符串中,您的dll将放置在每个项目配置的位置。如果您希望将构建输出放置在其他位置,只需将“ OutputPath =“属性值设置为适当的位置即可。
随时随地看视频慕课网APP
我要回答