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

editorconfig c# language rules doesn't trigger build failure #33558

Closed
vsfeedback opened this issue Feb 21, 2019 · 70 comments
Closed

editorconfig c# language rules doesn't trigger build failure #33558

vsfeedback opened this issue Feb 21, 2019 · 70 comments
Labels
Area-IDE Developer Community The issue was originally reported on https://developercommunity.visualstudio.com Feature Request
Milestone

Comments

@vsfeedback
Copy link

vsfeedback commented Feb 21, 2019

I have the following C# document

using Newtonsoft.Json;
using System;
using System.Text;
using log4net;

namespace EditorConfigdemo {
public class ExampleClass { 

	public static void Main (string[] args) {

		Console.WriteLine("Hello, Message form an App");
	}

  private readonly int number;

  public ExampleClass ( int num ) {

	this.number = num;
  }

  public void PrintState( )
  {
	Console.WriteLine("State is {0}", number);
  }

		public int Calculate()
		{
			Int32 res;
			if( (number > 10 && number < 100) || number % 7 == 4 ) {                                   
				res = 1+2* ( 78 -2) *(8*4) - ((67+3) *3 );
			} else
			{
				res=42;
			}

            return res;
		}


   public String Info() {
	   try {
		   throw new Exception("Blam!");
	   } catch (Exception ex) {
		   Console.WriteLine(ex.Message);                                               
		   throw;
	   } finally {
		   Console.WriteLine("Have we failed?");                                                                          
	   }
   }
}
}

when I apply the following rules to it:

root = true

[*.*]
charset = utf-8
indent_style = space
trim_trailing_whitespace = true
insert_final_newline = true

[*.{ps,xml}]
indent_size = 2

[*.cs]
indent_size = 4 : warning
end_of_line = crlf

# Use language keywords instead of BCL types
dotnet_style_predefined_type_for_locals_parameters_members = true : suggestion
dotnet_style_predefined_type_for_member_access = true: suggestion

# Add parentheses around binary operators for clarity
dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity : suggestion
dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity : suggestion
dotnet_style_parentheses_in_other_binary_operators = always_for_clarity : suggestion

# Prefer object/collection initialization
dotnet_style_object_initializer = true: suggestion
dotnet_style_collection_initializer = true : suggestion

# Prefer tupple names for anonymous tupples
dotnet_style_explicit_tuple_names = true : suggestion

# Use auto properties
dotnet_style_prefer_auto_properties = true : suggestion

# Use conditional expressions over return statements
dotnet_style_prefer_conditional_expression_over_return = true : suggestion

# Use simple conditional assignment for null checks
dotnet_style_coalesce_expression = true : suggestion
dotnet_style_null_propagation = true : suggestion
csharp_style_throw_expression = true : suggestion

# Use var keyword when type is apparent
csharp_style_var_when_type_is_apparent = true : suggestion

# Single statement code blocks surrounded by braces
csharp_prefer_braces = true : suggestion

# Put system namespaces first
dotnet_sort_system_directives_first = true : suggestion

# Space placement
csharp_space_after_keywords_in_control_flow_statements = true : error
csharp_space_around_binary_operators = before_and_after : error
csharp_space_after_keywords_in_control_flow_statements = true : error
csharp_space_between_method_declaration_parameter_list_parentheses = false : error
csharp_space_between_method_declaration_empty_parameter_list_parentheses = false: error
csharp_space_between_method_call_parameter_list_parentheses = false : error
csharp_space_before_colon_in_inheritance_clause = true : error
csharp_space_after_colon_in_inheritance_clause = true : error

# Statement placement
csharp_preserve_single_line_statements = false : suggestion
csharp_preserve_single_line_blocks = true : suggestion

# Open/close brace placement
csharp_new_line_before_open_brace = control_blocks, methods, properties, accessors, events, indexers, types : error

non of the rules marked with "error" action is triggered during the build in Visual Studio.

Only if I change action to error" for dotnet_style_predefined_type_for_locals_parameters_members the build fails

This issue has been moved from https://developercommunity.visualstudio.com/content/problem/433321/editorconfig-c-language-rules-doesnt-trigger-build.html
VSTS ticketId: 775762

These are the original issue comments:

Visual Studio Feedback System on 2/17/2019, 04:12 AM (4 days ago):

This issue is currently being investigated. Our team will get back to you if either more information is needed, a workaround is available, or the issue is resolved.

These are the original issue solutions:
(no solutions)

@sharwell sharwell added Area-IDE Feature Request Developer Community The issue was originally reported on https://developercommunity.visualstudio.com labels Feb 21, 2019
@sharwell
Copy link
Member

Currently IDE code style rules do not apply during builds. We are actively working to make these analyzer available during compilation scenarios, at which point errors would cause the build to fail.

@kindermannhubert
Copy link

Suppose this work would enable usage of IDE analyzers from MsBuild alone. Is that right?

I am using ruleset file with IDE analyzer settings and I was just trying to enable this scenario and it was really messy experience.

  1. I added Analyzer element inside project file with reference to Microsoft.CodeAnalysis.CSharp.Features.dll from VS. But during build it was missing references of this lib.
  2. I added also the references (located also in VS folder). But those references have another version than version which is referenced by Microsoft.CodeAnalysis.CSharp.Features.dll (e.g. System.Composition.AttributedModel (1.0.31) is referenced, but 1.0.27 version is shipped with VS). There is no(?) simple way to guide MsBuild to use binding redirection.
  3. Finally I downloaded Microsoft.CodeAnalysis.CSharp.Features.dll through Nuget with its dependencies and added those dependencies to Analyzer tags as well (which is thing would really like not to do). Another problem appeared - MsBuild has already loaded some assemblies by itself (from some MsBuild/???/Roslyn folder - do not remember exactly) which collided with NuGet assemblies.
  4. I removed those colliding references from Analyzer references and it looked better but I was still getting some weird null reference exceptions from CSharpValidateFormatStringDiagnosticAnalyzer.
  5. I gave up.

@jmarolf
Copy link
Contributor

jmarolf commented Apr 10, 2019

@kindermannhubert Analyzers are not allowed to reference Microsoft.CodeAnalysis.CSharp.Features.dll. Analyzers are run inside the compiler itself not the IDE. You only have access to APIs the compiler provides. Visual Studio Extensions can access apis in features.

@kindermannhubert
Copy link

And is there (will be) any way to enable IDE analyzers while building with MsBuild?

@jmarolf
Copy link
Contributor

jmarolf commented Apr 10, 2019

@kindermannhubert see dotnet/roslyn-sdk

  1. Run Visual Studio Installer
  2. Hit Modify
  3. Select the Individual components tab
  4. Check the box for .NET Compiler Platform SDK
  5. Click on the Modify button

This is will give you several templates that will allow you to get started
image

This template can create a nuget package that can be installed and run via 'msbuild'

@jmarolf
Copy link
Contributor

jmarolf commented Apr 10, 2019

You can find some examples here

@kindermannhubert
Copy link

You probably misunderstand me. I know how to create and use custom analyzers (even from msbuild).
When I refer to IDE analyzers I mean built-in analyzers shipped with VS with name "IDExxxx" (e.g. IDE0059, IDE0060, ...).

@jmarolf
Copy link
Contributor

jmarolf commented Apr 10, 2019

@kindermannhubert there is no difference. Those analyzers have Id that start with "IDE" by convention but there is nothing special about most of them. Can you be more specific about what you are trying to do?

@kindermannhubert
Copy link

I've described above, but here is more detailed description.

This is the differences:

  • Custom analyzers can be activated by adding following tag to csproj (I'm not interested in installing it as VS extension):
<Analyzer Include="somePathToAnalyzer\CustomAnalyzer.dll" />
  • IDE analyzers do not have to be included this way. They are present automatically (while building from VS).
  • Both types (custom and IDE) can be adjusted (=change default severity of analyzers) by ruleset file. Ruleset file is included by following tag in csproj:
<CodeAnalysisRuleSet>somePathToRulesetFile\MyRuleset.ruleset</CodeAnalysisRuleSet>

When working in VS it works (except for subject of this issue - when IDE analyzers has Warning/Error severity set up they are not breaking a build).

Example (simple program with error, but build succeeds):
issue1
issue2

My problem probably comes from the very same reason why the build is not broken in example above.
When I build solution just with msbuild as

msbuild MySolution.sln

no error is detected and build succeeds.

In comment above I was describing steps I tried to explicitly reference IDE analyzers from my project file. And its really not that simple because of the references of assemblies containing IDE analyzers (and maybe there are more problems).

@jmarolf
Copy link
Contributor

jmarolf commented Apr 10, 2019

@kindermannhubert Correct, if you want analyzers to fail your commandline build they need to be given to the commandline compiler. As you pointed out, once way to do this is to reference the dll directly

<Analyzer Include="somePathToAnalyzer\CustomAnalyzer.dll" />

Another alternative is to create an analyzer nuget package and reference it in your project file

<PackageReference Include="CustomAnalyzer" Version="1.0.0" />

However if you reference IDE assemblies in an analyzer that is run by the commandline compiler it will not work. This is by design. The compiler does not load all of Visual Studios dlls in order to build. If this scenario is important to you I would file a new issue on this repo.

@kindermannhubert
Copy link

I've tried

<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Features" Version="3.0.0" />

it doesn't do anything.
Ok, I will create new issue for this.

@jmarolf
Copy link
Contributor

jmarolf commented Apr 10, 2019

Microsoft.CodeAnalysis.CSharp.Features is not an analyzer dll so this will not work. It is an API library. Referencing it as an analyzer is not going to work.

@kindermannhubert
Copy link

@jmarolf Don't think so. It's full of analyzers..
image

@jmarolf
Copy link
Contributor

jmarolf commented Apr 11, 2019

@kindermannhubert It contains analyzer types but they are not setup to be consumed in any fashion other than being installed into the Visual Studio IDE.

@chrisahill
Copy link

chrisahill commented May 14, 2019

upvote! We added a .editorconfig file to our solution and added some settings to compile as errors to find legacy code that needed to be updated. When compiled the build succeeded with no errors.

@mavasani
Copy link
Contributor

@jmarolf I believe @kindermannhubert is requesting that we move all the in-built IDE analyzers into a separate assembly which can be consumed via a NuGet package, just like regular third party analyzers. Currently, the analyzers in the IDE layer (i.e. MS.CA.Features.dll) have lot of internal dependencies, primary ones being the options infrastructure which is tied to the Workspace. Hence these cannot be consumed through any NuGet package or even referencing MS.CA.Features.dll directly as an Analyzer item group in your project. @sharwell has created a separate CodeStyle project and NuGet package within Roslyn.sln, which currently only has the formatting analyzer, but is consumable as an analyzer NuGet package. He is also working on porting individual IDE style analyzers into this package, so then can be consumed as a NuGet package and enabled in CI - .editorconfig support in compiler is a critical step, and now that it is in place, we hope to start tackling one analyzer at a time to move it into this package.

@klausenbusk
Copy link

@sharwell has created a separate CodeStyle project and NuGet package within Roslyn.sln, which currently only has the formatting analyzer, but is consumable as an analyzer NuGet package.

So it should work? I tried the following code, but I don't get any build errors when running dotnet build (2.2):

dotnet add package Microsoft.CodeAnalysis.CSharp.CodeStyle --version 3.5.0-beta1-19554-03 --source https://dotnet.myget.org/F/roslyn/api/v3/index.json
cat << EOF
[*.cs]
csharp_new_line_before_open_brace = none
EOF > .editorconfig
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;

namespace ELJ
{
    public static class Program
    {
        public static void Main(string[] args)
        {
            CreateWebHostBuilder(args).Build().Run();
        }

        public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
            WebHost.CreateDefaultBuilder(args)
                .UseStartup<Startup>();
    }
}

@ghost
Copy link

ghost commented Nov 22, 2019

Hey folks, any progress on this? This would be extremely useful

@mavasani
Copy link
Contributor

There are some design issues that need to be tackled to lay the foundation before the analyzers can be moved to a NuGet package: #38480

@ElteHupkes
Copy link

ElteHupkes commented Dec 5, 2019

EDIT: For people arriving in the future, before doing anything with this comment, be sure to read the one directly below it.

@klausenbusk A comment under a related issue indicated that you also need a .ruleset file, and with that I actually got this to work for code formatting. So to summarize:

  • Create a .editorconfig with the rules you'd like
  • Create a CodeFormatting.ruleset in your project (name is arbitrary). My contents are:
<RuleSet Name="CodeAnalysis Ruleset" Description="This ruleset sets the severity for the Microsot.CodeAnalysis.CSharp.CodeStyle package, so it breaks on build" ToolsVersion="10.0">
    <!-- Even though the IDE will correctly show errors for rule violations in .editorconfig,
         we need to explicitly set the severity in a ruleset file to get build errors for it:
         https://github.com/dotnet/roslyn/issues/30541 -->
    <!-- It doesn't really seem to matter what I put in the AnalyzerId and RuleNamespace fields,
         as long as the rule ID is correct. -->
    <Rules AnalyzerId="Microsoft.CodeAnalysis.CSharp.CodeStyle" RuleNamespace="Microsoft.CodeQuality.Analyzers">
        <!-- IDE0055 is the formatting analyzer from Microsoft.CodeAnalysis.CSharp.CodeStyle. -->
        <Rule Id="IDE0055" Action="Error" />
    </Rules>
</RuleSet>
  • Add it to your .csproj file like:
<PropertyGroup>
    <CodeAnalysisRuleSet>CodeFormatting.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

With that, my build has started to fail on code formatting errors. You could of course also configure it as Action="Warning" to just throw a warning. For showing these errors / warnings in the build it seems to respect the severity level in .editorconfig, so say you had:

csharp_new_line_before_open_brace = all:hint

Then it would not affect the build.

EDIT: By that I mean, it only shows the error level defined in the .ruleset for the properties configured as errors. If you have Action="Error" with a prop=value:warning it won't show up as a warning. Not ideal but somewhat workable for things you really don't want in your build.

@sharwell
Copy link
Member

sharwell commented Dec 5, 2019

@ElteHupkes That comment is outdated. Starting with the 16.3 release, can now set the severity of IDE0055 (or any other rule) via a .editorconfig file.

# IDE0055: Fix formatting
dotnet_diagnostic.IDE0055.severity = error

@mavasani
Copy link
Contributor

mavasani commented Dec 5, 2019

Yes, see official documentation with screenshots on how to do the same using lightbulb: https://docs.microsoft.com/en-us/visualstudio/code-quality/use-roslyn-analyzers?view=vs-2019#set-rule-severity-in-an-editorconfig-file

@mavasani
Copy link
Contributor

mavasani commented Sep 10, 2020

CodeStyle analyzer assemblies are now directly inserted into the .NET5 SDK (will need VS2019 16.8 Preview4 or later and .NET5 RC2 SDK or later, once both of these are released). You will not need to install any special analyzer NuGet package to enable code style enforcement in build if you are on the required .NET SDK and VS. Also note that you don't need your project TargetFramework to be net5 or later to enable this feature, you just need to be on the .NET5 SDK.

Official documentation with the steps to enable build time code style enforcement is at https://docs.microsoft.com/dotnet/fundamentals/productivity/code-analysis#code-style-analysis.

I am going to close this issue as no further feature work is required, please file separate Rolsyn issue(s) for anything that does not work as expected and doc issues at the above page if you need more clarity on documentation.

ElderJames pushed a commit to ant-design-blazor/ant-design-blazor that referenced this issue Oct 15, 2020
- Invalid Property Naming convention will now throw an error instead of a warning, which will make it impossible to build locally (usage as a Linter). However the build will still succeed on the GitHub workflow due to [this issue that has to be resolved by Microsoft](dotnet/roslyn#33558)
- Disabled the XML comments, it's handy but not always needed at this point.

Co-authored-by: Benjamin Vertonghen <[email protected]>
@RehanSaeed
Copy link

This thread mentions dotnet_analyzer_diagnostic.category-CodeQuality.severity but it exists in Roslyn here: https://github.com/dotnet/roslyn-analyzers/blob/master/.editorconfig#L185-L239.

I've raised https://github.com/dotnet/roslyn-analyzers/issues/4429 to document the categories of rules that we can set a severity for and also to ask if we can set a default severity for all categories.

@mavasani
Copy link
Contributor

@RehanSaeed Setting default severity for all analyzer diagnostics is documented here: https://docs.microsoft.com/dotnet/fundamentals/code-analysis/configuration-options#scope

@chucker
Copy link

chucker commented Feb 17, 2021

CodeStyle analyzer assemblies are now directly inserted into the .NET5 SDK (will need VS2019 16.8 Preview4 or later and .NET5 RC2 SDK or later, once both of these are released). You will not need to install any special analyzer NuGet package to enable code style enforcement in build if you are on the required .NET SDK and VS. Also note that you don't need your project TargetFramework to be net5 or later to enable this feature, you just need to be on the .NET5 SDK.

Maybe I misunderstand, but with SDK 5.0.200-preview.21079.7 and either TFM net5.0 or netcoreapp3.1, the following in .editorconfig will cause error highlights (in the IDE; in dotnet build, these don't appear to show up), but those will not prevent the build:

# IDE0058: Expression value is never used
dotnet_diagnostic.IDE0058.severity = error

Until, that is, I add this package reference:

    <PackageReference Include="Microsoft.CodeAnalysis.CSharp.CodeStyle" Version="3.8.0" />

@mavasani
Copy link
Contributor

@chucker You have 2 options to enforce code style analyzers on build:

  1. Set MSBuild property EnforceCodeStyleInBuild to true in your project file OR
  2. Add a package reference to Microsoft.CodeAnalysis.CSharp.CodeStyle. With package reference, you need to ensure that you use the required minimum version required by the package. For example, version 3.8.0 requires at least VS2019 16.8.

@ChristianHoe
Copy link

I have configured some Code Style / Naming rules (configured as warning/error) within the Option dialog from Visual Studio.
Within Visual Studio I get correct IDE1006/IDE0011 errors

As described I added a nuget reference to Mircosoft.CodeAnalysis.CSharp.CodeStyle (3.8.0) for all projects.

The build still does not fail.

I also exported the editorconfig from Visual Studio and placed it in the solution folder.
I tried running msbuild.exe mySolution.sln -p:EnforceCodeStyleInBuild=true /t:Clean,Build
I tried placing true and/or true in a csproj-file.

I have Visual Studio 16.8.5 installed and the project (old style: sln/csproj) is using .net framework 4.7.2
The Visual Studio Installer tells me, I have installed: .NET Framework 4.8 SDK, .NET SDK, .NET 5.0 Runtime (not seeing packet for .Net 5.0 SDK)

What am I doing wrong?

@ryanbuening
Copy link

ryanbuening commented Apr 1, 2021

@mavasani, I have the same issue as @ChristianHoe. I'm targeting net5.0 with EnforceCodeStyleInBuild set to true in my csproj file. I have an IDE0011 error in my Error List, but I am still able to successfully build the project. Using Visual Studio 2019 16.9.3.

image

@mavasani
Copy link
Contributor

mavasani commented Apr 1, 2021

@ChristianHoe I believe the core issue for you is that you are setting the IDExxxx rule severities in the Options Dialog in VS. The settings in this dialog are user specific, not something that gets enforced on build (repo specific). For setting repo specific severities that get enforced in build, you need to create a .editorconfig file and add entries to this file to escalate IDE diagnostics to warning/error severity. See https://docs.microsoft.com/en-us/dotnet/fundamentals/code-analysis/configuration-files for creating repo-specific configuration files

@ryanbuening That project file seems correct way to enable code style enforcemet on build. Again, does your repo/project actually have an .editorconfig file with IDE0011 entry with severity warning/error?

Basically, did you folks follow the step 2 at https://docs.microsoft.com/en-us/dotnet/fundamentals/code-analysis/overview#enable-on-build?

@ryanbuening
Copy link

@mavasani I see now. I had the following in my .editorconfig file:

csharp_prefer_braces = true : error

which showed the IDE0011 error in my Error List so I assumed the build would fail. After adding the following:

dotnet_diagnostic.IDE0011.severity = error

the build does fail.

Thanks for explaining.

@rafalschmidt97
Copy link

In my case with .net5 I was forced to remove Microsoft.CodeAnalysis.CSharp.CodeStyle and enable EnforceCodeStyleInBuild. Wit net3.1 the package worked. Thanks all!

@Piedone
Copy link
Member

Piedone commented Sep 15, 2021

@rafalschmidt97 are you still using the SDK version? I have the same problem but would really want to use the NuGet so it's consistent across all environments, regardless of the .NET version being installed.

Is this a known issue @sharwell @mavasani?

@liranelisha
Copy link

any solution for Target Framework 4.x.x or earlier?

@chucker
Copy link

chucker commented Nov 22, 2021

any solution for Target Framework 4.x.x or earlier?

Try adding the package: #33558 (comment)

@liranelisha
Copy link

liranelisha commented Nov 22, 2021

any solution for Target Framework 4.x.x or earlier?

Try adding the package: #33558 (comment)

i did.
only got the following warnings:

CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CodeStyle.CSharpFormattingAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.AddAccessibilityModifiers.CSharpAddAccessibilityModifiersDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.AddRequiredParentheses.CSharpAddRequiredExpressionParenthesesDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.AddRequiredParentheses.CSharpAddRequiredPatternParenthesesDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.Analyzers.MatchFolderAndNamespace.CSharpMatchFolderAndNamespaceDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.ConvertNamespace.ConvertToBlockScopedNamespaceDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.ConvertNamespace.ConvertToFileScopedNamespaceDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.ConvertSwitchStatementToExpression.ConvertSwitchStatementToExpressionDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.ConvertTypeOfToNameOf.CSharpConvertTypeOfToNameOfDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.Diagnostics.AddBraces.CSharpAddBracesDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.Diagnostics.NamingStyles.CSharpNamingStyleDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.Diagnostics.TypeStyle.CSharpUseExplicitTypeDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.Diagnostics.TypeStyle.CSharpUseImplicitTypeDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.FileHeaders.CSharpFileHeaderDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.InlineDeclaration.CSharpInlineDeclarationDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.InvokeDelegateWithConditionalAccess.InvokeDelegateWithConditionalAccessAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.MakeLocalFunctionStatic.MakeLocalFunctionStaticDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.MakeStructFieldsWritable.CSharpMakeStructFieldsWritableDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.MisplacedUsingDirectives.MisplacedUsingDirectivesDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.NewLines.ConsecutiveBracePlacement.ConsecutiveBracePlacementDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.NewLines.ConsecutiveStatementPlacement.CSharpConsecutiveStatementPlacementDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.NewLines.ConstructorInitializerPlacement.ConstructorInitializerPlacementDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.NewLines.EmbeddedStatementPlacement.EmbeddedStatementPlacementDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.NewLines.MultipleBlankLines.CSharpMultipleBlankLinesDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.OrderModifiers.CSharpOrderModifiersDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.PopulateSwitch.CSharpPopulateSwitchExpressionDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.PopulateSwitch.CSharpPopulateSwitchStatementDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.QualifyMemberAccess.CSharpQualifyMemberAccessDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.RemoveConfusingSuppression.CSharpRemoveConfusingSuppressionDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.RemoveRedundantEquality.CSharpRemoveRedundantEqualityDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.RemoveUnnecessaryCast.CSharpRemoveUnnecessaryCastDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.RemoveUnnecessaryDiscardDesignation.CSharpRemoveUnnecessaryDiscardDesignationDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.RemoveUnnecessaryImports.CSharpRemoveUnnecessaryImportsDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.RemoveUnnecessaryParentheses.CSharpRemoveUnnecessaryExpressionParenthesesDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.RemoveUnnecessaryParentheses.CSharpRemoveUnnecessaryPatternParenthesesDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.RemoveUnnecessarySuppressions.CSharpRemoveUnnecessaryAttributeSuppressionsDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.RemoveUnreachableCode.CSharpRemoveUnreachableCodeDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.RemoveUnusedMembers.CSharpRemoveUnusedMembersDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.RemoveUnusedParametersAndValues.CSharpRemoveUnusedParametersAndValuesDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.SimplifyBooleanExpression.CSharpSimplifyConditionalDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.SimplifyInterpolation.CSharpSimplifyInterpolationDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.SimplifyLinqExpression.CSharpSimplifyLinqExpressionDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.UseAutoProperty.CSharpUseAutoPropertyAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.UseCoalesceExpression.CSharpUseCoalesceExpressionDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.UseCoalesceExpression.CSharpUseCoalesceExpressionForNullableDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.UseCollectionInitializer.CSharpUseCollectionInitializerDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.UseCompoundAssignment.CSharpUseCompoundAssignmentDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.UseCompoundAssignment.CSharpUseCompoundCoalesceAssignmentDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.UseConditionalExpression.CSharpUseConditionalExpressionForAssignmentDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.UseConditionalExpression.CSharpUseConditionalExpressionForReturnDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.UseDeconstruction.CSharpUseDeconstructionDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.UseDefaultLiteral.CSharpUseDefaultLiteralDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.UseExpressionBody.UseExpressionBodyDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.UseImplicitObjectCreation.CSharpUseImplicitObjectCreationDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.UseIndexOrRangeOperator.CSharpUseIndexOperatorDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.UseIndexOrRangeOperator.CSharpUseRangeOperatorDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.UseInferredMemberName.CSharpUseInferredMemberNameDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.UseIsNullCheck.CSharpUseIsNullCheckForCastAndEqualityOperatorDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.UseIsNullCheck.CSharpUseIsNullCheckForReferenceEqualsDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.UseIsNullCheck.CSharpUseNullCheckOverTypeCheckDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.UseLocalFunction.CSharpUseLocalFunctionDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.UseNullPropagation.CSharpUseNullPropagationDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.UseObjectInitializer.CSharpUseObjectInitializerDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.UsePatternCombinators.CSharpUsePatternCombinatorsDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.UsePatternMatching.CSharpAsAndNullCheckDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.UsePatternMatching.CSharpIsAndCastCheckDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.UsePatternMatching.CSharpUseNotPatternDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.UseSimpleUsingStatement.UseSimpleUsingStatementDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.UseThrowExpression.CSharpUseThrowExpressionDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.CSharp.ValidateFormatString.CSharpValidateFormatStringDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.MakeFieldReadonly.MakeFieldReadonlyDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.UseExplicitTupleName.UseExplicitTupleNameDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.UseSystemHashCode.UseSystemHashCodeDiagnosticAnalyzer cannot be created from C:\Work\git\CRM.BAS.FSI\packages\microsoft.codeanalysis.csharp.codestyle\4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified.. [C:\Work\git\CRM.BAS.FSI\Modules\UnifiedCustomerProfile\RetailBankingCoreComponents.Plugins\RetailBankingCoreComponents.Plugins.csproj]
    73 Warning(s)
    0 Error(s)

Time Elapsed 00:00:04.27

@liranelisha
Copy link

do you have a list of the Nuget needed for the Analyzer? i keep getting more and more errors on dependent Nugets (using private ADO artifactory)

@ChristianHoe
Copy link

ChristianHoe commented Dec 2, 2021

Just gave it another try: VS 16.11.2 & .net framework 4.7.2 & old project style files (csproj, sln)

Added nuget: Microsoft.CodeAnalysis.CSharp.CodeStyle 4.0.1

Like liranelisha only lots of warnings:

[...]
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.MakeFieldReadonly.MakeFieldReadonlyDiagnosticAnalyzer cannot be created from C:\****\packages\Microsoft.CodeAnalysis.CSharp.CodeStyle.4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. Das System kann die angegebene Datei nicht finden..
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.UseExplicitTupleName.UseExplicitTupleNameDiagnosticAnalyzer cannot be created from C:\****\packages\Microsoft.CodeAnalysis.CSharp.CodeStyle.4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. Das System kann die angegebene Datei nicht finden..
CSC : warning CS8032: An instance of analyzer Microsoft.CodeAnalysis.UseSystemHashCode.UseSystemHashCodeDiagnosticAnalyzer cannot be created from C:\****\packages\Microsoft.CodeAnalysis.CSharp.CodeStyle.4.0.1\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CodeStyle.dll : Could not load file or assembly 'Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. Das System kann die angegebene Datei nicht finden..
[...]

ElderJames pushed a commit to ant-design-blazor/ant-design-blazor that referenced this issue Apr 23, 2022
- Invalid Property Naming convention will now throw an error instead of a warning, which will make it impossible to build locally (usage as a Linter). However the build will still succeed on the GitHub workflow due to [this issue that has to be resolved by Microsoft](dotnet/roslyn#33558)
- Disabled the XML comments, it's handy but not always needed at this point.

Co-authored-by: Benjamin Vertonghen <[email protected]>
ElderJames pushed a commit to ant-design-blazor/ant-design-blazor that referenced this issue Apr 30, 2022
- Invalid Property Naming convention will now throw an error instead of a warning, which will make it impossible to build locally (usage as a Linter). However the build will still succeed on the GitHub workflow due to [this issue that has to be resolved by Microsoft](dotnet/roslyn#33558)
- Disabled the XML comments, it's handy but not always needed at this point.

Co-authored-by: Benjamin Vertonghen <[email protected]>
@thomasw-mitutoyo-ctl
Copy link

This still does not work in 2022: https://stackoverflow.com/q/78951936/480982

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Area-IDE Developer Community The issue was originally reported on https://developercommunity.visualstudio.com Feature Request
Projects
None yet
Development

No branches or pull requests