Files
SabreTools.Models/SabreTools.Models.csproj

41 lines
1.6 KiB
XML
Raw Permalink Normal View History

2023-09-04 00:06:52 -04:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2023-09-04 16:23:52 -04:00
<!-- Assembly Properties -->
2023-11-20 23:44:05 -05:00
<TargetFrameworks>net20;net35;net40;net452;net462;net472;net48;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
2023-11-07 20:47:31 -05:00
<RuntimeIdentifiers>win-x86;win-x64;win-arm64;linux-x64;linux-arm64;osx-x64;osx-arm64</RuntimeIdentifiers>
2023-11-07 20:48:49 -05:00
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
2023-11-07 21:52:01 -05:00
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
2023-11-21 11:15:24 -05:00
<Version>1.3.0</Version>
2023-09-04 16:23:52 -04:00
<!-- Package Properties -->
2023-09-04 16:18:07 -04:00
<Authors>Matt Nadareski</Authors>
<Description>Common models used by other SabreTools projects</Description>
2024-02-27 17:18:02 -05:00
<Copyright>Copyright (c) Matt Nadareski 2022-2024</Copyright>
2023-09-04 16:18:07 -04:00
<PackageProjectUrl>https://github.com/SabreTools/</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/SabreTools/SabreTools.Models</RepositoryUrl>
2023-09-04 16:18:07 -04:00
<RepositoryType>git</RepositoryType>
<PackageTags>model models executable protection archive</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
2023-09-04 00:27:25 -04:00
</PropertyGroup>
<ItemGroup>
2023-11-15 14:30:25 -05:00
<None Include="README.md" Pack="true" PackagePath="" />
</ItemGroup>
2023-11-07 21:18:17 -05:00
<!-- Support for old .NET versions -->
2023-11-20 23:44:05 -05:00
<ItemGroup Condition="$(TargetFramework.StartsWith(`net2`)) OR $(TargetFramework.StartsWith(`net3`))">
<PackageReference Include="MinValueTupleBridge" Version="0.2.0" />
2023-11-20 21:10:43 -05:00
</ItemGroup>
2023-11-07 21:18:17 -05:00
<ItemGroup Condition="$(TargetFramework.StartsWith(`net4`))">
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
</ItemGroup>
2023-09-04 00:06:52 -04:00
<ItemGroup>
2023-09-04 16:37:54 -04:00
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
2023-09-04 00:06:52 -04:00
</ItemGroup>
</Project>