Skip to content

Commit 5da0565

Browse files
authored
Merge pull request #467 from nblumhardt/forwarder-non-pre
Mark the `seqcli forwarder` command group as non-prerelease
2 parents c159ea3 + 88a70cb commit 5da0565

8 files changed

Lines changed: 8 additions & 8 deletions

File tree

src/SeqCli/Cli/Commands/Forwarder/InstallCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ namespace SeqCli.Cli.Commands.Forwarder;
2727

2828
// ReSharper disable once ClassNeverInstantiated.Global
2929

30-
[Command("forwarder", "install", "Install the forwarder as a Windows service", Visibility = FeatureVisibility.Preview, Platforms = SupportedPlatforms.Windows)]
30+
[Command("forwarder", "install", "Install the forwarder as a Windows service", Platforms = SupportedPlatforms.Windows)]
3131
[SuppressMessage("Interoperability", "CA1416:Validate platform compatibility")]
3232
class InstallCommand : Command
3333
{

src/SeqCli/Cli/Commands/Forwarder/RestartCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
namespace SeqCli.Cli.Commands.Forwarder;
2424

25-
[Command("forwarder", "restart", "Restart the forwarder Windows service", Visibility = FeatureVisibility.Preview, Platforms = SupportedPlatforms.Windows)]
25+
[Command("forwarder", "restart", "Restart the forwarder Windows service", Platforms = SupportedPlatforms.Windows)]
2626
[SuppressMessage("Interoperability", "CA1416:Validate platform compatibility")]
2727
class RestartCommand : Command
2828
{

src/SeqCli/Cli/Commands/Forwarder/RunCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444

4545
namespace SeqCli.Cli.Commands.Forwarder;
4646

47-
[Command("forwarder", "run", "Listen on an HTTP endpoint and forward ingested logs to Seq", Visibility = FeatureVisibility.Preview)]
47+
[Command("forwarder", "run", "Listen on an HTTP endpoint and forward ingested logs to Seq")]
4848
class RunCommand : Command
4949
{
5050
readonly StoragePathFeature _storagePath;

src/SeqCli/Cli/Commands/Forwarder/StartCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
namespace SeqCli.Cli.Commands.Forwarder;
2222

23-
[Command("forwarder", "start", "Start the forwarder Windows service", Visibility = FeatureVisibility.Preview, Platforms = SupportedPlatforms.Windows)]
23+
[Command("forwarder", "start", "Start the forwarder Windows service", Platforms = SupportedPlatforms.Windows)]
2424
[SuppressMessage("Interoperability", "CA1416:Validate platform compatibility")]
2525
class StartCommand : Command
2626
{

src/SeqCli/Cli/Commands/Forwarder/StatusCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
namespace SeqCli.Cli.Commands.Forwarder;
2222

23-
[Command("forwarder", "status", "Show the status of the forwarder Windows service", Visibility = FeatureVisibility.Preview, Platforms = SupportedPlatforms.Windows)]
23+
[Command("forwarder", "status", "Show the status of the forwarder Windows service", Platforms = SupportedPlatforms.Windows)]
2424
[SuppressMessage("Interoperability", "CA1416:Validate platform compatibility")]
2525
class StatusCommand : Command
2626
{

src/SeqCli/Cli/Commands/Forwarder/StopCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
namespace SeqCli.Cli.Commands.Forwarder;
2222

23-
[Command("forwarder", "stop", "Stop the forwarder Windows service", Visibility = FeatureVisibility.Preview, Platforms = SupportedPlatforms.Windows)]
23+
[Command("forwarder", "stop", "Stop the forwarder Windows service", Platforms = SupportedPlatforms.Windows)]
2424
[SuppressMessage("Interoperability", "CA1416:Validate platform compatibility")]
2525
class StopCommand : Command
2626
{

src/SeqCli/Cli/Commands/Forwarder/TruncateCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
namespace SeqCli.Cli.Commands.Forwarder;
2222

23-
[Command("forwarder", "truncate", "Empty the forwarder's persistent log buffer", Visibility = FeatureVisibility.Preview)]
23+
[Command("forwarder", "truncate", "Empty the forwarder's persistent log buffer")]
2424
class TruncateCommand : Command
2525
{
2626
readonly StoragePathFeature _storagePath;

src/SeqCli/Cli/Commands/Forwarder/UninstallCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
namespace SeqCli.Cli.Commands.Forwarder;
2222

23-
[Command("forwarder", "uninstall", "Uninstall the forwarder Windows service", Visibility = FeatureVisibility.Preview, Platforms = SupportedPlatforms.Windows)]
23+
[Command("forwarder", "uninstall", "Uninstall the forwarder Windows service", Platforms = SupportedPlatforms.Windows)]
2424
class UninstallCommand : Command
2525
{
2626
protected override Task<int> Run()

0 commit comments

Comments
 (0)