I am trying to start using VS 2012 instead of VS 2010, but after installing VS 2012 and .Net 4.5. I get code analysis errors in VS 2010. Error while reading module "xxx_Accessor": Failed to resolve type reference: [System, Version = 4.0.0.0, Culture = neutral, PublicKeyToken = b77a5c561934e089] System.Windows. Input.ICommand.
I assume that this is because .Net 4.5 has moved the location of the ICommand interface, but is there a solution for this so that the code analysis starts again? I tried to add ignorestrongassembly names to the project file of the test project and the test project, but this did not work.
source
share