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.
在我的 c# windows 应用程序中,我想从我的安装包中排除 MyApp.Exe.Config,因为我不希望它在我的应用程序升级安装期间被覆盖。
如果我在构建设置时删除 app.config,它会删除目标机器上现有的 app.config,如果包含,它会覆盖现有的。
我还尝试在项目输出组上使用 ExcludeFilter 属性,但是当我排除 *.config 时,它会删除以前安装的配置文件。
所以,有人请提出一些想法,这样我就不需要在新安装中重置我以前的设置。
谢谢