-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
27 lines (24 loc) · 1.17 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
<Project>
<PropertyGroup>
<Authors>ssimek</Authors>
<Company>triaxis s.r.o.</Company>
<Description>A set of opinionated extensions built on top of System.CommandLine for quick commandline tool project setup</Description>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<PackageVersion>1.2.3-beta4.22272.1</PackageVersion>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageIcon>icon.png</PackageIcon>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<None Include="../../LICENSE.txt" Pack="true" PackagePath="$(PackageLicenseFile)" />
<None Include="$(BaseIntermediateOutputPath)/icon.png" Pack="true" PackagePath="$(PackageIcon)" />
</ItemGroup>
<Target Name="DownloadPackageIcon" BeforeTargets="GenerateNuspec">
<DownloadFile SourceUrl="https://raw.githubusercontent.com/triaxis-oss/content/main/icon.png" DestinationFolder="$(BaseIntermediateOutputPath)" />
</Target>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="all" />
</ItemGroup>
</Project>