-
Notifications
You must be signed in to change notification settings - Fork 724
feat: aspire exec #10061
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: aspire exec #10061
Changes from 54 commits
df058ca
9462552
3391051
d467001
56c0434
ca8d4f4
9eb9317
7a65ce3
16ec8e0
0b755f2
fd4884f
ebb80c6
ded6f79
520159d
9451545
3a2c5e3
c25be00
3f2ed39
656f4c2
3906abf
4a7dc36
9ca1c48
c4048a9
1d9a507
d3ae369
fd3a92b
b61f6bd
d4084ec
d1f092d
8c8ca3a
154c92c
d59b76d
065dda6
5d1d40a
ef0d519
02576bd
7100766
0ffe730
2d578c7
547f270
4aa3e6d
5e807e0
aca3572
7144255
b5a782f
1fb877c
3fef32b
1b4da66
806e0ca
3560e5e
bba4642
63be8d4
21048aa
4369ca3
04c52e7
fb11c28
66533ca
637667b
5c78af7
b88ab0b
840a888
95fd77e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -223,3 +223,15 @@ internal static class CompletionStates | |
| public const string CompletedWithWarning = "CompletedWithWarning"; | ||
| public const string CompletedWithError = "CompletedWithError"; | ||
| } | ||
|
|
||
| internal struct CommandOutput | ||
| { | ||
| public required string Text { get; init; } | ||
| public bool IsErrorMessage { get; init; } | ||
| public int? LineNumber { get; init; } | ||
| /// <summary> | ||
| /// Additional info about type of the message. | ||
| /// Should be used for controlling the display style. | ||
| /// </summary> | ||
| public string? Type { get; init; } | ||
|
||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.