-
Notifications
You must be signed in to change notification settings - Fork 205
Expand file tree
/
Copy pathWorker.Extensions.ServiceBus.csproj
More file actions
32 lines (24 loc) · 1.19 KB
/
Worker.Extensions.ServiceBus.csproj
File metadata and controls
32 lines (24 loc) · 1.19 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>
<AssemblyName>Microsoft.Azure.Functions.Worker.Extensions.ServiceBus</AssemblyName>
<RootNamespace>Microsoft.Azure.Functions.Worker.Extensions.ServiceBus</RootNamespace>
<Description>Azure Service Bus extensions for .NET isolated functions</Description>
<!--Version information-->
<VersionPrefix>5.10.0</VersionPrefix>
<VersionSuffix>-preview2</VersionSuffix>
<!--Temporarily opting out of documentation. Pending documentation-->
<GenerateDocumentationFile>false</GenerateDocumentationFile>
</PropertyGroup>
<Import Project="..\..\..\build\Extensions.props" />
<ItemGroup>
<PackageReference Include="Azure.Messaging.ServiceBus" Version="7.14.0" />
<PackageReference Include="Microsoft.Extensions.Azure" Version="1.6.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Worker.Extensions.Abstractions\src\Worker.Extensions.Abstractions.csproj" />
<ProjectReference Include="..\..\..\src\DotNetWorker.Core\DotNetWorker.Core.csproj" />
</ItemGroup>
<ItemGroup>
<SharedReference Include="..\..\Worker.Extensions.Shared/Worker.Extensions.Shared.csproj" />
</ItemGroup>
</Project>