-
Notifications
You must be signed in to change notification settings - Fork 0
/
directory.build.props
28 lines (28 loc) · 1.32 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>
<Authors>Rodney Littles II, Rocket Surgeons Guild contributors</Authors>
<Company>Rocket Surgeons Guild</Company>
<Copyright>Copyright Rocket Surgeons Guild © $([System.DateTime]::Now.ToString('yyyy'))</Copyright>
<IncludeContentInPack>true</IncludeContentInPack>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<NukeTelemetryVersion>1</NukeTelemetryVersion>
<PackageIcon>images/packageicon.png</PackageIcon>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageProjectUrl>https://rocketsurgeonsguild.github.io/</PackageProjectUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
</PropertyGroup>
<ItemGroup>
<None Include="$(SolutionDir)LICENSE" Pack="true" PackagePath="" />
<None
Include="$(MSBuildThisFileDirectory)/.nuke/temp/packageicon.png"
Condition="Exists('$(MSBuildThisFileDirectory)/.nuke/temp/packageicon.png')"
Pack="true"
PackagePath="/images/"
Visible="false"
/>
</ItemGroup>
</Project>