/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Workspaces/MSBuild/Contracts/IProjectInstance.cs
18 строк
626 B
Jan Jones
Allow MSBuildWorkspace to open file-based apps (#84139)
30 июл 2026, 11:03
Не верифицирован
30 июл 2026, 11:03
7e7ebef
Код
Авторство
О чём код?
// 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; namespace Microsoft.CodeAnalysis.MSBuild; /// <summary> /// RPC methods for MSBuild's <c>ProjectInstance</c> object. /// </summary> internal interface IProjectInstance : IDisposable { DiagnosticLogItem[] GetDiagnosticLogItems(); string[][] GetItemMetadataValues(string itemType, string[] metadataNames); string GetPropertyValue(string propertyName); string ExpandString(string value); }