2019-12-26 16:47:10 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2021-09-27 12:42:46 +00:00
|
|
|
|
2019-12-26 16:47:10 +00:00
|
|
|
<PropertyGroup>
|
2023-10-20 19:11:08 +00:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2020-04-03 23:23:13 +00:00
|
|
|
<Nullable>enable</Nullable>
|
2021-09-27 12:42:46 +00:00
|
|
|
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
|
|
|
|
<Version>$(VERSION)</Version>
|
2019-12-26 16:47:10 +00:00
|
|
|
</PropertyGroup>
|
2021-09-27 12:42:46 +00:00
|
|
|
|
2022-10-07 20:41:45 +00:00
|
|
|
<PropertyGroup>
|
|
|
|
<NoWarn>CS8600,CS8601,CS8618,CS8604</NoWarn>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2019-12-26 16:47:10 +00:00
|
|
|
<ItemGroup>
|
2021-11-08 23:17:33 +00:00
|
|
|
<ProjectReference Include="..\Wabbajack.DTOs\Wabbajack.DTOs.csproj" />
|
|
|
|
<ProjectReference Include="..\Wabbajack.Networking.Http\Wabbajack.Networking.Http.csproj" />
|
|
|
|
<ProjectReference Include="..\Wabbajack.Paths.IO\Wabbajack.Paths.IO.csproj" />
|
2019-12-26 16:47:10 +00:00
|
|
|
</ItemGroup>
|
2021-09-27 12:42:46 +00:00
|
|
|
|
2019-12-26 16:47:10 +00:00
|
|
|
<ItemGroup>
|
2021-10-23 16:51:17 +00:00
|
|
|
<None Update="FileSignatures\Signatures.tt">
|
|
|
|
<Generator>TextTemplatingFileGenerator</Generator>
|
|
|
|
<LastGenOutput>Signatures.cs</LastGenOutput>
|
|
|
|
</None>
|
2019-12-26 16:47:10 +00:00
|
|
|
</ItemGroup>
|
2021-09-27 12:42:46 +00:00
|
|
|
|
2020-03-20 23:59:55 +00:00
|
|
|
<ItemGroup>
|
2021-10-23 16:51:17 +00:00
|
|
|
<Compile Update="FileSignatures\Signatures.cs">
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
<DependentUpon>Signatures.tt</DependentUpon>
|
|
|
|
</Compile>
|
2020-03-20 23:59:55 +00:00
|
|
|
</ItemGroup>
|
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" />
|
2023-10-12 18:33:06 +00:00
|
|
|
<PackageReference Include="System.Reactive" Version="6.0.1-preview.1" />
|
2021-09-27 12:42:46 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">
|
|
|
|
<DefineConstants>_WINDOWS</DefineConstants>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
</Project>
|