-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
28 lines (27 loc) · 1020 Bytes
/
Copy pathDirectory.Build.props
File metadata and controls
28 lines (27 loc) · 1020 Bytes
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
<Project>
<!-- 全仓通用编译设置 -->
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<AnalysisLevel>latest</AnalysisLevel>
<LangVersion>latest</LangVersion>
<InvariantGlobalization>true</InvariantGlobalization>
</PropertyGroup>
<!--
NuGet 元数据:对不打包的项目(tests / samples)无副作用,
因此无条件声明。各库项目自行设置 TargetFrameworks 与 IsPackable。
-->
<PropertyGroup>
<Authors>EU</Authors>
<Company>EU</Company>
<Product>WeCom.AiBot</Product>
<Version>0.1.0</Version>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>wecom;wxwork;aibot;bot;websocket;agent</PackageTags>
<RepositoryType>git</RepositoryType>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
</Project>