-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
37 lines (31 loc) · 1.36 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
<Project>
<PropertyGroup>
<ThisRoot>Zyborg.CommandLine.ModelBinder</ThisRoot>
<ThisRepo>https://github.com/zyborg/$(ThisRoot)</ThisRepo>
<ThisYear>$([System.DateTime]::Now.ToString("yyyy"))</ThisYear>
</PropertyGroup>
<PropertyGroup>
<Copyright>Copyright (C) $(ThisYear) Eugene Bekker.</Copyright>
<RepositoryUrl>$(ThisRepo)</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Authors>https://github.com/zyborg/$(ThisRoot)/graphs/contributors</Authors>
</PropertyGroup>
<PropertyGroup>
<!-- deprecated: https://docs.microsoft.com/en-us/nuget/reference/msbuild-targets -->
<!--
<PackageLicenseUrl>https://github.com/zyborg/Zyborg.CommandLine.ModelBinder/blob/master/LICENSE</PackageLicenseUrl>
-->
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<PropertyGroup>
<!-- deprecated: https://docs.microsoft.com/en-us/nuget/reference/msbuild-targets#packageiconurl -->
<!--
<PackageIconUrl>https://avatars2.githubusercontent.com/u/22501173?s=88&v=4</PackageIconUrl>
-->
<PackageIcon>zy-icon.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)res/img/zy-icon.png" Pack="true" Visible="false" PackagePath="" />
</ItemGroup>
<Import Project="$([MSBuild]::NormalizePath('$(MSBuildThisFileDirectory)', 'Versions.props'))" />
</Project>