Skip to content

Commit d423941

Browse files
committed
Update System.CommandLine version
Signed-off-by: andreas hilti <69210561+andreas-hilti@users.noreply.github.com>
1 parent f934c99 commit d423941

12 files changed

+13
-1
lines changed

src/cyclonedx/Commands/Add/AddFilesCommand.cs

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
using AntPathMatching;
3030
using CycloneDX.Models;
3131
using CycloneDX.Cli.Commands;
32+
using System.CommandLine.NamingConventionBinder;
3233

3334
namespace CycloneDX.Cli.Commands.Add
3435
{

src/cyclonedx/Commands/AnalyzeCommand.cs

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
using System;
1818
using System.CommandLine;
1919
using System.CommandLine.Invocation;
20+
using System.CommandLine.NamingConventionBinder;
2021
using System.Text.Json;
2122
using System.Threading.Tasks;
2223
using CycloneDX.Cli.Models;

src/cyclonedx/Commands/ConvertCommand.cs

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
using System;
1818
using System.CommandLine;
1919
using System.CommandLine.Invocation;
20+
using System.CommandLine.NamingConventionBinder;
2021
using System.Diagnostics.Contracts;
2122
using System.Threading.Tasks;
2223
using CycloneDX.Cli;

src/cyclonedx/Commands/DiffCommand.cs

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
using System;
1818
using System.CommandLine;
1919
using System.CommandLine.Invocation;
20+
using System.CommandLine.NamingConventionBinder;
2021
using System.Text.Json;
2122
using System.Text.Json.Serialization;
2223
using System.Threading.Tasks;

src/cyclonedx/Commands/KeyGenCommand.cs

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
using System;
1818
using System.CommandLine;
1919
using System.CommandLine.Invocation;
20+
using System.CommandLine.NamingConventionBinder;
2021
using System.IO;
2122
using System.Security.Cryptography;
2223
using System.Threading.Tasks;

src/cyclonedx/Commands/MergeCommand.cs

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
using System.Threading.Tasks;
2323
using CycloneDX.Models;
2424
using CycloneDX.Utils;
25+
using System.CommandLine.NamingConventionBinder;
2526

2627
namespace CycloneDX.Cli.Commands
2728
{

src/cyclonedx/Commands/Sign/SignBomCommand.cs

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
using System.Security.Cryptography.Xml;
2525
using System.Threading.Tasks;
2626
using System.Xml;
27+
using System.CommandLine.NamingConventionBinder;
2728

2829
namespace CycloneDX.Cli.Commands.Sign
2930
{

src/cyclonedx/Commands/Sign/SignFileCommand.cs

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
using System.Security.Cryptography;
2525
using System.Threading.Tasks;
2626
using System.Xml;
27+
using System.CommandLine.NamingConventionBinder;
2728

2829
namespace CycloneDX.Cli.Commands.Sign
2930
{

src/cyclonedx/Commands/ValidateCommand.cs

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
using System.Collections.Generic;
1919
using System.CommandLine;
2020
using System.CommandLine.Invocation;
21+
using System.CommandLine.NamingConventionBinder;
2122
using System.Diagnostics.Contracts;
2223
using System.IO;
2324
using System.Linq;

src/cyclonedx/Commands/Verify/VerifyAllCommand.cs

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
using System.Security.Cryptography.Xml;
2525
using System.Threading.Tasks;
2626
using System.Xml;
27+
using System.CommandLine.NamingConventionBinder;
2728

2829
namespace CycloneDX.Cli.Commands.Verify
2930
{

src/cyclonedx/Commands/Verify/VerifyFileCommand.cs

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
using System.IO;
2222
using System.Security.Cryptography;
2323
using System.Threading.Tasks;
24+
using System.CommandLine.NamingConventionBinder;
2425

2526
namespace CycloneDX.Cli.Commands.Verify
2627
{

src/cyclonedx/cyclonedx.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
<PackageReference Include="CsvHelper" Version="29.0.0" />
1818
<PackageReference Include="CycloneDX.Utils" Version="8.0.3" />
1919
<PackageReference Include="CycloneDX.Spdx.Interop" Version="8.0.3" />
20-
<PackageReference Include="System.CommandLine" Version="2.0.0-beta1.21308.1" />
20+
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
21+
<PackageReference Include="System.CommandLine.NamingConventionBinder" Version="2.0.0-beta4.22272.1" />
2122
<PackageReference Include="System.Security.Cryptography.Xml" Version="6.0.1" />
2223
</ItemGroup>
2324

0 commit comments

Comments
 (0)