-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathExtractorUtils.csproj
More file actions
48 lines (48 loc) · 2.54 KB
/
ExtractorUtils.csproj
File metadata and controls
48 lines (48 loc) · 2.54 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
40
41
42
43
44
45
46
47
48
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1;net8.0</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageId>Cognite.ExtractorUtils</PackageId>
<Author>Cognite AS</Author>
<Company>Cognite AS</Company>
<Copyright>Cognite AS</Copyright>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<RootNamespace>Cognite.Extractor.Utils</RootNamespace>
<Description>
A library containing utilities for building extractors in .Net
</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.Bcl.AsyncInterfaces" Version="10.0.5" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.5" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.5" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="StackExchange.Redis" Version="2.11.8" />
<PackageReference Include="System.CommandLine" Version="2.0.5" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Cognite.Config\Cognite.Configuration.csproj" />
<ProjectReference Include="..\Cognite.Common\Cognite.Common.csproj" />
<ProjectReference Include="..\Cognite.Metrics\Cognite.Metrics.csproj" />
<ProjectReference Include="..\Cognite.Logging\Cognite.Logging.csproj" />
<ProjectReference Include="..\Cognite.StateStorage\Cognite.StateStorage.csproj" />
<ProjectReference Include="..\Cognite.Extensions\Cognite.Extensions.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Utils\" />
<Folder Include="config\" />
</ItemGroup>
<ItemGroup Condition="'$(BuildWithCert)' != 'True'">
<InternalsVisibleTo Include="ExtractorUtils.Test" Key="0024000004800000940000000602000000240000525341310004000001000100bde6ca813c4cc0cf79be8182f864b5337c00d71150f6ff8919d75f8a3402c0577d344b12a1b44e0d626ab4e3f1e94bdb74cdcd1fffa66a33eba89bb2a2c87e2aa0f8948263335ff452e78f8a9861a7d00bdba043edbe554779742c82781d9d11eead3d9fcef5dcfaa0c73caeab1212e46bbbfdb31181b9a141e9a0fc93a4a3ca" />
</ItemGroup>
</Project>