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
Rename
Microsoft.Terminal.TerminalControl
to.Control
; Split into dll & lib #9472Rename
Microsoft.Terminal.TerminalControl
to.Control
; Split into dll & lib #9472Changes from 6 commits
2402c59
24765d7
54f443b
322d511
8f8cf59
eee5bee
04d403c
e8d06d7
f8e969e
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.
please make absolutely certain your project configurations are correct for a new project. We had some issues earlier where new projects were set to build for DotNet_x86Test and DotNet_x64Test and AnyCPU(!) on debug/release when they were not projects that the wpf control needed. This caused build failures later on when the release pipeline tried to build the WPF control on its own.
I suspect this project is Debug+Release x86+64 only, no audit no dotnet no anycpu...
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.
I straight up copied TerminalControl's original lines here. If this is wrong, how will I know?
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.
it looks like
*|DotNet_x64Test.*
,*|DotNet_x86Test.*
, and*|Any CPU.*
all always map toWin32
. The Audit lines are all weird:presumably though should all map to either Audit, Debug or Release, but presumably all the same thing.
Then again, TerminalAppLib is the same way:
so maybe this is fine