Files
BinaryObjectScanner/BinaryObjectScanner.Utilities/BinaryObjectScanner.Utilities.csproj

28 lines
1006 B
XML
Raw Normal View History

2022-12-15 00:13:24 -08:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2023-09-13 11:21:06 -04:00
<!-- Assembly Properties -->
<TargetFrameworks>net48;net6.0;net7.0</TargetFrameworks>
<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 -->
2022-12-15 00:13:24 -08: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>
2022-12-15 00:13:24 -08:00
<RepositoryUrl>https://github.com/mnadareski/BurnOutSharp</RepositoryUrl>
2023-09-13 11:21:06 -04:00
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
2022-12-15 00:13:24 -08:00
<IncludeSource>true</IncludeSource>
<IncludeSymbols>true</IncludeSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SabreTools.IO" Version="1.1.1" />
2023-09-16 22:08:18 -04:00
<PackageReference Include="SabreTools.Matching" Version="1.1.0" />
</ItemGroup>
2022-12-15 00:13:24 -08:00
</Project>