Skip to content

Commit

Permalink
chore: Fix compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
timabell committed Feb 15, 2024
1 parent b9f6ab8 commit 695e158
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/CLI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ public CLI(IGuidGenerator guidGenerator)
private class Options
{
[Option('s', "solution", Required = true, HelpText = "path to .sln file to modify")]
public string SlnPath { get; set; }
public required string SlnPath { get; set; }

[Option('f', "folder", Required = false, HelpText = "Solution folder to target")]
public string SlnFolder { get; set; } = "SolutionItems";

[Value(0)]
public IEnumerable<string> Paths { get; set; }
public required IEnumerable<string> Paths { get; set; }
}

public int Run(string[] args)
Expand Down

0 comments on commit 695e158

Please sign in to comment.