Skip to content

Commit

Permalink
refactor: undo odd default formatting of attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
timabell committed Jan 3, 2024
1 parent 84ca880 commit a011334
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/CLI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ private class Options
[Option('f', "folder", Required = false, HelpText = "Solution folder to target")]
public string SlnFolder { get; set; } = "SolutionItems";

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

public int Run(string[] args)
Expand Down

0 comments on commit a011334

Please sign in to comment.