2017-05-19 08:46:27 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
<PropertyGroup>
|
2025-11-29 11:03:48 +00:00
|
|
|
|
<TargetFrameworks>net10.0;net48</TargetFrameworks>
|
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>
|
2025-11-29 11:03:48 +00:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net10.0|AnyCPU'">
|
2025-07-20 17:35:22 +01:00
|
|
|
|
<DefineConstants>$(DefineConstants);DEBUG_STREAMS</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" />
|
|
|
|
|
|
<PackageReference Include="xunit" />
|
2021-10-02 15:25:43 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup Condition=" '$(VersionlessImplicitFrameworkDefine)' != 'NETFRAMEWORK' ">
|
2024-04-23 09:37:25 +01:00
|
|
|
|
<PackageReference Include="Mono.Posix.NETStandard" />
|
2017-05-19 08:46:27 +01:00
|
|
|
|
</ItemGroup>
|
2019-09-11 20:06:50 +02:00
|
|
|
|
</Project>
|