-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
41 lines (35 loc) · 1.58 KB
/
Directory.Build.props
File metadata and controls
41 lines (35 loc) · 1.58 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
<Project>
<Import Project="build\Version.props" />
<!-- 框架和语言信息 -->
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<Deterministic>true</Deterministic>
<RepositoryRoot>$(MSBuildThisFileDirectory)</RepositoryRoot>
<ArtifactsPath>$(MSBuildThisFileDirectory)artifacts\</ArtifactsPath>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<PropertyGroup>
<!--
DCL101: 命令行库自己的警告,是为了给库的用户报告的;而本仓库要测这些,所以不能放一堆警告破窗。
NU1507: 没有指定包源映射
-->
<NoWarn>$(NoWarn);DCL101;NU1507</NoWarn>
<!--
CA1416: Platform compatibility warning
-->
<WarningsAsErrors>$(WarningsAsErrors);CA1416</WarningsAsErrors>
</PropertyGroup>
<!-- 库和项目信息 -->
<PropertyGroup>
<Description>使用源生成器高性能地辅助你的应用程序解析几种主流风格的命令行。</Description>
<Authors>walterlv</Authors>
<Company>dotnet-campus</Company>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/dotnet-campus/DotNetCampus.CommandLine</PackageProjectUrl>
<RepositoryUrl>https://github.com/dotnet-campus/DotNetCampus.CommandLine.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<Import Project="$(MSBuildThisFileDirectory)src\DotNetCampus.CommandLine\Package\buildTransitive\Package.props" />
</Project>