wabbajack/Wabbajack.Common/Wabbajack.Common.csproj

45 lines
1.5 KiB
XML
Raw Normal View History

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>
<TargetFramework>net6.0</TargetFramework>
<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>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.3" />
2021-11-08 23:17:33 +00:00
<PackageReference Include="System.Reactive" Version="5.0.0" />
2021-09-27 12:42:46 +00:00
</ItemGroup>
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">
<DefineConstants>_WINDOWS</DefineConstants>
</PropertyGroup>
</Project>