2026-01-16 08:58:26 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2017-05-19 08:46:27 +01:00
|
|
|
<PropertyGroup>
|
2025-11-29 11:03:48 +00:00
|
|
|
<TargetFrameworks>net10.0;net48</TargetFrameworks>
|
2026-01-16 08:58:26 +00:00
|
|
|
<OutputType>Exe</OutputType>
|
2017-05-19 08:46:27 +01:00
|
|
|
<AssemblyName>SharpCompress.Test</AssemblyName>
|
|
|
|
|
<PackageId>SharpCompress.Test</PackageId>
|
2025-01-15 04:43:16 +03:00
|
|
|
<AssemblyOriginatorKeyFile>SharpCompress.Test.snk</AssemblyOriginatorKeyFile>
|
|
|
|
|
<SignAssembly>true</SignAssembly>
|
2017-05-19 08:46:27 +01:00
|
|
|
</PropertyGroup>
|
2026-01-22 15:15:57 +00:00
|
|
|
<PropertyGroup Condition=" '$(TargetFramework)' == 'net48' ">
|
|
|
|
|
<DefineConstants>$(DefineConstants);LEGACY_DOTNET</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
2025-10-22 10:32:47 +01:00
|
|
|
<PropertyGroup Condition="$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Windows)))">
|
2025-10-22 10:30:40 +01:00
|
|
|
<DefineConstants>$(DefineConstants);WINDOWS</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
2025-10-28 12:18:05 +00:00
|
|
|
<PropertyGroup Condition="$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))">
|
|
|
|
|
<DefineConstants>$(DefineConstants);LINUX</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
2017-05-19 08:46:27 +01:00
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\src\SharpCompress\SharpCompress.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2025-04-28 16:18:01 +01:00
|
|
|
<PackageReference Include="AwesomeAssertions" />
|
2024-04-23 09:37:25 +01:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" />
|
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" />
|
2026-01-16 08:58:26 +00:00
|
|
|
<PackageReference Include="xunit.v3" />
|
2021-10-02 15:25:43 +01:00
|
|
|
</ItemGroup>
|
2019-09-11 20:06:50 +02:00
|
|
|
</Project>
|