-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNuGet.pkg.props
31 lines (27 loc) · 1.27 KB
/
NuGet.pkg.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
<Project>
<Import Project="SourceLink.props" />
<!-- Publishing: Package Properties -->
<PropertyGroup>
<Title>$(AssemblyName)</Title>
<Authors>Cory Bennett</Authors>
<Owners>Videre Project</Owners>
<Copyright>Copyright (c) $([System.DateTime]::UtcNow.ToString(yyyy)) $(Authors)</Copyright>
<PackageIcon>icon.png</PackageIcon>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<None Include="$(SolutionDir)\assets\icon.png" Pack="true" PackagePath="" />
<None Include="$(SolutionDir)\NOTICE" Pack="true" PackagePath="" />
</ItemGroup>
<!-- Publishing: Include PDB files in the package `lib/**` folder -->
<PropertyGroup Condition="'$(IncludeSymbolsInPackage)' != 'false'">
<DebugSymbols>True</DebugSymbols>
<DebugType>portable</DebugType>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>
<!-- Publishing: Build a separate snupkg symbol package for NuGet. -->
<PropertyGroup Condition="'$(CreateSymbolPackage)' != 'false'">
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
</Project>