-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCognite.Extensions.csproj
More file actions
37 lines (37 loc) · 1.62 KB
/
Cognite.Extensions.csproj
File metadata and controls
37 lines (37 loc) · 1.62 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
33
34
35
36
37
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1;net7.0</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageId>Cognite.Extensions</PackageId>
<Author>Cognite AS</Author>
<Company>Cognite AS</Company>
<Copyright>Cognite AS</Copyright>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<RootNamespace>Cognite.Extensions</RootNamespace>
<Description>
A library containing extensions methods to the Cognite SDK
</Description>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisMode>Default</AnalysisMode>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<LangVersion>8.0</LangVersion>
<Nullable>enable</Nullable>
<AssemblyOriginatorKeyFile>../strong_name.snk</AssemblyOriginatorKeyFile>
<SignAssembly>True</SignAssembly>
</PropertyGroup>
<ItemGroup>
<None Include="..\LICENSE" Pack="true" Visible="false" PackagePath="" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Cognite.Common\Cognite.Common.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Identity.Client" Version="4.64.1" />
<PackageReference Include="System.Text.Json" Version="8.0.4" />
<PackageReference Include="CogniteSdk" Version="4.6.0" />
<PackageReference Include="prometheus-net" Version="8.2.1" />
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Http.Polly" Version="8.0.8" />
<PackageReference Include="Polly.Extensions.Http" Version="3.0.0" />
</ItemGroup>
</Project>