-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCognite.Metrics.csproj
More file actions
39 lines (35 loc) · 1.52 KB
/
Cognite.Metrics.csproj
File metadata and controls
39 lines (35 loc) · 1.52 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
38
39
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1;net8.0</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageId>Cognite.Extractor.Metrics</PackageId>
<Author>Cognite AS</Author>
<Company>Cognite AS</Company>
<Copyright>Cognite AS</Copyright>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<RootNamespace>Cognite.Extractor.Metrics</RootNamespace>
<Description>
A library containing metrics utilities for Cognite extractors
</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>
<PackageReference Include="Microsoft.Extensions.Http" Version="10.0.5" />
<PackageReference Include="Microsoft.Extensions.Http.Polly" Version="10.0.5" />
<PackageReference Include="Polly.Extensions.Http" Version="3.0.0" />
<PackageReference Include="prometheus-net" Version="8.2.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Cognite.Logging\Cognite.Logging.csproj" />
<ProjectReference Include="..\Cognite.Common\Cognite.Common.csproj" />
</ItemGroup>
</Project>