Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在生成一个 msi,需要将我的解决方案中的一些.txt文件与 MSI 一起添加到bin文件夹中。
例如,添加一个 read-me.txt 总是会生成一个新的 MSI。此文件不得在包中。
如果可以选择,我不想使用构建事件(DOS 命令)。
在您的wixproj中,尝试:
<Project ...> <Target Name="AfterBuild"> <Copy SourceFiles="SourceFile.txt" DestinationFiles="DestFileName.txt" /> </Target> </Project>