forked from dotnet/aspnetcore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArgConstants.cs
30 lines (28 loc) · 1.44 KB
/
ArgConstants.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace Templates.Test.Helpers;
internal static class ArgConstants
{
public const string UseProgramMain = "--use-program-main";
public const string UseControllers = "--use-controllers";
public const string Pwa = "--pwa";
public const string CallsGraph = "--calls-graph";
public const string CalledApiUrl = "--called-api-url";
public const string CalledApiUrlGraphMicrosoftCom = "--called-api-url \"https://graph.microsoft.com\"";
public const string CalledApiScopes = "--called-api-scopes";
public const string CalledApiScopesUserReadWrite = $"{CalledApiScopes} user.readwrite";
public const string NoOpenApi = "--no-openapi";
public const string Auth = "-au";
public const string ClientId = "--client-id";
public const string Domain = "--domain";
public const string DefaultScope = "--default-scope";
public const string AppIdUri = "--app-id-uri";
public const string AppIdClientId = "--api-client-id";
public const string TenantId = "--tenant-id";
public const string AadB2cInstance = "--aad-b2c-instance";
public const string UseLocalDb = "-uld";
public const string NoHttps = "--no-https";
public const string PublishNativeAot = "--aot";
public const string NoInteractivity = "--interactivity none";
public const string Empty = "--empty";
}