-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
24 lines (21 loc) · 1.37 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
<Project>
<PropertyGroup>
<EnablePackageValidation>true</EnablePackageValidation>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectUrl>https://github.com/westermo/graphx</PackageProjectUrl>
<RepositoryUrl>https://github.com/westermo/graphx</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>wpf, controls-library, graphing</PackageTags>
<CurrentYear>$([System.DateTime]::Now.ToString(yyyy))</CurrentYear>
<Company>Westermo Network Technologies AB</Company>
<Copyright>Copyright © Westermo Network Technologies AB $(CurrentYear), and Alexander Smirnov (derivative work of https://github.com/panthernet/GraphX)</Copyright>
<Authors>Westermo Network Technologies AB</Authors>
</PropertyGroup>
<ItemGroup>
<None Include="$(ProjectDir)../README.md" Link="README.md" Pack="true" PackagePath="" Condition="Exists('$(ProjectDir)../README.md')"/>
<None Include="$(ProjectDir)../icon.png" Link="icon.png" Pack="true" PackagePath="" Condition="Exists('$(ProjectDir)../icon.png')"/>
<None Include="$(ProjectDir)../LICENSE" Link="LICENSE" Pack="true" PackagePath="" Condition="Exists('$(ProjectDir)../LICENSE')"/>
</ItemGroup>
</Project>