Skip to content

Commit 3dc9973

Browse files
author
Petr Sramek
committed
possible fix
1 parent b7fe492 commit 3dc9973

File tree

4 files changed

+38
-39
lines changed

4 files changed

+38
-39
lines changed

PolylineAlgorithm.slnx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
<Project Path="src/PolylineAlgorithm/PolylineAlgorithm.csproj" />
99
</Folder>
1010
<Folder Name="/tests/">
11-
<File Path="tests/Directory.Build.props" />
1211
<Project Path="tests/PolylineAlgorithm.Tests/PolylineAlgorithm.Tests.csproj" />
1312
</Folder>
1413
</Solution>

tests/Directory.Build.props

Lines changed: 0 additions & 32 deletions
This file was deleted.

tests/PolylineAlgorithm.Tests/PolylineAlgorithm.Tests.csproj

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,42 @@
1-
<Project Sdk="MSTest.Sdk/3.8.3">
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net9.0</TargetFramework>
5+
<LangVersion>13.0</LangVersion>
6+
<Nullable>enable</Nullable>
7+
<ImplicitUsings>enable</ImplicitUsings>
8+
<InvariantGlobalization>true</InvariantGlobalization>
9+
</PropertyGroup>
210

11+
<PropertyGroup>
12+
<OutputType>Exe</OutputType>
13+
<IsTestProject>true</IsTestProject>
14+
<EnableMSTestRunner>true</EnableMSTestRunner>
15+
<TestingPlatformDotnetTestSupport>true</TestingPlatformDotnetTestSupport>
16+
<TestingPlatformShowTestsFailure>true</TestingPlatformShowTestsFailure>
17+
<TestingPlatformCaptureOutput>false</TestingPlatformCaptureOutput>
18+
<TestingExtensionsProfile>None</TestingExtensionsProfile>
19+
</PropertyGroup>
20+
21+
<PropertyGroup>
22+
<IsPackable>false</IsPackable>
23+
</PropertyGroup>
24+
25+
<PropertyGroup>
26+
<AnalysisMode>All</AnalysisMode>
27+
<AnalysisLevel>latest</AnalysisLevel>
28+
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
29+
<EnableNETAnalyzers>false</EnableNETAnalyzers>
30+
</PropertyGroup>
31+
32+
<ItemGroup>
33+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.*" />
34+
<PackageReference Include="MSTest" Version="3.*" />
35+
<PackageReference Include="Microsoft.Testing.Platform.MSBuild" Version="1.*" />
36+
<PackageReference Include="Microsoft.Testing.Extensions.CodeCoverage" Version="17.*" />
37+
<PackageReference Include="Microsoft.Testing.Extensions.TrxReport" Version="1.*" />
38+
</ItemGroup>
39+
340
<ItemGroup>
441
<ProjectReference Include="..\..\src\PolylineAlgorithm\PolylineAlgorithm.csproj" />
542
</ItemGroup>

tests/global.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)