Skip to content

Commit 4bff56e

Browse files
committed
Move to MSTest and allow multi-targetting test runs
Previous all of the tmp files were create in the Samples directory. When running tests against multiple runtimes this caused problems. Now the tmp files are written to a subdirectory with the Environment.Version. This isn't a great fix, but it is a workaround for now.
1 parent 80c2804 commit 4bff56e

File tree

126 files changed

+31524
-31813
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

126 files changed

+31524
-31813
lines changed

.editorconfig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ dotnet_style_explicit_tuple_names = true:suggestion
5050

5151
# CSharp code style settings:
5252
[*.cs]
53+
indent_style = tab
54+
indent_size = 4
5355

5456
# spaces before parens
5557
csharp_space_between_method_declaration_name_and_open_parenthesis = true

Directory.Packages.props

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,9 @@
11
<Project>
2-
<PropertyGroup>
3-
<!-- Enable central package management, https://learn.microsoft.com/en-us/nuget/consume-packages/Central-Package-Management -->
4-
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
5-
</PropertyGroup>
6-
<ItemGroup>
7-
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.14.0" />
8-
<PackageVersion Include="NUnit" Version="4.3.2" />
9-
<PackageVersion Include="NUnit3TestAdapter" Version="5.0.0" />
10-
<!-- This generates a TON of warnings (13k+ warnings) -->
11-
<!--<PackageVersion Include="NUnit.Analyzers" Version="3.3.0" />-->
12-
<PackageVersion Include="coverlet.collector" Version="6.0.4" />
13-
<PackageVersion Include="SixLabors.ImageSharp" Version="2.1.10" />
14-
</ItemGroup>
2+
<PropertyGroup>
3+
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
4+
</PropertyGroup>
5+
<ItemGroup>
6+
<PackageVersion Include="MSTest" Version="3.9.1" />
7+
<PackageVersion Include="SixLabors.ImageSharp" Version="2.1.10" />
8+
</ItemGroup>
159
</Project>

0 commit comments

Comments
 (0)