mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-07-21 08:14:32 +00:00
41 lines
1.6 KiB
XML
41 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<!-- Assembly Properties -->
|
|
<TargetFrameworks>net35;net40;net452;net462;net472;net48;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
|
|
<RuntimeIdentifiers>win-x86;win-x64;win-arm64;linux-x64;linux-arm64;osx-x64;osx-arm64</RuntimeIdentifiers>
|
|
<LangVersion>latest</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<Version>1.2.0</Version>
|
|
|
|
<!-- Package Properties -->
|
|
<Authors>Matt Nadareski</Authors>
|
|
<Description>Common models used by other SabreTools projects</Description>
|
|
<Copyright>Copyright (c) Matt Nadareski 2022-2023</Copyright>
|
|
<PackageProjectUrl>https://github.com/SabreTools/</PackageProjectUrl>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<RepositoryUrl>https://github.com/SabreTools/SabreTools.Models</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<PackageTags>model models executable protection archive</PackageTags>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="README.md" Pack="true" PackagePath="" />
|
|
</ItemGroup>
|
|
|
|
<!-- Support for old .NET versions -->
|
|
<ItemGroup Condition="$(TargetFramework.StartsWith(`net3`))">
|
|
<PackageReference Include="ValueTupleBridge" Version="0.1.5" />
|
|
</ItemGroup>
|
|
<ItemGroup Condition="$(TargetFramework.StartsWith(`net4`))">
|
|
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|