Skip to content

Commit 5c6540d

Browse files
authored
Fix PackageIconUrl warning (#551)
1 parent 0148bda commit 5c6540d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/CommandLine/CommandLine.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
<Description Condition="'$(BuildTarget)' == 'fsharp'">Terse syntax C# command line parser for .NET with F# support. The Command Line Parser Library offers to CLR applications a clean and concise API for manipulating command line arguments and related tasks.</Description>
2121
<Copyright>Copyright (c) 2005 - 2018 Giacomo Stelluti Scala &amp; Contributors</Copyright>
2222
<PackageLicenseFile>License.md</PackageLicenseFile>
23+
<PackageIcon>CommandLine20.png</PackageIcon>
2324
<PackageProjectUrl>https://github.com/commandlineparser/commandline</PackageProjectUrl>
24-
<PackageIconUrl>https://raw.githubusercontent.com/commandlineparser/commandline/master/art/CommandLine20.png</PackageIconUrl>
2525
<PackageTags>command line;commandline;argument;option;parser;parsing;library;syntax;shell</PackageTags>
2626
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
2727
<LangVersion>7.3</LangVersion>
@@ -46,5 +46,6 @@
4646
</ItemGroup>
4747
<ItemGroup>
4848
<None Include="$(SolutionDir)LICENSE.md" Pack="true" PackagePath=""/>
49+
<None Include="$(SolutionDir)art\CommandLine20.png" Pack="true" PackagePath=""/>
4950
</ItemGroup>
5051
</Project>

src/CommandLine/Text/HelpText.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,6 @@ public SentenceBuilder SentenceBuilder
314314
/// <param name='onExample'>A delegate used to customize <see cref="CommandLine.Text.Example"/> model used to render text block of usage examples.</param>
315315
/// <param name="verbsIndex">If true the output style is consistent with verb commands (no dashes), otherwise it outputs options.</param>
316316
/// <param name="maxDisplayWidth">The maximum width of the display.</param>
317-
/// <param name="comparison">a comparison lambda to order options in help text</param>
318317
/// <remarks>The parameter <paramref name="verbsIndex"/> is not ontly a metter of formatting, it controls whether to handle verbs or options.</remarks>
319318
public static HelpText AutoBuild<T>(
320319
ParserResult<T> parserResult,

0 commit comments

Comments
 (0)