I have a small wpf application deployed using ClickOnce technology. The problem is that when creating new versions, clients download all the files, although many of these files have not been changed. I use the following configuration to make the deployment manifest
<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)" />
Even if I just change “1.0.0.0” to “1.0.0.1", clients will download the entire application again. Am I missing something or is this standard behavior?
source
share