Files
BinaryObjectScanner/BinaryObjectScanner/BinaryObjectScanner.csproj

45 lines
2.6 KiB
XML
Raw Normal View History

2024-10-03 12:01:08 -04:00
<Project Sdk="Microsoft.NET.Sdk">
2023-09-17 23:28:27 -04:00
2024-11-13 04:26:24 -05:00
<PropertyGroup>
<!-- Assembly Properties -->
2025-09-06 15:38:36 -04:00
<TargetFrameworks>net20;net35;net40;net452;net462;net472;net48;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0;net9.0;netstandard2.0;netstandard2.1</TargetFrameworks>
2024-11-13 04:26:24 -05:00
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<CheckEolTargetFramework>false</CheckEolTargetFramework>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
2024-12-18 09:54:01 -05:00
<IncludeSymbols>true</IncludeSymbols>
2024-11-13 04:26:24 -05:00
<LangVersion>latest</LangVersion>
2024-11-15 23:06:47 -05:00
<NoWarn>CS0162;CS0612</NoWarn>
2024-11-13 04:26:24 -05:00
<Nullable>enable</Nullable>
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
2024-12-18 09:54:01 -05:00
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
2024-11-13 04:26:24 -05:00
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
2024-12-31 13:25:24 -05:00
<Version>3.3.4</Version>
2024-11-13 04:26:24 -05:00
<!-- Mostly added due to external libraries -->
2024-11-15 23:06:47 -05:00
<WarningsNotAsErrors>CS8600;CS8601;CS8602;CS8603;CS8604;CS8605;CS8618;CS8625;CS8634;CS8765;IL3000;NU5100</WarningsNotAsErrors>
2023-09-17 23:35:59 -04:00
2024-11-13 04:26:24 -05:00
<!-- Package Properties -->
<Authors>Matt Nadareski</Authors>
<Description>Protection scanning library</Description>
2024-12-30 21:41:27 -05:00
<Copyright>Copyright (c)2018-2025 Matt Nadareski</Copyright>
2024-11-13 04:26:24 -05:00
<PackageProjectUrl>https://github.com/SabreTools/</PackageProjectUrl>
<RepositoryUrl>https://github.com/SabreTools/BinaryObjectScanner</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>protection copy-protection scanning packer</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
2024-02-20 18:45:37 -05:00
2024-12-01 23:37:27 -05:00
<ItemGroup>
<InternalsVisibleTo Include="BinaryObjectScanner.Test" />
</ItemGroup>
2024-11-13 04:26:24 -05:00
<ItemGroup>
2025-09-02 20:18:01 -04:00
<PackageReference Include="SabreTools.Hashing" Version="1.5.0" />
2025-09-06 08:49:21 -04:00
<PackageReference Include="SabreTools.IO" Version="1.7.2" />
2025-09-02 20:18:01 -04:00
<PackageReference Include="SabreTools.Matching" Version="1.6.0" />
2025-09-06 08:49:21 -04:00
<PackageReference Include="SabreTools.Models" Version="1.7.1" />
2025-09-20 11:00:09 -04:00
<PackageReference Include="SabreTools.Serialization" Version="1.9.2" />
2025-09-02 20:18:01 -04:00
<PackageReference Include="SharpCompress" Version="0.40.0" Condition="!$(TargetFramework.StartsWith(`net2`)) AND !$(TargetFramework.StartsWith(`net3`)) AND !$(TargetFramework.StartsWith(`net40`)) AND !$(TargetFramework.StartsWith(`net452`))" />
2025-09-20 11:00:09 -04:00
<PackageReference Include="System.Text.Encoding.CodePages" Version="9.0.9" Condition="!$(TargetFramework.StartsWith(`net2`)) AND !$(TargetFramework.StartsWith(`net3`)) AND !$(TargetFramework.StartsWith(`net40`)) AND !$(TargetFramework.StartsWith(`net452`))" />
2024-11-13 04:26:24 -05:00
</ItemGroup>
</Project>