Skip to content

Commit

Permalink
build/nuget.props: Changed to deposit the LICENSE.txt and icon files …
Browse files Browse the repository at this point in the history
…into the root of the NuGet package instead of the content directory
  • Loading branch information
NightOwl888 committed Sep 21, 2020
1 parent 61ad275 commit 402720a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build/nuget.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<RepositoryUrl>https://github.com/NightOwl888/J2N/</RepositoryUrl>
<PackageProjectUrl>https://github.com/NightOwl888/J2N/</PackageProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/NightOwl888/J2N/master/branding/j2n-icon-100x100.png</PackageIconUrl>
<PackageIcon>content\j2n-icon-100x100.png</PackageIcon>
<PackageLicenseFile>content\LICENSE.txt</PackageLicenseFile>
<PackageIcon>j2n-icon-100x100.png</PackageIcon>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<None Include="$(SolutionDir)LICENSE.txt" Pack="true" PackagePath="content"/>
<None Include="$(SolutionDir)branding\j2n-icon-100x100.png" Pack="true" PackagePath="content"/>
<None Include="$(SolutionDir)$(PackageLicenseFile)" Pack="true" PackagePath="$(PackageLicenseFile)"/>
<None Include="$(SolutionDir)branding\$(PackageIcon)" Pack="true" PackagePath="$(PackageIcon)"/>
</ItemGroup>
</Project>

0 comments on commit 402720a

Please sign in to comment.