Is it possible to analyce vbnet code without building the project?

Hi @Frederic, VB.NET (and C#) need to be built in order to be analyzed. Our .NET analyzers are actually plugins for the compiler and work during the compilation of the project. In addition, to analyze .NET source code you have to use Scanner for MSBuild, as it provides the needed integration with the build process that allows the analyzers to work correctly.