I have a project that uses Autofac, and WebAPI integration
We run FxCop on our solution, and when I open autofac, I get the following:
Could not find the following indirect link. This assembly is not required for analysis; however, without it, analysis of the results may not be complete. This assembly was referenced by Autofac.dll
System.Core, Version = 2.0.5.0, Culture = neutral, PublicKeyToken = 7cec85d7bea7798e, Retargetable = Yes
This results in the following error on our CI server:
FxCop return code (516): PROJECT_LOAD_ERROR ASSEMBLY_REFERENCES_ERROR
Is there any way to tell FxCop to ignore this?
source
share