Adds an XUnit test logger to each test csproj file (will be used by test script). Also add a skeleton SonarCloud analysis config file with a couple of settings for starters: Don't analyse exception classes or samples for coverage.
9 lines
434 B
XML
9 lines
434 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<SonarQubeAnalysisProperties xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
xmlns="http://www.sonarsource.com/msbuild/integration/2015/1">
|
|
<Property Name="sonar.coverage.exclusions">
|
|
**/*Exception.cs,
|
|
src/samples/**/*
|
|
</Property>
|
|
</SonarQubeAnalysisProperties> |