Files
SabreTools/SabreTools.Core/SabreTools.Core.csproj

63 lines
2.6 KiB
XML
Raw Normal View History

2024-10-19 11:43:11 -04:00
<Project Sdk="Microsoft.NET.Sdk">
2020-12-08 13:23:59 -08:00
<PropertyGroup>
2024-02-28 20:16:43 -05:00
<!-- Assembly Properties -->
2024-02-28 19:49:09 -05:00
<TargetFrameworks>net20;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</RuntimeIdentifiers>
<CheckEolTargetFramework>false</CheckEolTargetFramework>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
2023-12-05 11:33:18 -05:00
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
2024-02-28 19:49:09 -05:00
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
2023-12-05 11:33:18 -05:00
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
2024-02-28 19:49:09 -05:00
<Version>1.1.2</Version>
<!-- Package Properties -->
<Authors>Matt Nadareski</Authors>
2024-02-28 20:16:43 -05:00
<Copyright>Copyright (c)2016-2024 Matt Nadareski</Copyright>
2024-02-28 19:49:09 -05:00
<PackageProjectUrl>https://github.com/SabreTools/</PackageProjectUrl>
<RepositoryUrl>https://github.com/SabreTools/SabreTools</RepositoryUrl>
<RepositoryType>git</RepositoryType>
2020-12-08 13:23:59 -08:00
</PropertyGroup>
2023-04-20 13:54:59 -04:00
<ItemGroup>
<InternalsVisibleTo Include="SabreTools.Test" />
</ItemGroup>
2024-07-17 16:01:22 -04:00
<ItemGroup>
<ProjectReference Include="..\SabreTools.Logging\SabreTools.Logging.csproj" />
</ItemGroup>
2024-02-28 19:52:25 -05:00
<!-- Support for old .NET versions -->
2024-10-19 11:43:11 -04:00
<ItemGroup Condition="$(TargetFramework.StartsWith(`net2`)) OR $(TargetFramework.StartsWith(`net3`))">
<PackageReference Include="MinValueTupleBridge" Version="0.2.1" />
</ItemGroup>
2024-02-28 19:49:09 -05:00
<ItemGroup Condition="$(TargetFramework.StartsWith(`net2`)) OR $(TargetFramework.StartsWith(`net3`))">
<PackageReference Include="Net30.LinqBridge" Version="1.3.0" />
</ItemGroup>
<ItemGroup Condition="$(TargetFramework.StartsWith(`net2`)) OR $(TargetFramework.StartsWith(`net3`)) OR $(TargetFramework.StartsWith(`net40`))">
<PackageReference Include="MinThreadingBridge" Version="0.11.4" />
<PackageReference Include="MinTasksExtensionsBridge" Version="0.3.4" />
</ItemGroup>
2024-10-19 11:43:11 -04:00
<ItemGroup Condition="$(TargetFramework.StartsWith(`net4`))">
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
</ItemGroup>
2024-02-28 19:49:09 -05:00
<ItemGroup>
2023-09-04 23:51:37 -04:00
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
2024-07-16 00:27:12 -04:00
<PackageReference Include="SabreTools.Hashing" Version="1.2.1" />
2024-10-19 11:43:11 -04:00
<PackageReference Include="SabreTools.Matching" Version="1.3.2" />
<PackageReference Include="SabreTools.Models" Version="1.4.10" />
2020-12-08 13:23:59 -08:00
</ItemGroup>
<ItemGroup>
<None Update="README.1ST">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="README.DEPRECIATED">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>