Skip to content

Commit 564d62a

Browse files
authored
Merge pull request #299 from nblumhardt/setting-command-group
Add `seqcli setting names|show|set|clear` commands
2 parents 7c457a5 + a1855a8 commit 564d62a

38 files changed

+331
-64
lines changed

src/SeqCli/Apps/Definitions/AppDefinition.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#nullable enable
16-
1715
using System.Collections.Generic;
1816
using Newtonsoft.Json;
1917

src/SeqCli/Apps/Definitions/AppMetadataReader.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
using System.Reflection;
2020
using Seq.Apps;
2121

22-
#nullable enable
23-
2422
namespace SeqCli.Apps.Definitions;
2523

2624
static class AppMetadataReader

src/SeqCli/Apps/Definitions/AppSettingDefinition.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414

1515
using Newtonsoft.Json;
1616

17-
#nullable enable
18-
1917
namespace SeqCli.Apps.Definitions;
2018

2119
// ReSharper disable all

src/SeqCli/Cli/CommandLineHost.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@
2121
using Serilog.Core;
2222
using Serilog.Events;
2323

24-
#nullable enable
25-
2624
namespace SeqCli.Cli;
2725

2826
class CommandLineHost

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222
using SeqCli.Util;
2323
using Serilog;
2424

25-
#nullable enable
26-
2725
namespace SeqCli.Cli.Commands.App;
2826

2927
[Command("app", "install", "Install an app package",

src/SeqCli/Cli/Commands/App/UpdateCommand.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@
2121
using SeqCli.Util;
2222
using Serilog;
2323

24-
#nullable enable
25-
2624
namespace SeqCli.Cli.Commands.App;
2725

2826
[Command("app", "update", "Update an installed app package",

src/SeqCli/Cli/Commands/Bench/BenchCase.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#nullable enable
16-
1715
namespace SeqCli.Cli.Commands.Bench;
1816

1917
// ReSharper disable ClassNeverInstantiated.Global AutoPropertyCanBeMadeGetOnly.Global UnusedAutoPropertyAccessor.Global

src/SeqCli/Cli/Commands/Bench/BenchCaseTimings.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#nullable enable
1615
using System;
1716
using System.Collections.Generic;
1817
using System.Linq;

src/SeqCli/Cli/Commands/Bench/BenchCasesCollection.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#nullable enable
1615
using System.Collections.Generic;
1716

1817
namespace SeqCli.Cli.Commands.Bench;

src/SeqCli/Cli/Commands/Bench/BenchCommand.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#nullable enable
16-
1715
using System;
1816
using System.IO;
1917
using System.Linq;

0 commit comments

Comments
 (0)