mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-09-12 21:57:19 -04:00
Seven references across six projects, all now on published versions. What the app gains is from Dinah.Core: OsSecretStore.Create bounds how long it waits for the backend, so a Linux or macOS start with a keyring that never answers falls through to the portable master key path instead of hanging there. IdentityTokenStorageWiring.ResolveSecretStore is the caller, and it runs at startup whenever no key file or env var is set. AudibleApi 11.0.3.1 carries no code change for us - it is the release where its nuspec finally declares the Dinah.Core floor its own code needs. Dinah.Core.WindowsDesktop and Dinah.EntityFrameworkCore move to 10.2.4.1 as well, keeping every Dinah package on one version. Co-authored-by: rmcrackan <rmcrackan@gmail.com>
22 lines
575 B
XML
22 lines
575 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Dinah.Core" Version="10.2.4.1" />
|
|
<PackageReference Include="Polly" Version="8.6.6" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<DebugType>embedded</DebugType>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<DebugType>embedded</DebugType>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|