SubscriptionClient carried over.
All checks were successful
Pack and Push NuGet Package / publish (push) Successful in 43s

This commit is contained in:
2025-07-05 04:38:31 +02:00
commit 9b5a0d7ea5
13 changed files with 854 additions and 0 deletions

View File

@ -0,0 +1,27 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>$(AssemblyName)</Title>
<AssemblyVersion>$([System.DateTime]::UtcNow.ToString("yyyy.MM.dd.HHmm"))</AssemblyVersion>
<PackageVersion>$([System.DateTime]::UtcNow.ToString("yyyy.MM.dd.HHmm"))</PackageVersion>
<BaseOutputPath>..\out\</BaseOutputPath>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<Title>$(AssemblyName)</Title>
<PackageProjectUrl>https://gitea.masita.net/mc/messengerapi.SubscriptionClient</PackageProjectUrl>
<RepositoryUrl>https://gitea.masita.net/mc/messengerapi.SubscriptionClient</RepositoryUrl>
<PackageTags>logging;log;logger</PackageTags>
<PackageLicenseExpression>mit-0</PackageLicenseExpression>
<Description>Allows subscription-based consumption of MessengerApi. Simply subscribe to pattern in PayloadType property of the message and SubscriptionClient will let you know when a message arrives.</Description>
<Copyright>mc @ 2024</Copyright>
<Authors>mc</Authors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MessengerApi.Client" />
<PackageReference Include="portaloggy" />
</ItemGroup>
</Project>