Why does ClickOnce publish, create multiple application version folders
Question Why when I publish my application to a new location using ClickOnce using Visual Studio does it recreate previous versions of the tool and not only the most recent version of the tool? <?xml version=”1.0″ encoding=”utf-8″?> <!– https://go.microsoft.com/fwlink/?LinkID=208121. –> <Project> <PropertyGroup> <ApplicationRevision>318</ApplicationRevision> <ApplicationVersion>1.3.3.318</ApplicationVersion> <BootstrapperEnabled>True</BootstrapperEnabled> <Configuration>Release</Configuration> <CreateWebPageOnPublish>False</CreateWebPageOnPublish> <GenerateManifests>true</GenerateManifests> <Install>True</Install> <InstallFrom>Unc</InstallFrom> <InstallUrl>[SOME PATH]</InstallUrl> <IsRevisionIncremented>False</IsRevisionIncremented> <IsWebBootstrapper>False</IsWebBootstrapper> <MapFileExtensions>True</MapFileExtensions> […]