/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/VisualStudio/Core/Def/ID.Menu.cs
21 строка
1 KB
Cyrus Najmabadi
Update VS to use file scoped namespaces
28 фев 2024, 00:34
28 фев 2024, 00:34
3f632c7
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. namespace Microsoft.VisualStudio.LanguageServices; internal static partial class ID { public static class Menu { public const int HiddenCommands = 0x3451; // IDM_HIDDEN_COMMANDS public const int ContextIntelliSense = 0x3471; // IDM_CSHARP_CTX_INTELLISENSE public const int SmartTag = 0x3600; // IDM_CSHARP_SMART_TAG public const int Resolve = 0x3700; // IDM_CSHARP_RESOLVE public const int ContextResolve = 0x3740; // IDM_CSHARP_CTX_RESOLVE public const int ImplementInterface = 0x3800; // IDM_CSHARP_IMPLEMENT_INTERFACE public const int ContextImplementInterface = 0x3850; // IDM_CSHARP_CTX_IMPLEMENT_INTERFACE public const int Generate = 0x3951; // IDM_CSHARP_GENERATE public const int ContextGenerate = 0x3952; // IDM_CSHARP_CTX_GENERATE } }