I have an application that I would like to deploy using ClickOnce. I've done this before so have had considerable experience with ClickOnce and Mage. I have an assembly called Launcher.exe and a number of dlls associated with it. I tried to create a ClickOnce application and deployment manifest using the mage UI and command line. Essentially, I'd like Launcher.exe to be the entry point. I finish creating both manifests and I try to launch. When I do, ClickOnce downloads the dlls but fails with the logfile message:
"Reference in manifest does not match the identity of the downloaded assembly Launcher.exe".
Strange, I thought. My assemblies are all signed with one snk.
I tried this a few more times to no avail.
I then thought that since the team recently upgraded to VS2008, maybe there was some issues, so I created a new exe project. This project included all of my dependencies, including Launcher.exe, and just executed Launcher.exe. I thought this would work for sure, but I got the exact same error:
"Reference in manifest does not match the identity of the downloaded assembly Launcher.exe".
What could be wrong with Launcher.exe so that this is occuring?