-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPolylineAlgorithm.Tests.csproj
More file actions
34 lines (28 loc) · 1.33 KB
/
PolylineAlgorithm.Tests.csproj
File metadata and controls
34 lines (28 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;net10.0;</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<OutputType>Exe</OutputType>
<IsTestProject>true</IsTestProject>
<EnableMSTestRunner>true</EnableMSTestRunner>
<TestingPlatformDotnetTestSupport>true</TestingPlatformDotnetTestSupport>
</PropertyGroup>
<PropertyGroup>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.4.0" />
<PackageReference Include="Microsoft.Testing.Extensions.VSTestBridge" Version="2.2.1" />
<PackageReference Include="MSTest" Version="4.2.1" />
<PackageReference Include="Microsoft.Testing.Platform.MSBuild" Version="2.2.1" />
<PackageReference Include="Microsoft.Testing.Extensions.CodeCoverage" Version="18.6.2" />
<PackageReference Include="Microsoft.Testing.Extensions.TrxReport" Version="2.2.1" />
<PackageReference Include="Microsoft.Extensions.Diagnostics.Testing" Version="10.4.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.5" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\PolylineAlgorithm\PolylineAlgorithm.csproj" />
<ProjectReference Include="..\..\utilities\PolylineAlgorithm.Utility\PolylineAlgorithm.Utility.csproj" />
</ItemGroup>
</Project>