mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-03 21:23:38 +00:00
21 lines
802 B
XML
21 lines
802 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net8.0;net462</TargetFrameworks>
|
|
<AssemblyName>SharpCompress.Test</AssemblyName>
|
|
<PackageId>SharpCompress.Test</PackageId>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\SharpCompress\SharpCompress.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="FluentAssertions" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" />
|
|
<PackageReference Include="xunit.runner.visualstudio" />
|
|
<PackageReference Include="xunit" />
|
|
<PackageReference Include="Xunit.SkippableFact" />
|
|
</ItemGroup>
|
|
<ItemGroup Condition=" '$(VersionlessImplicitFrameworkDefine)' != 'NETFRAMEWORK' ">
|
|
<PackageReference Include="Mono.Posix.NETStandard" />
|
|
</ItemGroup>
|
|
</Project>
|