-
Notifications
You must be signed in to change notification settings - Fork 1
/
directory.build.props
32 lines (29 loc) · 1.38 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>
<Authors>One Frame Link</Authors>
<Company>One Frame Link</Company>
<RepositoryType>git</RepositoryType>
<Copyright>Copyright © 2020 One Frame Link</Copyright>
<LangVersion>latest</LangVersion>
<!-- Licensing, as per: https://github.com/NuGet/Home/wiki/Packaging-License-within-the-nupkg#project-properties -->
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<PackageIcon>icon.png</PackageIcon>
<!-- Sourcelink, as per https://github.com/dotnet/sourcelink -->
<!-- Declare that the Repository URL can be published to NuSpec -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<!-- Build symbol package (.snupkg) to distribute the PDB containing Source Link -->
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Nullable>enable</Nullable>
<Version>5.0.0</Version>
</PropertyGroup>
<ItemGroup>
<!-- For SourceLink -->
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
</ItemGroup>
<!-- For package icon, as per https://docs.microsoft.com/en-us/nuget/reference/msbuild-targets#packageiconurl -->
<ItemGroup>
<None Include="..\..\_shared\icon.png" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>