Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FxCop beta - Analyzer cannot be created. Needs Microsoft.CodeAnalysis 2.6.0 #23083

Closed
jhealy opened this issue Nov 8, 2017 · 15 comments
Closed

Comments

@jhealy
Copy link

jhealy commented Nov 8, 2017

Version Used:
fxcop 2.6.0-beta1-62231-02

Steps to Reproduce:

  1. Build .net core 2.0 console app.
  2. As instructed at https://dotnet.myget.org/feed/roslyn-analyzers/package/nuget/Microsoft.CodeAnalysis.FxCopAnalyzers/2.6.0-beta1-62231-02 install package into project using npm.
  3. Install-Package Microsoft.CodeAnalysis.FxCopAnalyzers -Version 2.6.0-beta1-62231-02 -Source https://dotnet.myget.org/F/roslyn-analyzers/api/v3/index.json
  4. On building I get a request for C:\Users\jhealy.nuget\packages\microsoft.codequality.analyzers\2.6.0-beta1-62231-02 in a ton of places in the error window
  5. Head over to https://dotnet.myget.org/feed/roslyn/package/nuget/Microsoft.CodeAnalysis
  6. Versions there hop as noted below
    2.6.0-beta1-62205-01 6.42 KB Thu, 05 Oct 2017 03:35:16 GMT 1
    2.6.0-beta1-62126-01 6.43 KB Wed, 27 Sep 2017 00:13:07 GMT 1
  7. WHERE DO IT GET THE VERSION I NEED OF Microsoft.CodeAnalysis

Expected Behavior:
Build works without errors about loading assemblies.

Actual Behavior:
Get LOTS of these, one for each analyzer.
Warning CS8032 An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.MarkAttributesWithAttributeUsageAnalyzer cannot be created from C:\Users\jhealy.nuget\packages\microsoft.codequality.analyzers\2.6.0-beta1-62231-02\analyzers\dotnet\cs\Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.. RoslynProofsCore C:\dev\cs\analyzers.git\RoslynProofsCoreSLN\RoslynProofsCore\CSC 1 Active

capture

@jhealy
Copy link
Author

jhealy commented Nov 8, 2017

Moving fxcop down to 2.3.0-beta2-62118-03 allows it to work. Would still like to know where to dig out the requires Microsoft.CodeAnaylsis for the later versions. Thanks...

@333fred
Copy link
Member

333fred commented Nov 9, 2017

@jhealy the version on myget has not been released, it's based on version 2.6.0-beta3-62227-02 of codeanalysis. I'd suggest sticking to the publicly-released version of the analyzers, available here. When VS 2017 update 5 is released (due before the end of the year), we will be updating all the analyzers built from https://github.com/dotnet/roslyn-analyzers, including the FxCopAnalyzers package.

@333fred 333fred closed this as completed Nov 9, 2017
@jhealy
Copy link
Author

jhealy commented Nov 9, 2017

My real angle on this is I'm hoping the newer ones pickup more dispose/memory leaks. "big ole customer" trying to take core system to prod and its wuffing out miserably. Found a few dispose/lock contention manually, but hoping new core analyzers did better job. Thanks for the advice btw. I'm a PFE - jhealy@youknowwhere.

@peabnuts123
Copy link

Awkwardly made it here, irrespective of reading jhealy's article on this very topic. It seems that as of a few days ago these analyzers all released a new version (mostly 2.6.0-beta2) that seem to depend on Microsoft.CodeAnalysis 2.6.0 (which was also released at the same time) but don't seem able to actually reference this assembly correctly for some reason? Perhaps they are depending on the wrong version or something? I am getting the same errors as the original post. Feeling a bit confused as to why it's stuffed. Using the versions recommended to @jhealy in this topic works for me.

@333fred
Copy link
Member

333fred commented Dec 11, 2017

@peabnuts123 technically, beta2 is depending on a prerelease version of Microsoft.CodeAnalysis, but there were no API changes between the version it depended on and the official release version. Could you share the exact versions you're using, and what environment you're seeing these issues in? beta2 should run with the released version of 2.6.0 without any issues.

@peabnuts123
Copy link

I am still trying to wrap my head around how this stuff works so I'm assuming there is something obviously wrong with my setup.

I am on OSX using dotnet core with a netcoreapp2.0 project. My csproj is as follows:

image

I am attempting to get some Code Analysis happening as this project is ~mostly being worked on by non-C# people. I am using VSCode for dev and so all of this stuff is happening on the CLI, not through Visual Studio.

After adding the packages above and running the app I get the following:

CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.Analyzers.MetaAnalyzers.DiagnosticAnalyzerAttributeAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codeanalysis.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.Analyzers.FixAnalyzers.FixerWithFixAllAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codeanalysis.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.Analyzers.InternalImplementationOnlyAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codeanalysis.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.Analyzers.MetaAnalyzers.DiagnosticDescriptorCreationAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codeanalysis.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.Analyzers.CSharpImmutableObjectMethodAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codeanalysis.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.Analyzers.MetaAnalyzers.CSharpRegisterActionAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codeanalysis.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.Analyzers.MetaAnalyzers.CSharpDiagnosticAnalyzerFieldsAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codeanalysis.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.Analyzers.MetaAnalyzers.CSharpReportDiagnosticAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codeanalysis.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.Maintainability.AvoidUninstantiatedInternalClassesAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.DoNotRaiseExceptionsInUnexpectedLocationsAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.UsePropertiesWhereAppropriateAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.ExceptionsShouldBePublicAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.Maintainability.AvoidUnusedPrivateFieldsAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.NestedTypesShouldNotBeVisibleAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.AvoidEmptyInterfacesAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.DoNotDecreaseInheritedMemberVisibilityAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.IdentifiersShouldNotMatchKeywordsAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.ProvideObsoleteAttributeMessageAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.IdentifiersShouldNotContainUnderscoresAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.DoNotHideBaseClassMethodsAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.PropertyNamesShouldNotMatchGetMethodsAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.PropertiesShouldNotReturnArraysAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.IdentifiersShouldHaveCorrectPrefixAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.MarkAttributesWithAttributeUsageAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.MarkAssembliesWithComVisibleAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.VersionCheckAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.InterfaceMethodsShouldBeCallableByChildTypesAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.AbstractTypesShouldNotHaveConstructorsAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.OperatorsShouldHaveSymmetricalOverloadsAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.OverrideMethodsOnComparableTypesAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.QualityGuidelines.DoNotCallOverridableMethodsInConstructorsAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.IdentifiersShouldDifferByMoreThanCaseAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.IdentifiersShouldNotHaveIncorrectSuffixAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.OperatorOverloadsHaveNamedAlternatesAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.DoNotDeclareVisibleInstanceFieldsAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.CollectionPropertiesShouldBeReadOnlyAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.StaticHolderTypesAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.MovePInvokesToNativeMethodsClassAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.Maintainability.ReviewUnusedParametersAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.OverrideEqualsAndOperatorEqualsOnValueTypesAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.EnumStorageShouldBeInt32Analyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.TypeNamesShouldNotMatchNamespacesAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.QualityGuidelines.DoNotRaiseExceptionsInExceptionClausesAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.Maintainability.DoNotIgnoreMethodResultsAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.EnumsShouldHaveZeroValueAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.Maintainability.UseNameofInPlaceOfStringAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.EnumsShouldHavePluralNamesAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.ParameterNamesShouldMatchBaseDeclarationAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.UriPropertiesShouldNotBeStringsAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.IdentifiersShouldNotContainTypeNames cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.NonConstantFieldsShouldNotBeVisibleAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.OverloadOperatorEqualsOnOverridingValueTypeEqualsAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.UriReturnValuesShouldNotBeStringsAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.MarkAssembliesWithAttributesDiagnosticAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.CollectionsShouldImplementGenericInterfaceAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.UseEventsWhereAppropriateAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.DeclareTypesInNamespacesAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.PropertiesShouldNotBeWriteOnlyAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.EquatableAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.IdentifiersShouldHaveCorrectSuffixAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.QualityGuidelines.SealMethodsThatSatisfyPrivateInterfacesAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.QualityGuidelines.UseLiteralsWhereAppropriateAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.UriParametersShouldNotBeStringsAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.UseIntegralOrStringArgumentForIndexersAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.DoNotDeclareStaticMembersOnGenericTypesAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.QualityGuidelines.MarkMembersAsStaticAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.QualityGuidelines.PreferJaggedArraysOverMultidimensionalAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.ImplementIDisposableCorrectlyAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.DoNotDirectlyAwaitATaskAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.EnumWithFlagsAttributeAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.Analyzers.ApiDesignGuidelines.CancellationTokenParametersMustComeLastAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.CSharp.Analyzers.Documentation.CSharpAvoidUsingCrefTagsWithAPrefixAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.CSharp.Analyzers.ApiDesignGuidelines.CSharpUseGenericEventHandlerInstancesAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.CSharp.Analyzers.ApiDesignGuidelines.CSharpDoNotPassAsyncLambdasAsVoidReturningDelegateTypesAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.CSharp.Analyzers.ApiDesignGuidelines.CSharpDefineAccessorsForAttributeArgumentsAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.CSharp.Analyzers.QualityGuidelines.CSharpDisposeObjectsBeforeLosingScopeAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.CSharp.Analyzers.QualityGuidelines.CSharpRemoveEmptyFinalizersAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.CSharp.Analyzers.ApiDesignGuidelines.CSharpAsyncMethodNamesShouldEndInAsyncAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.CSharp.Analyzers.ApiDesignGuidelines.CSharpUsePreferredTermsAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.CSharp.Analyzers.ApiDesignGuidelines.CSharpImplementStandardExceptionConstructorsAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.CSharp.Analyzers.ApiDesignGuidelines.CSharpDoNotMixBlockingAndAsyncAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.CSharp.Analyzers.Maintainability.CSharpVariableNamesShouldNotMatchFieldNamesAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.CSharp.Analyzers.QualityGuidelines.CSharpReviewVisibleEventHandlersAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.CSharp.Analyzers.ApiDesignGuidelines.CSharpPassSystemUriObjectsInsteadOfStringsAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.CSharp.Analyzers.ApiDesignGuidelines.CSharpPropagateCancellationTokensWhenPossibleAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.CSharp.Analyzers.ApiDesignGuidelines.CSharpTypesThatOwnDisposableFieldsShouldBeDisposableAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.CSharp.Analyzers.ApiDesignGuidelines.CSharpDoNotStoreAsyncLambdasAsVoidReturningDelegateTypesAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.CSharp.Analyzers.QualityGuidelines.CSharpRethrowToPreserveStackDetailsAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.CSharp.Analyzers.ApiDesignGuidelines.CSharpAvoidAsyncVoidAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeQuality.CSharp.Analyzers.ApiReview.CSharpAvoidCallingProblematicMethodsAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.NetCore.Analyzers.Runtime.DoNotLockOnObjectsWithWeakIdentityAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.netcore.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.NetCore.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.NetCore.Analyzers.Runtime.AvoidUnsealedAttributesAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.netcore.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.NetCore.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.NetCore.Analyzers.Runtime.TestForEmptyStringsUsingStringLengthAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.netcore.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.NetCore.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.NetCore.Analyzers.Runtime.DisposableTypesShouldDeclareFinalizerAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.netcore.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.NetCore.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.NetCore.Analyzers.Runtime.AttributeStringLiteralsShouldParseCorrectlyAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.netcore.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.NetCore.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.NetCore.Analyzers.Runtime.InstantiateArgumentExceptionsCorrectlyAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.netcore.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.NetCore.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.NetCore.Analyzers.InteropServices.PInvokeDiagnosticAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.netcore.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.NetCore.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.NetCore.Analyzers.Runtime.SpecifyCultureInfoAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.netcore.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.NetCore.Analyzers.dll : Could notload file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.NetCore.Analyzers.ImmutableCollections.DoNotCallToImmutableCollectionOnAnImmutableCollectionValueAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.netcore.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.NetCore.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.NetCore.Analyzers.VersionCheckAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.netcore.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.NetCore.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.NetCore.Analyzers.Runtime.CallGCSuppressFinalizeCorrectlyAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.netcore.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.NetCore.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.NetCore.Analyzers.Runtime.SpecifyStringComparisonAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.netcore.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.NetCore.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.NetCore.Analyzers.Runtime.SpecifyIFormatProviderAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.netcore.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.NetCore.Analyzers.dll : Couldnot load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.NetCore.Analyzers.Runtime.ProvideCorrectArgumentsToFormattingMethodsAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.netcore.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.NetCore.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.NetCore.Analyzers.Runtime.DoNotUseEnumerableMethodsOnIndexableCollectionsInsteadUseTheCollectionDirectlyAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.netcore.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.NetCore.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.NetCore.Analyzers.Runtime.TestForNaNCorrectlyAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.netcore.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.NetCore.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.NetCore.Analyzers.Tasks.DoNotCreateTasksWithoutPassingATaskSchedulerAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.netcore.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.NetCore.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.NetCore.Analyzers.Runtime.NormalizeStringsToUppercaseAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.netcore.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.NetCore.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.NetCore.CSharp.Analyzers.Runtime.CSharpInitializeStaticFieldsInlineAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.netcore.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.NetCore.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.NetCore.CSharp.Analyzers.Runtime.CSharpDisposeMethodsShouldCallBaseClassDisposeAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.netcore.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.NetCore.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.NetCore.CSharp.Analyzers.Runtime.CSharpDoNotUseTimersThatPreventPowerStateChangesAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.netcore.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.NetCore.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.NetCore.CSharp.Analyzers.Runtime.CSharpUseOrdinalStringComparisonAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.netcore.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.NetCore.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.NetCore.CSharp.Analyzers.Security.CSharpDoNotUseInsecureCryptographicAlgorithmsAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.netcore.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.NetCore.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.NetCore.CSharp.Analyzers.Runtime.CSharpDoNotRaiseReservedExceptionTypesAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.netcore.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.NetCore.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.NetCore.CSharp.Analyzers.Runtime.CSharpAvoidZeroLengthArrayAllocationsAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.netcore.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.NetCore.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.NetCore.CSharp.Analyzers.Resources.CSharpMarkAssembliesWithNeutralResourcesLanguageAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.netcore.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.NetCore.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.NetCore.CSharp.Analyzers.InteropServices.CSharpAlwaysConsumeTheValueReturnedByMethodsMarkedWithPreserveSigAttributeAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.netcore.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.NetCore.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.NetCore.CSharp.Analyzers.InteropServices.CSharpUseManagedEquivalentsOfWin32ApiAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.netcore.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.NetCore.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.NetCore.CSharp.Analyzers.InteropServices.CSharpMarkBooleanPInvokeArgumentsWithMarshalAsAnalyzer cannot be created from /Users/jeff/.nuget/packages/microsoft.netcore.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.NetCore.CSharp.Analyzers.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [/path/to/project.csproj]

Apologies for wall of text. As far as I can tell, all of the DLLs listed exist on disk (…/.nuget/packages/microsoft.codequality.analyzers/2.6.0-beta2/analyzers/dotnet/cs/Microsoft.CodeQuality.Analyzers.dll etc.) and EVERY warning says

Could not load file or assembly 'Microsoft.CodeAnalysis, Version=2.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'

Which to me says it can't find Microsoft.CodeAnalysis 2.6.0 despite the fact that I do have it installed, though it does not seem to have a dll under .nuget:

$ ls -l ~/.nuget/packages/microsoft.codeanalysis/2.6.0/
total 56
-rwxrw-rw-  1 jeff  staff  10365 28 Nov 23:07 ThirdPartyNotices.rtf
-rw-r--r--  1 jeff  staff   6549 11 Dec 15:28 microsoft.codeanalysis.2.6.0.nupkg
-rw-r--r--  1 jeff  staff     88 11 Dec 15:28 microsoft.codeanalysis.2.6.0.nupkg.sha512
-rwxrw-rw-  1 jeff  staff   1818 28 Nov 23:07 microsoft.codeanalysis.nuspec

If I downgrade the beta2 packages to 2.3.0-beta1 everything works good.
Semi-related question: could anybody advise me on the feasibility of VSCode displaying Code Analysis warnings in my actual editor (i.e. at the place which is actually being warned)? Have omnisharp-roslyn referenced but it's not really doing anything different. Hard to tell if it's because such a feature is not yet possible or if I've configured something poorly, would really appreciate some advice for this, at least to the possibility of it.

@333fred
Copy link
Member

333fred commented Dec 11, 2017

@peabnuts123 you'll also need the 2.6.0 version of Microsoft.Net.Compilers.

As to running the analyzers in VSCode/non-VS scenarios, that is an area we're actively investigating. But it does not yet exist.

@peabnuts123
Copy link

I went down the Microsoft.Net.Compilers route yesterday but it did not seem to be for dotnet core? I thought I had confirmed that when it started giving me the following error after installing it:

/Users/jeff/.nuget/packages/microsoft.net.compilers/2.6.0/tools/Microsoft.CSharp.Core.targets(84,5): error MSB6006: "csc.exe" exited with code 8. [/path/to/project.csproj]

The build failed. Please fix the build errors and run again.

@333fred
Copy link
Member

333fred commented Dec 11, 2017

Ah, right, you're on a Mac. @peabnuts123, what version of dotnet core are you running? Sounds like you could be running on a old version.

@peabnuts123
Copy link

peabnuts123 commented Dec 11, 2017

I am on 2.0.0 but I've downloaded and installed 2.0.3 to see if that's the issue, but I am still getting:

/Users/jeff/.nuget/packages/microsoft.net.compilers/2.6.0/tools/Microsoft.CSharp.Core.targets(84,5): error MSB6006: "csc.exe" exited with code 8. [/path/to/project.csproj]

The build failed. Please fix the build errors and run again.

@peabnuts123
Copy link

I do believe the package microsoft.net.compilers is for windows-only as per this comment but perhaps that was what you were actually trying to indicate with your last comment. Removing that package and then attempting to run the application normally with dotnet 2.0.3 still gives me the same errors as the wall of text I posted earlier.

@333fred
Copy link
Member

333fred commented Dec 11, 2017

You should upgrade to the latest release version, which is 2.1.2 as of writing this comment. And yes, that's what I meant by that comment: you are correct, Microsoft.Net.Compilers will only run on full .NET Framework.

@peabnuts123
Copy link

My goodness, it's all working! That was a bit confusing though, as the dotnet core repo seems to link to an old version? I just downloaded 2.0.3 from there thinking it was the latest release. It wasn't until you told me about 2.1.2 that a google search led me to the actual https://dot.net website. Thanks for your help @333fred

@333fred
Copy link
Member

333fred commented Dec 11, 2017

Yeah, they have an open issue for that here: dotnet/core#1147 (comment).

@Nikolay-Ch
Copy link

Nikolay-Ch commented Jun 25, 2018

Hi,
I'm use .NetCore 2.1.300, Visual Studio 2017 v15.3.3 and can't use analyzers... :(
In Visual Studio only one version is worked to me: Microsoft.NetFramework.Analyzers.2.3.0-beta1
If I install 2.6.0 or 2.6.1 - Visual Studio is full or warnings:

warning CS8032: An instance of analyzer cannot be created

Another problem is... when my code is built on a build-mashine by msbuild, I get error (for version 2.3.0, 2.6.0 or 2.6.1):

Package Microsoft.CodeQuality.Analyzers, version xxx was not found. It might have been deleted since NuGet restore. Otherwise, NuGet restore might have only partially completed, which might have been due to maximum path length restrictions.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants