2022-01-08 17:39:23 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2023-10-20 19:11:08 +00:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2022-01-08 17:39:23 +00:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2022-10-07 21:09:08 +00:00
|
|
|
<PropertyGroup>
|
|
|
|
<NoWarn>CS8600,CS8601,CS8618,CS8604</NoWarn>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2022-01-08 17:39:23 +00:00
|
|
|
<ItemGroup>
|
2022-11-12 05:26:51 +00:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.3" />
|
2022-01-20 21:30:13 +00:00
|
|
|
<PackageReference Include="SteamKit2" Version="2.4.1" />
|
2022-01-08 17:39:23 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-01-10 01:05:47 +00:00
|
|
|
<ProjectReference Include="..\Wabbajack.Common\Wabbajack.Common.csproj" />
|
2022-01-08 17:39:23 +00:00
|
|
|
<ProjectReference Include="..\Wabbajack.DTOs\Wabbajack.DTOs.csproj" />
|
|
|
|
<ProjectReference Include="..\Wabbajack.Networking.Http.Interfaces\Wabbajack.Networking.Http.Interfaces.csproj" />
|
2022-01-09 05:40:23 +00:00
|
|
|
<ProjectReference Include="..\Wabbajack.Paths.IO\Wabbajack.Paths.IO.csproj" />
|
2022-01-08 17:39:23 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|