Files
BinaryObjectScanner/BinaryObjectScanner.FileType/BinaryObjectScanner.FileType.csproj

39 lines
1.8 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
2023-03-10 11:55:19 -05:00
<PropertyGroup>
2023-09-13 11:21:06 -04:00
<!-- Assembly Properties -->
<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>
<ItemGroup>
<ProjectReference Include="..\BinaryObjectScanner.Compression\BinaryObjectScanner.Compression.csproj" />
2023-03-21 10:42:14 -04:00
<ProjectReference Include="..\BinaryObjectScanner.GameEngine\BinaryObjectScanner.GameEngine.csproj" />
<ProjectReference Include="..\BinaryObjectScanner.Interfaces\BinaryObjectScanner.Interfaces.csproj" />
2023-03-13 16:06:45 -04:00
<ProjectReference Include="..\BinaryObjectScanner.Matching\BinaryObjectScanner.Matching.csproj" />
2023-03-15 15:51:38 -04:00
<ProjectReference Include="..\BinaryObjectScanner.Packer\BinaryObjectScanner.Packer.csproj" />
<ProjectReference Include="..\BinaryObjectScanner.Protection\BinaryObjectScanner.Protection.csproj" />
<ProjectReference Include="..\BinaryObjectScanner.Wrappers\BinaryObjectScanner.Wrappers.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="OpenMcdf" Version="2.2.1.12" />
<PackageReference Include="SharpCompress" Version="0.32.2" />
<PackageReference Include="UnshieldSharp" Version="1.6.9" />
</ItemGroup>
2023-03-10 11:55:19 -05:00
</Project>