Files
BinaryObjectScanner/BinaryObjectScanner.Printing/BinaryObjectScanner.Printing.csproj

32 lines
1.1 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
2023-09-13 11:21:06 -04:00
<PropertyGroup>
<!-- Assembly Properties -->
<TargetFrameworks>net48;net6.0;net7.0</TargetFrameworks>
2023-09-13 11:21:06 -04:00
<RuntimeIdentifiers>win-x86;win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
<Version>2.8</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<!-- Package Properties -->
<Authors>Matt Nadareski</Authors>
<Product>BurnOutSharp</Product>
<Copyright>Copyright (c)2022-2023 Matt Nadareski</Copyright>
<PackageProjectUrl>https://github.com/SabreTools/</PackageProjectUrl>
<RepositoryUrl>https://github.com/mnadareski/BurnOutSharp</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<IncludeSource>true</IncludeSource>
<IncludeSymbols>true</IncludeSymbols>
</PropertyGroup>
2023-09-13 11:21:06 -04:00
<PropertyGroup Condition="'$(TargetFramework)'!='net48'">
<Nullable>enable</Nullable>
</PropertyGroup>
2023-09-13 11:21:06 -04:00
<ItemGroup>
<PackageReference Include="SabreTools.Models" Version="1.1.1" />
2023-09-15 00:21:12 -04:00
<PackageReference Include="SabreTools.Serialization" Version="1.1.1" />
2023-09-13 11:21:06 -04:00
</ItemGroup>
2023-09-13 11:21:06 -04:00
</Project>