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-08 03:43:44 +00:00
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<NoWarn>CS8600,CS8601,CS8618,CS8604,CS1998</NoWarn>
|
|
|
|
</PropertyGroup>
|
2021-09-27 12:42:46 +00:00
|
|
|
|
|
|
|
<ItemGroup>
|
2023-11-15 03:09:50 +00:00
|
|
|
<PackageReference Include="DeviceId" Version="6.5.0" />
|
2024-06-07 03:41:52 +00:00
|
|
|
<PackageReference Include="GitInfo" Version="3.3.5">
|
2021-10-23 16:51:17 +00:00
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
2024-06-06 14:18:56 +00:00
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.1" />
|
2021-09-27 12:42:46 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-11-08 23:17:33 +00:00
|
|
|
<ProjectReference Include="..\Wabbajack.Compiler\Wabbajack.Compiler.csproj" />
|
|
|
|
<ProjectReference Include="..\Wabbajack.Downloaders.Dispatcher\Wabbajack.Downloaders.Dispatcher.csproj" />
|
|
|
|
<ProjectReference Include="..\Wabbajack.Installer\Wabbajack.Installer.csproj" />
|
2022-02-10 23:57:44 +00:00
|
|
|
<ProjectReference Include="..\Wabbajack.Networking.BethesdaNet\Wabbajack.Networking.BethesdaNet.csproj" />
|
2021-11-08 23:17:33 +00:00
|
|
|
<ProjectReference Include="..\Wabbajack.Networking.Discord\Wabbajack.Networking.Discord.csproj" />
|
2022-01-08 17:39:23 +00:00
|
|
|
<ProjectReference Include="..\Wabbajack.Networking.Steam\Wabbajack.Networking.Steam.csproj" />
|
2021-11-08 23:17:33 +00:00
|
|
|
<ProjectReference Include="..\Wabbajack.VFS\Wabbajack.VFS.csproj" />
|
2021-09-27 12:42:46 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|