2021-09-27 12:42:46 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2023-10-20 19:11:08 +00:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2021-09-27 12:42:46 +00:00
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<Version>$(VERSION)</Version>
|
|
|
|
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
|
|
|
|
</PropertyGroup>
|
2022-10-07 22:57:12 +00:00
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<NoWarn>CS8600,CS8601,CS8618,CS8604</NoWarn>
|
|
|
|
</PropertyGroup>
|
2021-09-27 12:42:46 +00:00
|
|
|
|
|
|
|
<ItemGroup>
|
2023-11-15 03:09:50 +00:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" />
|
2024-05-25 15:38:31 +00:00
|
|
|
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.118" PrivateAssets="None" />
|
2021-09-27 12:42:46 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-11-05 02:28:42 +00:00
|
|
|
<ProjectReference Include="..\Wabbajack.Common\Wabbajack.Common.csproj" />
|
|
|
|
<ProjectReference Include="..\Wabbajack.FileExtractor\Wabbajack.FileExtractor.csproj" />
|
|
|
|
<ProjectReference Include="..\Wabbajack.Hashing.PHash\Wabbajack.Hashing.PHash.csproj" />
|
|
|
|
<ProjectReference Include="..\Wabbajack.Hashing.xxHash64\Wabbajack.Hashing.xxHash64.csproj" />
|
|
|
|
<ProjectReference Include="..\Wabbajack.Paths.IO\Wabbajack.Paths.IO.csproj" />
|
|
|
|
<ProjectReference Include="..\Wabbajack.Paths\Wabbajack.Paths.csproj" />
|
2022-06-22 01:38:42 +00:00
|
|
|
<ProjectReference Include="..\Wabbajack.VFS.Interfaces\Wabbajack.VFS.Interfaces.csproj" />
|
2021-09-27 12:42:46 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|