Skip to content

Commit

Permalink
Update System.CommandLine version
Browse files Browse the repository at this point in the history
Signed-off-by: andreas hilti <69210561+andreas-hilti@users.noreply.github.com>
  • Loading branch information
andreas-hilti committed Nov 23, 2024
1 parent 4853c27 commit 50e92fc
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/cyclonedx/Commands/Add/AddFilesCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
using AntPathMatching;
using CycloneDX.Models;
using CycloneDX.Cli.Commands;
using System.CommandLine.NamingConventionBinder;

namespace CycloneDX.Cli.Commands.Add
{
Expand Down
1 change: 1 addition & 0 deletions src/cyclonedx/Commands/AnalyzeCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
using System;
using System.CommandLine;
using System.CommandLine.Invocation;
using System.CommandLine.NamingConventionBinder;
using System.Text.Json;
using System.Threading.Tasks;
using CycloneDX.Cli.Models;
Expand Down
1 change: 1 addition & 0 deletions src/cyclonedx/Commands/ConvertCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
using System;
using System.CommandLine;
using System.CommandLine.Invocation;
using System.CommandLine.NamingConventionBinder;
using System.Diagnostics.Contracts;
using System.Threading.Tasks;
using CycloneDX.Cli;
Expand Down
1 change: 1 addition & 0 deletions src/cyclonedx/Commands/DiffCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
using System;
using System.CommandLine;
using System.CommandLine.Invocation;
using System.CommandLine.NamingConventionBinder;
using System.Text.Json;
using System.Text.Json.Serialization;
using System.Threading.Tasks;
Expand Down
1 change: 1 addition & 0 deletions src/cyclonedx/Commands/KeyGenCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
using System;
using System.CommandLine;
using System.CommandLine.Invocation;
using System.CommandLine.NamingConventionBinder;
using System.IO;
using System.Security.Cryptography;
using System.Threading.Tasks;
Expand Down
1 change: 1 addition & 0 deletions src/cyclonedx/Commands/MergeCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
using System.Threading.Tasks;
using CycloneDX.Models;
using CycloneDX.Utils;
using System.CommandLine.NamingConventionBinder;

namespace CycloneDX.Cli.Commands
{
Expand Down
1 change: 1 addition & 0 deletions src/cyclonedx/Commands/Sign/SignBomCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
using System.Security.Cryptography.Xml;
using System.Threading.Tasks;
using System.Xml;
using System.CommandLine.NamingConventionBinder;

namespace CycloneDX.Cli.Commands.Sign
{
Expand Down
1 change: 1 addition & 0 deletions src/cyclonedx/Commands/Sign/SignFileCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
using System.Security.Cryptography;
using System.Threading.Tasks;
using System.Xml;
using System.CommandLine.NamingConventionBinder;

namespace CycloneDX.Cli.Commands.Sign
{
Expand Down
1 change: 1 addition & 0 deletions src/cyclonedx/Commands/ValidateCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
using System.Collections.Generic;
using System.CommandLine;
using System.CommandLine.Invocation;
using System.CommandLine.NamingConventionBinder;
using System.Diagnostics.Contracts;
using System.IO;
using System.Linq;
Expand Down
1 change: 1 addition & 0 deletions src/cyclonedx/Commands/Verify/VerifyAllCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
using System.Security.Cryptography.Xml;
using System.Threading.Tasks;
using System.Xml;
using System.CommandLine.NamingConventionBinder;

namespace CycloneDX.Cli.Commands.Verify
{
Expand Down
1 change: 1 addition & 0 deletions src/cyclonedx/Commands/Verify/VerifyFileCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
using System.IO;
using System.Security.Cryptography;
using System.Threading.Tasks;
using System.CommandLine.NamingConventionBinder;

namespace CycloneDX.Cli.Commands.Verify
{
Expand Down
5 changes: 3 additions & 2 deletions src/cyclonedx/cyclonedx.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
Expand All @@ -17,7 +17,8 @@
<PackageReference Include="CsvHelper" Version="29.0.0" />
<PackageReference Include="CycloneDX.Utils" Version="8.0.0" />
<PackageReference Include="CycloneDX.Spdx.Interop" Version="8.0.0" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta1.21308.1" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
<PackageReference Include="System.CommandLine.NamingConventionBinder" Version="2.0.0-beta4.22272.1" />
<PackageReference Include="System.Security.Cryptography.Xml" Version="6.0.1" />
</ItemGroup>

Expand Down

0 comments on commit 50e92fc

Please sign in to comment.