-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathDirectory.Build.props
28 lines (22 loc) · 1.13 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
<Project>
<PropertyGroup>
<LangVersion>9</LangVersion>
<Copyright>Copyright © 2021 Denis Zhidkikh</Copyright>
<Authors>Denis Zhidkikh</Authors>
<PackageIcon>tommy_logo_icon.png</PackageIcon>
<PackageIconUrl>https://raw.githubusercontent.com/dezhidki/Tommy/master/logos/tommy_logo_icon.png</PackageIconUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageProjectUrl>https://github.com/dezhidki/Tommy</PackageProjectUrl>
</PropertyGroup>
<ItemGroup>
<None Include="..\LICENSE" Pack="true" PackagePath="" />
<None Include="..\logos\tommy_logo_icon.png" Pack="true" Visible="false" PackagePath="" />
</ItemGroup>
<PropertyGroup>
<ParentDirectoryBuildPropsPath>$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)..'))</ParentDirectoryBuildPropsPath>
</PropertyGroup>
<ImportGroup Condition="'$(ParentDirectoryBuildPropsPath)' != ''">
<Import Project="$(ParentDirectoryBuildPropsPath)" />
</ImportGroup>
</Project>