Files
BinaryObjectScanner/Test/Test.csproj

51 lines
2.5 KiB
XML
Raw Normal View History

2024-10-03 12:01:08 -04:00
<Project Sdk="Microsoft.NET.Sdk">
2020-09-10 21:59:50 -07:00
<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>
<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>
2024-06-26 11:32:20 -04:00
<!-- Support All Frameworks -->
<PropertyGroup Condition="$(TargetFramework.StartsWith(`net2`)) OR $(TargetFramework.StartsWith(`net3`)) OR $(TargetFramework.StartsWith(`net4`))">
<RuntimeIdentifiers>win-x86;win-x64</RuntimeIdentifiers>
</PropertyGroup>
<PropertyGroup Condition="$(TargetFramework.StartsWith(`netcoreapp`)) OR $(TargetFramework.StartsWith(`net5`))">
<RuntimeIdentifiers>win-x86;win-x64;win-arm64;linux-x64;linux-arm64;osx-x64</RuntimeIdentifiers>
</PropertyGroup>
<PropertyGroup Condition="$(TargetFramework.StartsWith(`net6`)) OR $(TargetFramework.StartsWith(`net7`)) OR $(TargetFramework.StartsWith(`net8`))">
<RuntimeIdentifiers>win-x86;win-x64;win-arm64;linux-x64;linux-arm64;osx-x64;osx-arm64</RuntimeIdentifiers>
</PropertyGroup>
<PropertyGroup Condition="$(RuntimeIdentifier.StartsWith(`osx-arm`))">
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
</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-10-03 12:01:08 -04:00
<PackageReference Include="SabreTools.Compression" Version="0.5.2" />
2024-10-24 17:32:26 -04:00
<PackageReference Include="SabreTools.IO" Version="1.4.13" />
2024-10-03 12:01:08 -04:00
<PackageReference Include="SabreTools.Matching" Version="1.3.2" />
<PackageReference Include="SabreTools.Models" Version="1.4.10" />
<PackageReference Include="SabreTools.Serialization" Version="1.6.8" />
<PackageReference Include="UnshieldSharp" Version="1.8.4" />
</ItemGroup>
</Project>