Another plagiarized article
-
Looking at [How to Build Analyzers and Code Fixes by Roslyn using VS2019](https://www.codeproject.com/Articles/5252244/How-to-Build-Analyzers-and-Code-Fixes-by-Roslyn-us) Seems that at least the code has been taken from elsewhere. Take a look at the code for method
private static void AnalyzeSymbol(SymbolAnalysisContext context)
and compare it to the book C#7 and .NET core at page 153: [C# 7 and .NET Core Cookbook - Dirk Strauss - Google Books](https://books.google.com/books?id=5UEwDwAAQBAJ&pg=PA153&lpg=PA153)
-
Looking at [How to Build Analyzers and Code Fixes by Roslyn using VS2019](https://www.codeproject.com/Articles/5252244/How-to-Build-Analyzers-and-Code-Fixes-by-Roslyn-us) Seems that at least the code has been taken from elsewhere. Take a look at the code for method
private static void AnalyzeSymbol(SymbolAnalysisContext context)
and compare it to the book C#7 and .NET core at page 153: [C# 7 and .NET Core Cookbook - Dirk Strauss - Google Books](https://books.google.com/books?id=5UEwDwAAQBAJ&pg=PA153&lpg=PA153)
this should not be called as plagiazied article, the code(method) which you are referring is a default code generated by visual studio when you select the default aanzyer template to create project. you may find the same method in many places as it comes default.