-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCognite.Common.csproj
More file actions
32 lines (30 loc) · 1.27 KB
/
Cognite.Common.csproj
File metadata and controls
32 lines (30 loc) · 1.27 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1;net8.0</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageId>Cognite.Extractor.Common</PackageId>
<Author>Cognite AS</Author>
<Company>Cognite AS</Company>
<Copyright>Cognite AS</Copyright>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<RootNamespace>Cognite.Extractor.Common</RootNamespace>
<Description>
A library containing common 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.Logging.Abstractions" Version="10.0.5" />
<PackageReference Include="System.Text.Json" Version="10.0.5" />
<PackageReference Include="NCrontab.Signed" Version="3.4.0" />
</ItemGroup>
</Project>