我正在使用Publish
Visual Studio 的功能为我的 VSTO 加载项创建 ClickOnce 设置文件。
我知道我可以通过将它们的 Build Action 设置为Content
. 假设我有一个名为 的文件readme.txt
,其 Build Action 设置为Content
. 这就是发生的事情:
publish
+-- setup.exe
+-- MyAddIn.vsto
+-- ApplicationFiles
+-- ...lots of files..
+-- readme.txt.deploy <--
由于该文件包含我希望用户在安装应用程序之前阅读的信息,这就是我想要发生的事情:
publish
+-- setup.exe
+-- MyAddIn.vsto
+-- readme.txt <--
+-- ApplicationFiles
+-- ...lots of files..
有没有简单的方法可以做到这一点?