【发布时间】:2010-08-24 08:48:13
【问题描述】:
我使用 ClickOnce 技术部署了小型 wpf 应用程序。问题是,当我构建新版本时,客户端会下载所有文件,尽管其中许多文件没有更改。我使用以下配置来制作部署清单
<GenerateDeploymentManifest AssemblyName="MyApp.exe.application"
AssemblyVersion="1.0.0.0"
DeploymentUrl="\\...\MyApp.exe.application"
Product="Egs.Client"
TargetCulture="ru-RU"
Description="My application"
Publisher="MyCompany"
Install="true"
UpdateInterval="1"
UpdateUnit="Weeks"
UpdateEnabled="true"
UpdateMode="Background"
OutputManifest="$(ApplicationFile)"
MapFileExtensions="true"
EntryPoint="@(DeploymentManifestEntryPoint)" />
即使我只是将“1.0.0.0”更改为“1.0.0.1”,客户端也会再次下载整个应用程序。 我是遗漏了什么还是它的标准行为?
【问题讨论】:
标签: deployment clickonce