Error deploying ClickOnce application – Reference in the manifest does not match the identity of the downloaded assembly

There was an issue with Visual Studio 2008 which is solved by not embedding the default manifest – one of the comments on that article suggests the problem still exists in Visual Studio 2010. In project properties -> Application tab -> Resources -> checkbox Icon and manifest, the setting “Embed manifest with default settings” caused … Read more

Best way to deploy Visual Studio application that can run without installing

It is possible and is deceptively easy: “Publish” the application (to, say, some folder on drive C), either from menu Build or from the project’s properties → Publish. This will create an installer for a ClickOnce application. But instead of using the produced installer, find the produced files (the EXE file and the .config, .manifest, … Read more