/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Workspaces/MSBuild/Contracts/Response.cs
15 строк
494 B
Jason Malinowski
If we have an exception across our BuildHost RPC layer, pass the stack
01 май 2026, 02:36
01 май 2026, 02:36
aab35e3
Код
Авторство
О чём код?
// 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.Text.Json; namespace Microsoft.CodeAnalysis.MSBuild; internal sealed class Response { public int Id { get; init; } public JsonElement? Value { get; init; } public string? ExceptionMessage { get; init; } public string? ExceptionStackTrace { get; init; } }