-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathArtemisNetClient.Extensions.DependencyInjection.csproj
More file actions
32 lines (27 loc) · 1.46 KB
/
Copy pathArtemisNetClient.Extensions.DependencyInjection.csproj
File metadata and controls
32 lines (27 loc) · 1.46 KB
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>
<Summary>Microsoft.Extensions.DependencyInjection support for ActiveMQ Artemis .NET Client</Summary>
<Description>Microsoft.Extensions.DependencyInjection support for ActiveMQ Artemis .NET Client.</Description>
<PackageProjectUrl>https://havret.github.io/dotnet-activemq-artemis-client/</PackageProjectUrl>
<PackageId>ArtemisNetClient.Extensions.DependencyInjection</PackageId>
<PackageLicenseUrl>https://github.com/Havret/activemq-artemis-extensions/blob/master/LICENSE</PackageLicenseUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/Havret/activemq-artemis-extensions</RepositoryUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Authors>Havret</Authors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<RootNamespace>ActiveMQ.Artemis.Client.Extensions.DependencyInjection</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0"/>
<PackageReference Include="Microsoft.Extensions.Options" Version="8.0.0"/>
</ItemGroup>
<ItemGroup>
<None Remove="ArtemisNetClient.Extensions.DependencyInjection.csproj.DotSettings"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ArtemisNetClient\ArtemisNetClient.csproj"/>
</ItemGroup>
</Project>