-
Notifications
You must be signed in to change notification settings - Fork 185
Add support for assignee APIs #54
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
Merged
HowardWolosky
merged 18 commits into
microsoft:master
from
joseartrivera:joriv/Assignees
Nov 30, 2018
Merged
Changes from 13 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
ec5eaa0
initial work
joseartrivera c40f425
Fix some buggers
joseartrivera c1f5bdb
Removed default params
joseartrivera 989f620
Start writing tests
joseartrivera 888ed7b
add tests
joseartrivera 4039fda
Merge remote-tracking branch 'upstream/master' into Assignees
joseartrivera 38cddb6
Finish tests
joseartrivera e56de2c
add usage
joseartrivera 8bedc4b
Fix style checks
joseartrivera 79e2a6b
add new line
joseartrivera de8c266
Few more tweaks
joseartrivera 983ede1
PR feedback
joseartrivera 929cc66
More PR feedback
joseartrivera dc9793d
Delete launch.json
joseartrivera 558d230
make list into var
joseartrivera 282498a
Merge branch 'joriv/Assignees' of github.com:joseartrivera/PowerShell…
joseartrivera 7dac43f
Fix lower case var name
joseartrivera 8fd0459
Remove trailing white space
joseartrivera File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,48 @@ | ||
| { | ||
| // Use IntelliSense to learn about possible attributes. | ||
| // Hover to view descriptions of existing attributes. | ||
| // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
| "version": "0.2.0", | ||
| "configurations": [ | ||
| { | ||
| "type": "PowerShell", | ||
| "request": "launch", | ||
| "name": "PowerShell Launch Current File", | ||
| "script": "${file}", | ||
| "args": [], | ||
| "cwd": "${file}" | ||
| }, | ||
| { | ||
| "type": "PowerShell", | ||
| "request": "launch", | ||
| "name": "PowerShell Launch Current File in Temporary Console", | ||
| "script": "${file}", | ||
| "args": [], | ||
| "cwd": "${file}", | ||
| "createTemporaryIntegratedConsole": true | ||
| }, | ||
| { | ||
| "type": "PowerShell", | ||
| "request": "launch", | ||
| "name": "PowerShell Launch Current File w/Args Prompt", | ||
| "script": "${file}", | ||
| "args": [ | ||
| "${command:SpecifyScriptArgs}" | ||
| ], | ||
| "cwd": "${file}" | ||
| }, | ||
| { | ||
| "type": "PowerShell", | ||
| "request": "attach", | ||
| "name": "PowerShell Attach to Host Process", | ||
| "processId": "${command:PickPSHostProcess}", | ||
| "runspaceId": 1 | ||
| }, | ||
| { | ||
| "type": "PowerShell", | ||
| "request": "launch", | ||
| "name": "PowerShell Interactive Session", | ||
| "cwd": "" | ||
| } | ||
| ] | ||
| } | ||
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.