|
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> |
2 | 10 |
|
| 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 | + |
3 | 40 | <ItemGroup>
|
4 | 41 | <ProjectReference Include="..\..\src\PolylineAlgorithm\PolylineAlgorithm.csproj" />
|
5 | 42 | </ItemGroup>
|
|
0 commit comments