I have a C# console app that has several different projects in it and is deployed via ClickOnce. I had it on another computer and everything was running great. However, I switched to a new computer and now I cannot get the application to run once it is Deployed. Whenever I run the program it says:
Cannot Start Application Application validation did not succeed. Unable to continue.
When I click the Details button I get the following error:
Strong name signature not valid for this assembly Microsoft.mshtml.dll
I searched online and everything that I can find says that this problem occurs when you reference either a delay signed or a partially signed copy of the DLL. Most solutions recommend using the dll located in C:\Program Files (x86)\Microsoft.NET\Primary Interop Assemblies\Microsoft.mshtml.dll
I went to that directoy and ran sn -v Microsoft.mshtml.dll and the results I got were:
Microsoft (R) .NET Framework Strong Name Utility Version 3.5.30729.1
Copyright (c) Microsoft Corporation. All rights reserved.
Assembly 'Microsoft.mshtml.dll' is valid
So this tells me that copy of the dll is strong signed and the one that I should use.
Two different projects in my application need to reference Microsoft.mshtml. On those two projects I added a reference and browsed to the C:\Program Files (x86)\Microsoft.NET\Primary Interop Assemblies\ folder to reference the Microsoft.mshtmlfile.
On both references I chose Copy Local = true and also Specific Version = true.
However, when I deploy the application via ClickOnce and try to install it, I still get the same errors. Does anyone have any ideas or solutions on how I can solve this problem?