/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/ProjectTemplates/Shared/ArgConstants.cs
34 строки
2 KB
Copilot
Fix DNS-invalid hostnames with underscores in dotnet new templates (#64988)
11 янв 2026, 00:45
Не верифицирован
11 янв 2026, 00:45
5fc39b0
Код
Авторство
О чём код?
// 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 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 LocalhostTld = "--localhost-tld"; public const string NoInteractivity = "--interactivity none"; public const string WebAssemblyInteractivity = "--interactivity WebAssembly"; public const string AutoInteractivity = "--interactivity Auto"; public const string GlobalInteractivity = "--all-interactive"; public const string Empty = "--empty"; public const string IndividualAuth = "--auth Individual"; }