-
Notifications
You must be signed in to change notification settings - Fork 1
/
Directory.Build.props
32 lines (32 loc) · 1.48 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
<Project>
<PropertyGroup>
<Company>Rocket Surgeons Guild</Company>
<Copyright>Copyright Rocket Surgeons Guild © $([System.DateTime]::Now.ToString('yyyy'))</Copyright>
<Authors>David Driscoll,Rocket Surgeons Guild contributors</Authors>
<PackageProjectUrl>https://rocketsurgeonsguild.github.io/</PackageProjectUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageIcon>images/packageicon.png</PackageIcon>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<!--
in package
Title
Description
Tags
-->
<LangVersion>preview</LangVersion>
<Features>strict</Features>
<Nullable>enable</Nullable>
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<NukeTelemetryVersion>1</NukeTelemetryVersion>
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)/.nuke/temp/packageicon.png" Condition="Exists('$(MSBuildThisFileDirectory)/.nuke/temp/packageicon.png')" Pack="true" PackagePath="/images/" Visible="false" />
<None Include="$(MSBuildThisFileDirectory)/LICENSE" Pack="true" PackagePath="/" Visible="false" />
</ItemGroup>
<ItemGroup>
<ProjectCapability Include="DynamicDependentFile" />
<ProjectCapability Include="DynamicFileNesting" />
</ItemGroup>
</Project>