Skip to main content

static analysis

Adding Code Analysis and StyleCop checks to .NET Core projects with dotnet-addcasa
·123 words·1 min
dotnet static analysis
Today I’ll show you how to use dotnet-addcasa: a .NET Core global tool to add CodeAnalysis and Stylecop checks to your projects. If you want to manually add those checks or understand the tool internals check my post: .NET Core, Code Analysis and StyleCop Prerequisites # You’ll need .NET Core SDK 2.1.300-preview1 installed.
.NET Core, Code Analysis and StyleCop
·511 words·3 mins
dotnet static analysis
So now that .NET Core and .NET Standard 2.0 have been released some of you may be migrating applications or even creating new ones with it. As you progress you are starting to worry about the quality of your code so what you want is to at least check your code against design and style guidelines don’t you?