mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-02-11 21:30:33 +00:00
36 lines
1.3 KiB
XML
36 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<!-- Assembly Properties -->
|
|
<TargetFrameworks>net48;net6.0;net7.0;net8.0</TargetFrameworks>
|
|
<RuntimeIdentifiers>win-x86;win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
|
|
<Version>1.1.2</Version>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
<!-- Package Properties -->
|
|
<Authors>Matt Nadareski</Authors>
|
|
<Description>Serialization and deserialization helpers for various types</Description>
|
|
<Copyright>Copyright (c) Matt Nadareski 2019-2023</Copyright>
|
|
<PackageProjectUrl>https://github.com/SabreTools/</PackageProjectUrl>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<RepositoryUrl>https://github.com/SabreTools/SabreTools.Serialization</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<PackageTags>serialize serialization deserialize deserialization file stream</PackageTags>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(TargetFramework)'!='net48'">
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="README.md" Pack="true" PackagePath=""/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="SabreTools.IO" Version="1.1.1" />
|
|
<PackageReference Include="SabreTools.Models" Version="1.1.2" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|