Skip to content

Commit

Permalink
Replaced PackageIconUrl with PackageIcon in NuGet packages. Closes #396.
Browse files Browse the repository at this point in the history
  • Loading branch information
ikkentim committed Mar 25, 2022
1 parent d6d5252 commit b28a730
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,19 @@
</PropertyGroup>

<PropertyGroup Label="Configure default package info" Condition="'$(IsLibrary)' == 'True'">
<PackageIconUrl>https://github.com/ikkentim/SampSharp/raw/master/sampsharp.png</PackageIconUrl>
<PackageProjectUrl>https://github.com/ikkentim/SampSharp</PackageProjectUrl>
<PackageIcon>sampsharp.png</PackageIcon>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>gta samp sampsharp</PackageTags>
<PackageId>$(AssemblyName)</PackageId>
<Product>$(AssemblyName)</Product>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
</PropertyGroup>

<ItemGroup Condition="'$(IsLibrary)' == 'True'">
<None Include="$(MSBuildThisFileDirectory)\art\sampsharp.png" Pack="true" PackagePath="\"/>
</ItemGroup>

<PropertyGroup Label="Versioning">
<VersionPrefix>0.0.0</VersionPrefix>
<VersionSuffix>local</VersionSuffix>
Expand Down

0 comments on commit b28a730

Please sign in to comment.