74211f0a4a
- Add PackageId, Authors, Description, PackageTags, RepositoryUrl - Matches metadata pattern from HrynCo.Common and HrynCo.RabbitMq Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
20 lines
694 B
XML
20 lines
694 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<PackageId>HrynCo.NotificationService.Contracts</PackageId>
|
|
<Authors>HrynCo</Authors>
|
|
<Description>RabbitMQ message contracts for HrynCo.NotificationService.</Description>
|
|
<PackageTags>hrynco notification email rabbitmq contracts</PackageTags>
|
|
<RepositoryType>git</RepositoryType>
|
|
<RepositoryUrl>https://gitea.grynco.com.ua/hrynco/hrynco-notification-service.git</RepositoryUrl>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="HrynCo.RabbitMq" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|