mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-09-13 06:07:30 -04:00
The last reference still on 11.0.0.1. 11.0.2.1 is the release whose nuspec declares the Dinah.Core floor its code actually needs, so the package now agrees with what this repo resolves anyway. Co-authored-by: rmcrackan <rmcrackan@gmail.com>
35 lines
1.0 KiB
XML
35 lines
1.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AudibleApi" Version="11.0.2.1" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.7" />
|
|
<PackageReference Include="NameParserSharp" Version="1.5.0" />
|
|
<PackageReference Include="Serilog.Exceptions" Version="8.4.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\AaxDecrypter\AaxDecrypter.csproj" />
|
|
<ProjectReference Include="..\FileManager\FileManager.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="Configuration.*.cs">
|
|
<DependentUpon>Configuration.cs</DependentUpon>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<DebugType>embedded</DebugType>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<DebugType>embedded</DebugType>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|