2023-03-10 13:48:24 -05:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2023-03-10 11:55:19 -05:00
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2023-09-13 11:21:06 -04:00
|
|
|
|
<!-- Assembly Properties -->
|
2023-09-13 13:17:08 -04:00
|
|
|
|
<TargetFrameworks>net48;net6.0;net7.0</TargetFrameworks>
|
2023-03-10 11:55:19 -05:00
|
|
|
|
<RuntimeIdentifiers>win-x86;win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
|
2023-09-13 11:21:06 -04:00
|
|
|
|
<Version>2.8</Version>
|
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Package Properties -->
|
2023-03-10 11:55:19 -05:00
|
|
|
|
<Authors>Matt Nadareski</Authors>
|
|
|
|
|
|
<Product>BurnOutSharp</Product>
|
2023-09-13 11:21:06 -04:00
|
|
|
|
<Copyright>Copyright (c)2022-2023 Matt Nadareski</Copyright>
|
|
|
|
|
|
<PackageProjectUrl>https://github.com/SabreTools/</PackageProjectUrl>
|
2023-03-10 11:55:19 -05:00
|
|
|
|
<RepositoryUrl>https://github.com/mnadareski/BurnOutSharp</RepositoryUrl>
|
2023-09-13 11:21:06 -04:00
|
|
|
|
<RepositoryType>git</RepositoryType>
|
|
|
|
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
2023-03-10 11:55:19 -05:00
|
|
|
|
<IncludeSource>true</IncludeSource>
|
|
|
|
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2023-09-17 00:18:04 -04:00
|
|
|
|
<PropertyGroup Condition="'$(TargetFramework)'!='net48'">
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2023-03-10 13:48:24 -05:00
|
|
|
|
<ItemGroup>
|
2023-03-13 16:41:53 -04:00
|
|
|
|
<ProjectReference Include="..\BinaryObjectScanner.Compression\BinaryObjectScanner.Compression.csproj" />
|
2023-03-21 10:42:14 -04:00
|
|
|
|
<ProjectReference Include="..\BinaryObjectScanner.GameEngine\BinaryObjectScanner.GameEngine.csproj" />
|
2023-03-10 13:48:24 -05:00
|
|
|
|
<ProjectReference Include="..\BinaryObjectScanner.Interfaces\BinaryObjectScanner.Interfaces.csproj" />
|
2023-03-15 15:51:38 -04:00
|
|
|
|
<ProjectReference Include="..\BinaryObjectScanner.Packer\BinaryObjectScanner.Packer.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\BinaryObjectScanner.Protection\BinaryObjectScanner.Protection.csproj" />
|
2023-03-10 13:48:24 -05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="OpenMcdf" Version="2.2.1.12" />
|
2023-09-16 22:08:18 -04:00
|
|
|
|
<PackageReference Include="SabreTools.Matching" Version="1.1.0" />
|
2023-03-10 13:48:24 -05:00
|
|
|
|
<PackageReference Include="SharpCompress" Version="0.32.2" />
|
|
|
|
|
|
<PackageReference Include="UnshieldSharp" Version="1.6.9" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2023-03-10 11:55:19 -05:00
|
|
|
|
</Project>
|