-
Notifications
You must be signed in to change notification settings - Fork 47
/
NuGet.Build.props
33 lines (26 loc) · 1.17 KB
/
NuGet.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
33
<Project>
<PropertyGroup>
<!-- Overwrites IsPackable from global Directory.Build.props -->
<IsPackable>true</IsPackable>
</PropertyGroup>
<PropertyGroup>
<Authors>Nexus Mods</Authors>
<PackageIcon>Nexus-Icon.png</PackageIcon>
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageProjectUrl>https://github.com/Nexus-Mods/NexusMods.App</PackageProjectUrl>
<RepositoryUrl>https://github.com/Nexus-Mods/NexusMods.App.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<!-- https://github.com/dotnet/sourcelink/tree/main/docs#publishrepositoryurl -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)Nexus-Icon.png">
<Pack>True</Pack>
<PackagePath>/</PackagePath>
</None>
</ItemGroup>
</Project>