wix 构建前事件
提问
如何在构建wix项目前自动构建引用项目
回答
加入 BeforeBuild命令,不要用项目属性中的Build Events
<Target Name="BeforeBuild">
<Exec Command="dotnet publish ..\ChangeLog.CommunityToolkit\ChangeLog.CommunityToolkit.csproj -c Release -r win-x64 -p:PublishSingleFile=true -p:PublishTrimmed=true --self-contained true" />
</Target>