forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMicrosoft.Extensions.Azure.csproj
34 lines (28 loc) · 1.44 KB
/
Microsoft.Extensions.Azure.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
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>
<Description>Azure Client SDK integration with Microsoft.Extensions libraries</Description>
<AssemblyTitle>Azure Client SDK integration Microsoft.Extensions</AssemblyTitle>
<Version>1.1.0-preview.1</Version>
<PackageTags>Microsoft Azure Client Pipeline AspNetCore Extensions</PackageTags>
<PackageReleaseNotes>
- Updated Azure.Identity dependency version
</PackageReleaseNotes>
<!-- Make sure that we don't pull in additional dependencies during build or package -->
<ImportDefaultReferences>false</ImportDefaultReferences>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<EnableClientSdkAnalyzers>false</EnableClientSdkAnalyzers>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
<PackageReference Include="Microsoft.Extensions.Options" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" />
</ItemGroup>
<Import Project="..\..\Azure.Core\src\Azure.Core.props" />
<ItemGroup>
<Compile Include="$(AzureCoreSharedSources)\EventSourceEventFormatting.cs" />
</ItemGroup>
</Project>