Browse Source

Fix package generation - exclude content files, include PackageIcon

pull/2828/head
Christoph Wille 3 years ago
parent
commit
01b27084e8
  1. 9
      ICSharpCode.Decompiler/ICSharpCode.Decompiler.csproj

9
ICSharpCode.Decompiler/ICSharpCode.Decompiler.csproj

@ -16,7 +16,7 @@
<Product>ILSpy</Product> <Product>ILSpy</Product>
<RepositoryType>git</RepositoryType> <RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/icsharpcode/ILSpy.git</RepositoryUrl> <RepositoryUrl>https://github.com/icsharpcode/ILSpy.git</RepositoryUrl>
<PackageIconUrl>images\DecompilerNuGetPackageIcon.png</PackageIconUrl> <PackageIcon>DecompilerNuGetPackageIcon.png</PackageIcon>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> <PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Copyright>Copyright 2011-$([System.DateTime]::Now.Year) AlphaSierraPapa</Copyright> <Copyright>Copyright 2011-$([System.DateTime]::Now.Year) AlphaSierraPapa</Copyright>
<PackageTags>C# Decompiler ILSpy</PackageTags> <PackageTags>C# Decompiler ILSpy</PackageTags>
@ -45,6 +45,7 @@
<ItemGroup> <ItemGroup>
<None Include="PackageReadme.md" Pack="true" PackagePath="\" /> <None Include="PackageReadme.md" Pack="true" PackagePath="\" />
<None Include="DecompilerNuGetPackageIcon.png" Pack="true" PackagePath="\"/>
</ItemGroup> </ItemGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'"> <PropertyGroup Condition="'$(Configuration)' == 'Debug'">
@ -674,10 +675,10 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Content Include="..\doc\Pattern Matching.html"> <None Include="..\doc\Pattern Matching.html">
<Link>CSharp\Syntax\PatternMatching\Pattern Matching.html</Link> <Link>CSharp\Syntax\PatternMatching\Pattern Matching.html</Link>
</Content> </None>
<Content Include="Humanizer\LICENSE" /> <None Include="Humanizer\LICENSE" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>

Loading…
Cancel
Save