Dev: Optimize Launch Configs and Enable Hot Reload#5094
Merged
JustinGrote merged 1 commit intomainfrom Nov 22, 2024
Merged
Conversation
6b30cca to
6c50282
Compare
a3ad00f to
ab06afd
Compare
andyleejordan
requested changes
Nov 22, 2024
Member
andyleejordan
left a comment
There was a problem hiding this comment.
Awesome, excited to use it.
0b4595c to
d611a44
Compare
ea67e43 to
d63e652
Compare
andyleejordan
approved these changes
Nov 22, 2024
d63e652 to
f44d99f
Compare
Collaborator
Author
|
@andyleejordan thanks! Here's a build to use till the next preview: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Improvements to the developer inner loop experience for the extension.
Needs: PowerShell/PowerShellEditorServices#2202
Tip
To test this PR you need to build the extension and install it, as it adds some new commands and configs. Here is a pre-built VSIX
Launch Config Pre-Launch Tasks
The regular,
temp, andisolatedlaunch configurations have been optimized two prelaunch tasks:Auto-Attach PSES Debugger
The launch configurations now auto-attach the PSES debugger rather than prompting for a PID.
Capture.mp4
Auto Extension Restart on Changes
When the extension is running in dev (debug) mode, changes to the extension files auto-trigger an extension host restart. In temp and isolated, this is pretty fast especially compared to a window reload.
Capture.mp4
PSES Hot Reload
Hot Reload is now enabled, allowing testing of in-flight changes. Really handy for Handler development.
Capture.mp4
Other Changes