Reputation: 229
I am currently working on a solution with multiple projects in it, and when I try to run the code analysis tool from VS12 I get the following error when trying to run it:
CA0058 Error Running Code Analysis CA0058 : The referenced assembly "Microsoft.Practices.Unity, Version=2.1.505.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" could not be found. This assembly is required for analysis and was referenced by: C:\MyProject\bin\Release\MyProject.exe, C:\MyProject\packages\Prism.UnityExtensions.4.1.0.0\lib\NET40\Microsoft.Practices.Prism.UnityExtensions.dll. [Errors and Warnings] (Global)
I also got two more erros:
CA0052: No targets were selected
and
CA0055 Error Running Code Analysis CA0055 : C:\MyProject\bin\Release\IntraEUA Management Software 2.0.exe The following error was encountered while reading module "Microsoft.Practices.Prism.UnityExtensions": Assembly reference cannot be resolved: Microsoft.Practices.Unity, Version=2.1.505.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35. [Errors and Warnings] (Global)
But the strange thing is, nowhere in my solution I use ersion 2.1.505.0 of UnityExtensions, I am using 4.1.0.0. And even stranger, in all other projects in this solution it works, using the exact same version of UnityExtensions, even the PublicKeyToken is identical in all the other projects.
I've tried to search the entire solution for the string "2.1.505.0" and found nothing., so where does VS get this Information?
Btw, I got UnityExtension using NuGet. And tried to delete and reinstall UnityExtensions, but with no effect. And I am using .NET 4.5.
Any idea to get rid of this, probably false error? Or at least a workaround to ignore it?
Upvotes: 3
Views: 3408
Reputation: 416
I've had this case recently as well. The problem was the following: My debug build configuration for project that raised the error targeted the any CPU
platform. Changing this to the value x86
like the other projects from the solution had solved the problem.
The settings can be found in Visual Studio:
* right-click the solution to open the context menu within the solution explorer
* select properties, the solution property pages dialog is loaded
* The settings that you are looking for are here: Configuration Properties
>> Configuration
Upvotes: 0
Reputation: 16796
The underlying issue is due to the combination of two facts:
Prism.UnityExtensions
version 4.1.0.0
references Unity
in version 2.1.505.0
, with a strong name, but you have a newer version, strongly signed with version 3.0.0.0
;Meaning that, this mess is not your fault, simply the result of attempting to use an "unexpected" combination of library versions, and of an oversight in FxCop's assembly resolution logic.
The main way to get past that issue is to set FxCop's AssemblyReferenceResolveMode
to StrongNameIgnoringVersion
. There are ways to achieve that, one on a per-machine setting, and the other on a per-project setting.
AssemblyReferenceResolveMode
to StrongNameIgnoringVersion
in either FxCopCmd.exe.config
(from VS12 invocation) or FxCop.exe.config
(command-line call to FxCop.exe
);.csproj
file, inside of a PropertyGroup
XML element:<PropertyGroup>
<CodeAnalysisAdditionalOptions>/assemblyCompareMode:StrongNameIgnoringVersion</CodeAnalysisAdditionalOptions>
</PropertyGroup>
I would recommend using the per-project setting for any project that you intend to share with other people.
Upvotes: 9
Reputation: 229
The only solution to get rid of this is indeed changing the AssemblyReferenceResolveMode of the FxCopCmd.exe.config from StrongName to StrongNameIgnoreVersion. I didn't came up with anything else, so I've got to live with that.
Upvotes: 1