/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/awake/Awake/Core/Constants.cs
22 строки
974 B
Den Delimarsky
Awake and DevEx improvements (#44795)
21 янв 2026, 08:27
Не верифицирован
21 янв 2026, 08:27
27dcd1e
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. namespace Awake.Core { internal static class Constants { internal const string AppName = "Awake"; internal const string FullAppName = "PowerToys " + AppName; internal const string TrayWindowId = "Awake.MessageWindow"; internal const string BuildRegistryLocation = @"SOFTWARE\Microsoft\Windows NT\CurrentVersion"; // PowerToys Awake build code name. Used for exact logging // that does not map to PowerToys broad version schema to pinpoint // internal issues easier. // Format of the build ID is: CODENAME_MMDDYYYY, where MMDDYYYY // is representative of the date when the last change was made before // the pull request is issued. internal const string BuildId = "DIDACT_01182026"; } }