I've been having trouble setting up code analysis with Sonar for a C# project, specifically because I also want to analyze JavaScript in the web project. Unfortunately, it seems that running multi-module projects on a .NET solution is not possible according to this link: . The suggested workaround involves triggering two analysis profiles separately and then combining them with the views plugin .
However, this plugin comes at a hefty cost of around 1800$. It appears that Sonar allows multi-project analysis in .NET through the solution file, which then disables multiple modules for .NET solutions to avoid a specific error.
This limitation forces me to use an expensive paid module for a suboptimal workaround, which can be quite frustrating. I'm wondering if there are any better alternatives or solutions available?