mirror of
https://github.com/MAKS-IT-COM/maksit-hamode.git
synced 2026-08-15 11:08:10 +02:00
51 lines
2.5 KiB
XML
51 lines
2.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<NoWarn>$(NoWarn);CS1591</NoWarn>
|
|
|
|
<PackageId>MaksIT.HAMode</PackageId>
|
|
<Version>1.0.7</Version>
|
|
<Authors>Maksym Sadovnychyy</Authors>
|
|
<Company>MAKS-IT</Company>
|
|
<Product>MaksIT.HAMode</Product>
|
|
<Copyright>Copyright © Maksym Sadovnychyy (MAKS-IT)</Copyright>
|
|
<Description>Unified HA runtime coordination package for MaksIT services: abstractions and PostgreSQL, Redis, and etcd lease implementations.</Description>
|
|
<PackageTags>dotnet;ha;high-availability;runtime;lease;coordination;postgresql;redis;etcd;kubernetes</PackageTags>
|
|
<PackageProjectUrl>https://github.com/MAKS-IT-COM/maksit-hamode</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/MAKS-IT-COM/maksit-hamode</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
|
|
<PackageReleaseNotes>See CHANGELOG.md in the package and repository releases.</PackageReleaseNotes>
|
|
<RequireLicenseAcceptance>false</RequireLicenseAcceptance>
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
<Deterministic>true</Deterministic>
|
|
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="dotnet-etcd" Version="9.1.0" />
|
|
<PackageReference Include="Google.Protobuf" Version="3.35.1" />
|
|
<PackageReference Include="MaksIT.Core" Version="1.6.9" />
|
|
<PackageReference Include="MaksIT.Results" Version="2.0.4" />
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.11" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.11" />
|
|
<PackageReference Include="Npgsql" Version="10.0.3" />
|
|
<PackageReference Include="StackExchange.Redis" Version="3.1.13" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="..\..\LICENSE.md" Pack="true" PackagePath="\" Link="LICENSE.md" />
|
|
<None Include="..\..\README.md" Pack="true" PackagePath="\" Link="README.md" />
|
|
<None Include="..\..\CHANGELOG.md" Pack="true" PackagePath="\" Link="CHANGELOG.md" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|