/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Tools/AnalyzerRunner/AnalyzerRunnerHelper.cs
23 строки
800 B
Jason Malinowski
Remove unnecessary uses of Microsoft.Build.Locator
14 ноя 2023, 04:50
14 ноя 2023, 04:50
ca2a7db
Код
Авторство
О чём код?
// 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.Collections.Generic; using Microsoft.CodeAnalysis.MSBuild; namespace AnalyzerRunner { public static class AnalyzerRunnerHelper { public static MSBuildWorkspace CreateWorkspace() { var properties = new Dictionary<string, string> { // Use the latest language version to force the full set of available analyzers to run on the project. { "LangVersion", "latest" }, }; return MSBuildWorkspace.Create(properties, AnalyzerRunnerMefHostServices.DefaultServices); } } }