Files
Umbraco-CMS/src/JsonSchema/Options.cs
2021-10-19 13:11:02 +02:00

14 lines
367 B
C#

// Copyright (c) Umbraco.
// See LICENSE for more details.
using CommandLine;
namespace JsonSchema
{
internal class Options
{
[Option('o', "outputFile", Required = false, HelpText = "Set path of the output file.", Default = "../../../../Umbraco.Web.UI/umbraco/config/appsettings-schema.json")]
public string OutputFile { get; set; }
}
}