-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDirectory.Build.props
24 lines (22 loc) · 1.47 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>MIT</PackageLicenseExpression>
<PackageReadmeFile>README_NUGET.md</PackageReadmeFile>
<PackageProjectUrl>https://github.com/westermo/FactoryGenerator</PackageProjectUrl>
<RepositoryUrl>https://github.com/westermo/FactoryGenerator</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageIcon>icon.png</PackageIcon>
<PackageTags>roslyn, ioc, dependency-injection, compile-time</PackageTags>
<CurrentYear>$([System.DateTime]::Now.ToString(yyyy))</CurrentYear>
<Company>Westermo Network Technologies AB</Company>
<Copyright>Copyright © Westermo Network Technologies AB $(CurrentYear)</Copyright>
<Authors>Westermo Network Technologies AB</Authors>
<Description>FactoryGenerator is an IoC container that uses Roslyn to prepare a container for consumption at compile-time.</Description>
</PropertyGroup>
<ItemGroup>
<None Include="$(ProjectDir)../README_NUGET.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>