Files
SabreTools/SabreTools.FileTypes/SabreTools.FileTypes.csproj

25 lines
981 B
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
2020-12-08 14:53:49 -08:00
<PropertyGroup>
2023-11-15 00:00:59 -05:00
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
2023-12-05 11:33:18 -05:00
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
2024-02-28 19:19:50 -05:00
<!-- <TreatWarningsAsErrors>true</TreatWarningsAsErrors> --> <!-- Can't be enabled because of external code -->
2020-12-08 14:53:49 -08:00
</PropertyGroup>
<ItemGroup>
2023-08-14 21:02:15 -04:00
<ProjectReference Include="..\NaturalSort\NaturalSort.csproj" />
2020-12-08 14:53:49 -08:00
<ProjectReference Include="..\SabreTools.Core\SabreTools.Core.csproj" />
<ProjectReference Include="..\SabreTools.Logging\SabreTools.Logging.csproj" />
<ProjectReference Include="..\SabreTools.Skippers\SabreTools.Skippers.csproj" />
</ItemGroup>
<ItemGroup>
2024-02-28 19:19:50 -05:00
<PackageReference Include="SabreTools.IO" Version="1.3.0" />
<PackageReference Include="SharpCompress" Version="0.34.2" />
2023-11-14 23:59:21 -05:00
<PackageReference Include="System.Text.Encoding.CodePages" Version="8.0.0" />
2024-02-28 19:19:50 -05:00
<PackageReference Include="ZstdSharp.Port" Version="0.7.4" />
2020-12-08 14:53:49 -08:00
</ItemGroup>
</Project>