forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMicrosoft.Azure.EventHubs.ServiceFabricProcessor.csproj
More file actions
executable file
·26 lines (23 loc) · 1.28 KB
/
Microsoft.Azure.EventHubs.ServiceFabricProcessor.csproj
File metadata and controls
executable file
·26 lines (23 loc) · 1.28 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>This is the next generation Azure Event Hubs .NET Standard Service Fabric Processor library, which integrates Event Hub event consumption with Service Fabric. For more information about Event Hubs, see https://azure.microsoft.com/en-us/services/event-hubs/</Description>
<VersionPrefix>0.5.5</VersionPrefix>
<PackageTags>Azure;Event Hubs;EventHubs;.NET;AMQP;IoT</PackageTags>
<PackageReleaseNotes>https://github.com/Azure/azure-sdk-for-net/releases</PackageReleaseNotes>
<DocumentationFile>$(OutputPath)$(TargetFramework)Microsoft.Azure.EventHubs.Processor.xml</DocumentationFile>
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>
</PropertyGroup>
<!-- Because Service Fabric is involved, force the platform to x64. -->
<PropertyGroup>
<Platform>x64</Platform>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\Microsoft.Azure.EventHubs\src\Microsoft.Azure.EventHubs.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.ServiceFabric" />
<PackageReference Include="Microsoft.ServiceFabric.Data" />
<PackageReference Include="Microsoft.ServiceFabric.Services" />
</ItemGroup>
</Project>