-
Notifications
You must be signed in to change notification settings - Fork 210
Expand file tree
/
Copy pathWebJobs.Extensions.CosmosDB.csproj
More file actions
30 lines (30 loc) · 1.33 KB
/
WebJobs.Extensions.CosmosDB.csproj
File metadata and controls
30 lines (30 loc) · 1.33 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>Microsoft.Azure.WebJobs.Extensions.CosmosDB</AssemblyName>
<RootNamespace>Microsoft.Azure.WebJobs.Extensions.CosmosDB</RootNamespace>
<PackageId>Microsoft.Azure.WebJobs.Extensions.CosmosDB</PackageId>
<Description>This package contains binding extensions for Azure Cosmos DB.</Description>
</PropertyGroup>
<Import Project="..\..\build\common.props" />
<PropertyGroup>
<Version>$(CosmosDBVersion)</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Azure.Cosmos" Version="3.38.1" />
<PackageReference Include="Microsoft.Azure.WebJobs" Version="3.0.37" />
<PackageReference Include="Microsoft.CSharp" Version="4.5.0" />
<PackageReference Include="Microsoft.Extensions.Azure" Version="1.1.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="StyleCop.Analyzers" Version="1.1.118" />
</ItemGroup>
</Project>