/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/EditorFeatures/Core/Copilot/CopilotConstants.cs
20 строк
967 B
David Kean
Use the shared KnownMonikers.Sparkle for the On-The-Fly Docs Copilot icon (#84401)
06 июл 2026, 19:27
Не верифицирован
06 июл 2026, 19:27
8cff8c2
Код
Авторство
О чём код?
// 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. using System; using Microsoft.VisualStudio.Language.Suggestions; namespace Microsoft.CodeAnalysis.Editor.Copilot; internal static class CopilotConstants { /// <summary> /// This flag is used to indicate that a thinking state tip should be shown. /// This will eventually be defined in Microsoft.VisualStudio.Language.Suggestions.TipStyle once the behavior is finalized. /// </summary> // Copied from https://devdiv.visualstudio.com/DevDiv/_git/IntelliCode-VS?path=%2Fsrc%2FVSIX%2FIntelliCode.VSIX%2FSuggestionService%2FImplementation%2FSuggestionSession.cs& public const TipStyle ShowThinkingStateTipStyle = (TipStyle)0x20; public static readonly Guid CopilotQuotaExceededGuid = new("39B0DEDE-D931-4A92-9AA2-3447BC4998DC"); }