8 lines
252 B
C#
8 lines
252 B
C#
|
|
using CommandLine;
|
||
|
|
|
||
|
|
internal class Options
|
||
|
|
{
|
||
|
|
[Option("outputFile", Default = "appsettings-schema.Umbraco.Cms.json", HelpText = "Output file to save the generated JSON schema for Umbraco CMS.")]
|
||
|
|
public string OutputFile { get; set; } = null!;
|
||
|
|
}
|