/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Compilers/Core/MSBuildTask/ShowMessageForImplicitlySkipAnalyzers.cs
26 строк
831 B
Jan Provazník
Bump Microsoft.Build to 18.7.1 and mark ShowMessageForImplicitlySkipAnalyzers multithreadable (#84343)
24 июл 2026, 22:35
Не верифицирован
24 июл 2026, 22:35
41021db
Код
Авторство
О чём код?
// 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 System.Linq; using System.Text; using Microsoft.Build.Framework; using Microsoft.Build.Utilities; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis.BuildTasks { /// <summary> /// Logs a localizable message for implicitly skipping analyzers for implicitly triggered builds. /// </summary> [MSBuildMultiThreadableTask] public sealed class ShowMessageForImplicitlySkipAnalyzers : Task { public override bool Execute() { Log.LogMessage(MessageImportance.High, ErrorString.ImplicitlySkipAnalyzersMessage); return true; } } }