-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathDirectory.Build.props
43 lines (38 loc) · 1.52 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
<Project>
<Import Project="build\Version.props" />
<!-- Framework and language -->
<PropertyGroup>
<!-- Language -->
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<!-- Build -->
<ArtifactsPath>$(MSBuildThisFileDirectory)artifacts</ArtifactsPath>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<Deterministic>true</Deterministic>
<!--
Add NoWarn to remove build warnings
NU1803: Using an insecure http NuGet source
-->
<NoWarn>$(NoWarn);NU1507;NU1803;NETSDK1201;PRI257</NoWarn>
<!--
CA1416: Platform compatibility warning
-->
<WarningsAsErrors>$(WarningAsErrors);CA1416</WarningsAsErrors>
</PropertyGroup>
<!-- Custom properties -->
<PropertyGroup>
<RepositoryRoot>$(MSBuildThisFileDirectory)</RepositoryRoot>
<ThisYear>$([System.DateTime]::Now.ToString(`yyyy`))</ThisYear>
</PropertyGroup>
<!-- Package and project properties -->
<PropertyGroup>
<Description>本机内多进程通讯库,稳定 IPC 通讯库</Description>
<Company>dotnet campus(.NET 职业技术学院)</Company>
<Authors>dotnet-campus</Authors>
<Copyright>Copyright © 2020-$(ThisYear) dotnet campus, All Rights Reserved.</Copyright>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/dotnet-campus/dotnetCampus.Ipc</RepositoryUrl>
<PackageProjectUrl>https://github.com/dotnet-campus/dotnetCampus.Ipc</PackageProjectUrl>
</PropertyGroup>
</Project>