Skip to content

Commit 0271f5e

Browse files
Merge pull request #419 from MarcoRossignoli/fixdoc
Fix VS test integration doc
2 parents a33ca0b + 8f781bc commit 0271f5e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Documentation/VSTestIntegration.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ How to specify these options via runsettings?
5757
<Include>[coverlet.*]*,[*]Coverlet.Core*</Include> <!-- [Assembly-Filter]Type-Filter -->
5858
<ExcludeByAttribute>Obsolete,GeneratedCodeAttribute,CompilerGeneratedAttribute</ExcludeByAttribute>
5959
<ExcludeByFile>../dir1/class1.cs,../dir2/*.cs,../dir3/**/*.cs,</ExcludeByFile> <!-- Absolute or relative file paths -->
60-
<IncludeDirectory>../dir1/*,../dir2/,</IncludeDirectory>
60+
<IncludeDirectory>../dir1/,../dir2/,</IncludeDirectory>
6161
<SingleHit>false</SingleHit>
6262
<UseSourceLink>true</UseSourceLink>
6363
</Configuration>
@@ -84,9 +84,9 @@ The proposed solution is implemented with the help of [datacollectors](https://g
8484
The datacollectors will be bundled as a separate NuGet package, the reference to which will be added by default in the .NET Core test templates, thus making it the default solution for collecting code coverage for .NET core projects.
8585
```
8686
<ItemGroup>
87-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
88-
<PackageReference Include="MSTest.TestAdapter" Version="1.3.2" />
89-
<PackageReference Include="MSTest.TestFramework" Version="1.3.2" />
90-
<PackageReference Include="coverlet.collector" Version="1.0.0" />
87+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="x.x.x" />
88+
<PackageReference Include="MSTest.TestAdapter" Version="x.x.x" />
89+
<PackageReference Include="MSTest.TestFramework" Version="x.x.x" />
90+
<PackageReference Include="coverlet.collector" Version="1.0.0" />
9191
</ItemGroup>
9292
```

0 commit comments

Comments
 (0)