-
Notifications
You must be signed in to change notification settings - Fork 95
Expand file tree
/
Copy pathQrCodeGeneratorTest.csproj
More file actions
31 lines (25 loc) · 1.28 KB
/
QrCodeGeneratorTest.csproj
File metadata and controls
31 lines (25 loc) · 1.28 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net8.0;net10.0</TargetFrameworks>
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('Windows'))">net481;$(TargetFrameworks)</TargetFrameworks>
<RootNamespace>Net.Codecrete.QrCodeGenerator.Test</RootNamespace>
<SuppressTfmSupportBuildErrors>true</SuppressTfmSupportBuildErrors>
<TestResultsFile>$([System.IO.Path]::Combine($(MSBuildThisFileDirectory),'..','TestResults-$(MSBuildProjectName)-$(TargetFramework).html'))</TestResultsFile>
</PropertyGroup>
<ItemGroup>
<VSTestLogger Include="html%3BLogFileName=$([System.IO.Path]::GetFullPath($(TestResultsFile)))" Visible="false" />
</ItemGroup>
<PropertyGroup>
<VSTestLogger>@(VSTestLogger)</VSTestLogger>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
<PackageReference Include="Verify.ImageMagick" Version="3.8.3" />
<PackageReference Include="Verify.Xunit" Version="31.9.4" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\QrCodeGenerator\QrCodeGenerator.csproj" />
</ItemGroup>
</Project>