-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathWjybxx.BTree.Core.csproj
48 lines (38 loc) · 1.83 KB
/
Wjybxx.BTree.Core.csproj
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>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>annotations</Nullable>
<LangVersion>9</LangVersion>
<RootNamespace>Wjybxx.BTree</RootNamespace>
<AssemblyName>Wjybxx.BTree.Core</AssemblyName>
<PackageId>Wjybxx.BTree.Core</PackageId>
<PackageVersion>2.1.1</PackageVersion>
<Title>Wjybxx.BTree.Core</Title>
<Description>BTree-非典型的高性能行为树实现</Description>
<PackageTags>wjybxx;btree;tasktree;game-ai;</PackageTags>
<Authors>wjybxx(845740757@qq.com)</Authors>
<Owners>wjybxx(845740757@qq.com)</Owners>
<Copyright>Copyright 2024 wjybxx(845740757@qq.com)</Copyright>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>/~https://github.com/hl845740757/commons</PackageProjectUrl>
<PackageReleaseNotes>/~https://github.com/hl845740757/commons/releases</PackageReleaseNotes>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<NeutralLanguage>zh-Hans</NeutralLanguage>
<PackageReadmeFile>README.md</PackageReadmeFile>
<EmbedAllSources>true</EmbedAllSources>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TargetFrameworks>net5.0;net6.0;net7.0;</TargetFrameworks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<NoWarn>1701;1702;1591;</NoWarn>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<NoWarn>1701;1702;1591;</NoWarn>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Wjybxx.Commons.Core\Wjybxx.Commons.Core.csproj" />
</ItemGroup>
</Project>