-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathInfra.Messaging.csproj
32 lines (27 loc) · 1.43 KB
/
Infra.Messaging.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<RootNamespace>Easy.Messaging</RootNamespace>
<PackageId>Easy.Messaging</PackageId>
<Version>1.0.1</Version>
<Title>Easy.Messaging</Title>
<Description>Infrastructure package for distrbuted application that contains helpers for interacting with RabbitMq and Kafka message-brokers</Description>
<Authors>Mostafa Biomee</Authors>
<PackageProjectUrl>https://github.com/mbiomee/Easy.Messaging/tree/master</PackageProjectUrl>
<RepositoryUrl>https://github.com/mbiomee/Easy.Messaging</RepositoryUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<CodeAnalysisRuleSet>.sonarlint\easy_messagingcsharp.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<AdditionalFiles Include=".sonarlint\easy_messaging\CSharp\SonarLint.xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.1.5" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="3.1.5" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="RabbitMQ.Client" Version="6.1.0" />
<PackageReference Include="Polly" Version="7.2.1" />
<PackageReference Include="Serilog" Version="2.9.0" />
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
</ItemGroup>
</Project>