I started using SonarCloud for one of my open source projects today. Initial analysis pointed me to various Exception classes that do in fact inherit from System.Exception but that inheritance is not detected…
See SonarCloud
Is this a bug?
I started using SonarCloud for one of my open source projects today. Initial analysis pointed me to various Exception classes that do in fact inherit from System.Exception but that inheritance is not detected…
See SonarCloud
Is this a bug?
Hi, @sensslen. Sorry for the late response!
This is indeed a bug in .NET Auto-Scan. The problem is that implicit using are not supported yet.
You have the following options:
using System;
to the start of the file.Thanks for the report; this was an important find!