Files
BinaryObjectScanner/Test/Test.csproj

38 lines
1.7 KiB
XML
Raw Permalink Normal View History

2020-09-10 21:59:50 -07:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2023-11-22 12:22:01 -05:00
<TargetFrameworks>net20;net35;net40;net452;net462;net472;net48;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
2024-02-20 22:48:12 -05:00
<RuntimeIdentifiers>win-x86;win-x64;win-arm64;linux-x64;linux-arm64;osx-x64</RuntimeIdentifiers>
<OutputType>Exe</OutputType>
2023-11-21 10:59:29 -05:00
<CheckEolTargetFramework>false</CheckEolTargetFramework>
2024-02-21 00:04:16 -05:00
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
2023-11-21 10:17:25 -05:00
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
2023-11-14 23:48:35 -05:00
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
2023-11-21 10:17:25 -05:00
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
2020-09-10 21:59:50 -07:00
2024-02-20 18:45:37 -05:00
<!-- Set a build flag for Windows specifically -->
<PropertyGroup Condition="'$(RuntimeIdentifier)'=='win-x86'">
<DefineConstants>$(DefineConstants);WIN</DefineConstants>
2024-02-20 18:45:37 -05:00
</PropertyGroup>
<ItemGroup>
2023-09-17 23:58:42 -04:00
<ProjectReference Include="..\BinaryObjectScanner\BinaryObjectScanner.csproj" />
</ItemGroup>
2020-09-10 21:59:50 -07:00
2023-11-22 12:22:01 -05:00
<!-- Support for old .NET versions -->
<ItemGroup Condition="!$(TargetFramework.StartsWith(`net2`)) AND !$(TargetFramework.StartsWith(`net3`))">
2024-03-06 11:08:22 -05:00
<PackageReference Include="OpenMcdf" Version="2.3.1" />
2023-11-22 12:22:01 -05:00
</ItemGroup>
<ItemGroup>
2024-04-26 22:09:05 -04:00
<PackageReference Include="SabreTools.Compression" Version="0.5.1" />
2024-05-15 12:24:40 -04:00
<PackageReference Include="SabreTools.IO" Version="1.4.11" />
2024-03-06 11:08:22 -05:00
<PackageReference Include="SabreTools.Matching" Version="1.3.1" />
2024-05-15 15:16:41 -04:00
<PackageReference Include="SabreTools.Models" Version="1.4.8" />
2024-06-13 11:20:33 -04:00
<PackageReference Include="SabreTools.Serialization" Version="1.6.7" />
2024-05-18 22:05:32 -04:00
<PackageReference Include="UnshieldSharp" Version="1.8.3" />
</ItemGroup>
</Project>