2022-07-25 04:10:26 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-07-27 00:13:20 +00:00
|
|
|
<PackageReference Include="AltCover" Version="8.3.838" />
|
2022-07-25 04:10:26 +00:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
|
|
|
|
<PackageReference Include="NUnit" Version="3.13.3" />
|
|
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1" />
|
|
|
|
<PackageReference Include="NUnit.Analyzers" Version="3.3.0" />
|
|
|
|
<PackageReference Include="coverlet.collector" Version="3.1.2" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\BenchtopParser\BenchtopParser.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<None Update="TestFiles\Hardware Calibration Report.txt">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
<None Update="TestFiles\Program Config.txt">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
<None Update="TestFiles\Transducer Verify.txt">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|