单击一次更新而不覆盖配置
我想使用 Clickonce 部署许多客户端(WPF),当我更新客户端时我不会覆盖配置文件。有可能吗?
不包括更新文件?或者进行差异更新? 事实上,我不想破坏用 ClickOnce 更新的连接字符串。
I want deploy many client (WPF) with Clickonce, i would not overwriting configuration file when i update client. It is possible ?
not include the file for update ? or make a differential update ?
In fact I do not want to crush the connectionString in the updated with ClickOnce.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Settings.settings 文件(转到项目属性 -> 设置)而不是 App.config。
对于 ClickOnce Settings.settings 将存储在“%InstallRoot%\Documents and Settings\username\Local Settings”中,并且不会被每次新更新覆盖。
有关更多信息: http://msdn.microsoft.com/en-us/library /8eyb2ct1.aspx
Use Settings.settings file (go to project properties -> settings) instead of App.config.
For ClickOnce Settings.settings will be stored in "%InstallRoot%\Documents and Settings\username\Local Settings" and won't be overwritten with every new update.
More about that: http://msdn.microsoft.com/en-us/library/8eyb2ct1.aspx