2021-09-27 12:42:46 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2022-11-05 13:25:53 +00:00
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
2021-09-27 12:42:46 +00:00
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
|
|
|
|
<Version>$(VERSION)</Version>
|
|
|
|
</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>
|
2022-11-05 13:25:53 +00:00
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="7.0.0-rc.2.22472.3" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="7.0.0-rc.2.22472.3" />
|
2021-09-27 12:42:46 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-11-08 23:17:33 +00:00
|
|
|
<ProjectReference Include="..\Wabbajack.DTOs\Wabbajack.DTOs.csproj" />
|
|
|
|
<ProjectReference Include="..\Wabbajack.Networking.Http.Interfaces\Wabbajack.Networking.Http.Interfaces.csproj" />
|
|
|
|
<ProjectReference Include="..\Wabbajack.Networking.Http\Wabbajack.Networking.Http.csproj" />
|
|
|
|
<ProjectReference Include="..\Wabbajack.Networking.WabbajackClientApi\Wabbajack.Networking.WabbajackClientApi.csproj" />
|
2021-09-27 12:42:46 +00:00
|
|
|
</ItemGroup>
|
|
|
|
</Project>
|