-
Notifications
You must be signed in to change notification settings - Fork 21
/
Directory.Build.props
23 lines (20 loc) · 1 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
<Project>
<Import Project="build\Version.props" />
<PropertyGroup>
<LangVersion>latest</LangVersion>
<PackageOutputPath>$(MSBuildThisFileDirectory)bin\$(Configuration)</PackageOutputPath>
<Company>lindexi</Company>
<Authors>dotnet-campus</Authors>
<RepositoryUrl>https://github.com/lindexi/UWP</RepositoryUrl>
<PackageProjectUrl>https://github.com/lindexi/UWP</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<RepositoryRoot>$(MSBuildThisFileDirectory)</RepositoryRoot>
<ThisYear>$([System.DateTime]::Now.ToString(`yyyy`))</ThisYear>
<Copyright>Copyright © 2021-$(ThisYear) lindexi, All Rights Reserved.</Copyright>
</PropertyGroup>
<ItemGroup>
<!-- 这段代码用于解决提示 error : SourceRoot items must include at least one top-level (not nested) item when DeterministicSourcePaths is true 构建失败 -->
<SourceRoot Include="$(MSBuildThisFileDirectory)/"/>
</ItemGroup>
</Project>