mirror of
https://github.com/rmcrackan/Libation.git
synced 2025-12-23 22:17:52 -05:00
- Update all project runtime targets - Update all dependencies - NOTE: Using Npgsql.EntityFrameworkCore.PostgreSQL RTM build from MyGet - Delete unused pubxml files (they were made redundant by recent workflow changes) - Replace Libation.sln with Libation.slnx
21 lines
546 B
XML
21 lines
546 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Dinah.Core" Version="10.0.0.1" />
|
|
<PackageReference Include="Polly" Version="8.6.4" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<DebugType>embedded</DebugType>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<DebugType>embedded</DebugType>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|