Skip to content

Commit

Permalink
Split up csproj PropertyGroup for nuget metadata (#3492)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwsch authored May 8, 2022
1 parent e34d03d commit e4794ef
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 6 deletions.
File renamed without changes.
29 changes: 23 additions & 6 deletions PKHeX.Core/PKHeX.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,35 @@

<PropertyGroup>
<TargetFrameworks>netstandard2.0;net46</TargetFrameworks>
<LangVersion>10</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>

<PropertyGroup>
<Description>Pokémon C# Class Library</Description>
<RootNamespace>PKHeX.Core</RootNamespace>
<NeutralLanguage>en</NeutralLanguage>
<Company>Project Pokémon</Company>
<Copyright>Kaphotics</Copyright>
<NeutralLanguage>en</NeutralLanguage>
<PackageLicenseUrl>https://github.com/kwsch/PKHeX/blob/master/LICENSE.md</PackageLicenseUrl>
<PackageIconUrl>https://github.com/kwsch/PKHeX/blob/master/PKHeX.WinForms/icon.ico</PackageIconUrl>
<PackageProjectUrl />
</PropertyGroup>

<PropertyGroup>
<IsPackage>true</IsPackage>
<PackageId>PKHeX.Core</PackageId>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageIcon>icon.png</PackageIcon>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageProjectUrl>https://github.com/kwsch/PKHeX</PackageProjectUrl>
<RepositoryUrl>https://github.com/kwsch/PKHeX</RepositoryUrl>
<LangVersion>10</LangVersion>
<Nullable>enable</Nullable>
<RepositoryType>git</RepositoryType>
</PropertyGroup>

<ItemGroup>
<None Include="..\icon.png" Pack="true" PackagePath=""/>
</ItemGroup>

<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
Expand Down
Binary file added icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit e4794ef

Please sign in to comment.