Sebastien Marichal
Sebastien Marichal
Since SonarQube 7.6, modules are deprecated. Right now, for each project `.csproj`, we still generate module related properties: ```properties sonar.projectKey=exclusion sonar.working.directory=C:\\projects\\Exclusion\\.sonarqube\\out\\.sonar sonar.projectBaseDir=C:\\projects\\Exclusion sonar.pullrequest.cache.basepath=C:\\projects\\Exclusion 615D01B7-CB50-4152-8998-434C1ABC3516.sonar.projectKey=exclusion:615D01B7-CB50-4152-8998-434C1ABC3516 # This is deprecated 615D01B7-CB50-4152-8998-434C1ABC3516.sonar.projectName=Exclusion #...
See this [internal post](https://discuss.sonarsource.com/t/sonarscanner-issue-with-sonarcloud-with-a-manually-creating-a-project-with-all-numbers/17278) for more context. SonarCloud allows project keys with only digits such as `1989`, when invoking S4NET with such a key, it will produce the following error:...
For context see this [discuss post](https://discuss.sonarsource.com/t/dotnet-sonarscanner-insensitive-to-environment-variables/16524) (internal link). The goal is to add the support of environment variables to set the options of the SonarScanner for .NET. Here is a...
Today, if `ArgumentProcessor.TryProcessArgs` returns `null`, it will always produce the following message: ``` Expecting at least the following command line argument: - SonarQube/SonarCloud project key The full path to a...
In the embedded documentation, the section about proxy states the following: > You also need to set the appropriate proxy environment variables used by .NET. HTTP_PROXY, HTTPS_PROXY, ALL_PROXY, and NO_PROXY...
S4NET should fail fast when used against an older version of SonarQube, that is neither the current LTS nor the previous one.
Fixes #2120 RSPEC update: https://github.com/SonarSource/rspec/pull/4019
From this [community post](https://community.sonarsource.com/t/upgrade-sonarqube-9-9-to-10-2-now-see-more-bugs-when-reviewing-the-c-code/103255/3). This might be fixed as part of #7457: > Learn from well-known (extension-) methods like list.Any() ```cs void Method(Exception[] array) { if (array.Any()) { Exception exception...
```cs if (s == 0) { DoSomething1(); } else { if (s > 0 && s < 11) { // FN DoSomething1(); } else { if (s > 11 &&...
Intiate by https://community.sonarsource.com/t/csharpsquid-s107-too-many-parameters-on-a-constructor/51861 - [ ] Adding support of the `constructorMax` parameter - [ ] Adding more/new exceptions: - [ ] Dependency injection - [ ] Immutable object/read only assignement...