2022-06-14 08:25:51 +03:00
|
|
|
<Project>
|
|
|
|
|
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))"/>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2022-11-09 21:57:31 +02:00
|
|
|
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0;net7.0</TargetFrameworks>
|
2022-06-14 08:25:51 +03:00
|
|
|
<IsPackable>false</IsPackable>
|
2022-06-15 21:35:22 +03:00
|
|
|
<IsTrimmable>false</IsTrimmable>
|
|
|
|
|
<EnableTrimAnalyzer>false</EnableTrimAnalyzer>
|
2022-11-09 21:57:31 +02:00
|
|
|
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
|
|
|
|
|
<NoWarn>NETSDK1138</NoWarn>
|
|
|
|
|
|
|
|
|
|
<CoverletOutputFormat>opencover</CoverletOutputFormat>
|
|
|
|
|
<CoverletOutput>$(MSBuildThisFileDirectory)TestResults/$(AssemblyName)/$(TargetFramework)/</CoverletOutput>
|
2022-06-14 08:25:51 +03:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-11-10 18:03:19 +02:00
|
|
|
<PackageReference Include="coverlet.msbuild">
|
2022-06-14 08:25:51 +03:00
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2022-11-10 18:03:19 +02:00
|
|
|
<PackageReference Include="FluentAssertions"/>
|
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk"/>
|
|
|
|
|
<PackageReference Include="Newtonsoft.Json"/>
|
|
|
|
|
<PackageReference Include="System.Net.Http"/>
|
|
|
|
|
<PackageReference Include="System.Text.RegularExpressions"/>
|
|
|
|
|
<PackageReference Include="xunit"/>
|
|
|
|
|
<PackageReference Include="xunit.analyzers"/>
|
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio">
|
2022-06-14 08:25:51 +03:00
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Using Include="FluentAssertions"/>
|
|
|
|
|
<Using Include="FluentAssertions.Execution"/>
|
|
|
|
|
<Using Include="FluentAssertions.Equivalency"/>
|
|
|
|
|
<Using Include="Xunit"/>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|