forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Microsoft.Azure.EventHubs.Processor.csproj
executable file
·33 lines (28 loc) · 1.44 KB
/
Microsoft.Azure.EventHubs.Processor.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
33
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>This is the next generation Azure Event Hubs .NET Standard Event Processor Host library. For more information about Event Hubs, see https://azure.microsoft.com/en-us/services/event-hubs/</Description>
<VersionPrefix>4.0.1</VersionPrefix>
<PackageTags>Azure;Event Hubs;EventHubs;.NET;AMQP;IoT;Event Processor Host</PackageTags>
<PackageReleaseNotes>https://github.com/Azure/azure-sdk-for-net/releases</PackageReleaseNotes>
<DocumentationFile>$(OutputPath)$(TargetFramework)\Microsoft.Azure.EventHubs.Processor.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup>
<TargetFrameworks>$(RequiredTargetFrameworks);netstandard1.4</TargetFrameworks>
<RootNamespace>Microsoft.Azure.EventHubs.Processor</RootNamespace>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\Microsoft.Azure.EventHubs\src\Microsoft.Azure.EventHubs.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" />
<PackageReference Include="Microsoft.Azure.KeyVault.Core" />
</ItemGroup>
<ItemGroup Condition="'$(IsTargetingNetFx)' == 'true'">
<Reference Include="System" />
<Reference Include="Microsoft.CSharp" />
<PackageReference Include="WindowsAzure.Storage" />
</ItemGroup>
<ItemGroup Condition="'$(IsTargetingNetStandard)' == 'true'">
<PackageReference Include="Microsoft.Azure.Storage.Blob" />
</ItemGroup>
</Project>