-
Notifications
You must be signed in to change notification settings - Fork 1
/
Directory.Build.props
55 lines (49 loc) · 1.81 KB
/
Directory.Build.props
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
49
50
51
52
53
54
55
<Project>
<PropertyGroup>
<Version>2.5.123</Version>
<TargetFramework>net7.0</TargetFramework>
<LangVersion>11.0</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>true</IsPackable>
<Copyright>Weknow Network ©</Copyright>
<Authors>Weknow Network</Authors>
<Company>Weknow Network</Company>
<PackageTags>CYPHER, NEO4J, GRAPH, GRAPH DATABASE, ORM, CSHARP, REDIS, .NET, DRIVER</PackageTags>
</PropertyGroup>
<PropertyGroup>
<PackageReleaseNotes>
BREAKING CHANGES
API CHANGES: break version 2.5.86
use _((n,m) => ...) instead of _(n => m => ...)
</PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IncludeSource>True</IncludeSource>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
</PropertyGroup>
<PropertyGroup>
<PackageIcon>icon.png</PackageIcon>
<PackageIconUrl />
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/weknow-network/Weknow.Cypher.Builder</PackageProjectUrl>
<RepositoryUrl>https://github.com/weknow-network/Weknow.Cypher.Builder</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.47" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<Using Include="System.Collections" />
<Using Include="System.Collections.Immutable" />
<Using Include="System.Collections.Concurrent" />
<Using Include="System.Text.Json" />
<Using Include="System.Net.Http" />
<Using Include="System.Net.Http.Json" />
<Using Include="System.Diagnostics" />
</ItemGroup>
</Project>