Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
Core Tools OOP Host #3802
Core Tools OOP Host #3802
Changes from 60 commits
704ac4e
3c2d57e
8e1a8b8
dba7366
e10e828
8cace5c
b3edb40
e8513a6
58cec33
bda722f
8cb1b78
cef04a0
fa7d681
0a85400
654e34b
ba31c33
e420bee
9689ef4
f705868
c175762
83c0a23
d018052
9e65428
26d67e5
91aae46
8468773
8f51faa
eb07a1f
06b6bd7
525aa6b
38b3920
553cc71
836d939
b0d8e5c
68800d6
d544912
16dfee4
55f42ad
ec55012
125f0be
6a5e6e0
622c3fb
d1da564
bfdaff0
2c29257
b832675
6726456
f7e520b
bf47a3c
09dec2b
5ac6edf
52e9289
c2813c5
c9844d1
b13a532
697847d
4d9681f
ba7caec
4821e73
b656fa1
7545285
e21065e
490eaf9
456aaa7
da89da0
1bbca61
2cdbfe8
cc01008
72af8da
8b31c8e
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we move this logic that is specific to .NET to a different method and out of
RunAsync
? That will help declutter this method and make the code easier to navigate.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will also enable you to reduce the variables as you'll be able to drive the logic without needing to have an additional flag for OOP.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Moved this logic into:
ShouldExitAfterDeterminingHostRuntime
to clean upRunAsync
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: Remove the
else {
and just keep the throw. (reduces some nesting and improve readability)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where do we use the
--no-build
argument?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We use it in line 626?