Files
Umbraco-CMS/tools/Umbraco.JsonSchema/Options.cs

8 lines
259 B
C#
Raw Normal View History

using CommandLine;
internal sealed class Options
{
[Option("outputFile", Default = "appsettings-schema.Umbraco.Cms.json", HelpText = "Output file to save the generated JSON schema for Umbraco CMS.")]
public required string OutputFile { get; set; }
}