-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServiceBusToolset.Application.csproj
More file actions
45 lines (39 loc) · 2.1 KB
/
ServiceBusToolset.Application.csproj
File metadata and controls
45 lines (39 loc) · 2.1 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
33
34
35
36
37
38
39
40
41
42
43
44
45
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- NuGet Package Metadata -->
<PackageId>ServiceBusToolset.Application</PackageId>
<Authors>Gagik Kyurkchyan</Authors>
<Description>Application layer for Azure Service Bus diagnostics: dead letter queue analysis, Application Insights correlation, and message inspection.</Description>
<PackageTags>azure;service-bus;dead-letter-queue;diagnostics;application-insights</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/kyurkchyan/ServiceBusToolset</PackageProjectUrl>
<RepositoryUrl>https://github.com/kyurkchyan/ServiceBusToolset.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>README.md</PackageReadmeFile>
<!-- Version - Overridden by CI/CD -->
<Version>1.0.0</Version>
<!-- Source Link -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Mediator.Abstractions"/>
<PackageReference Include="Mediator.SourceGenerator">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Ardalis.Result"/>
<PackageReference Include="Azure.Identity"/>
<PackageReference Include="Azure.Messaging.ServiceBus"/>
<PackageReference Include="Azure.Monitor.Query"/>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions"/>
<PackageReference Include="System.Reactive"/>
<PackageReference Include="DynamicData"/>
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All"/>
</ItemGroup>
</Project>