-
Notifications
You must be signed in to change notification settings - Fork 438
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
Merge pirocchi/dotnet/merge-develop into develop #594
Conversation
Added C# run command with some tests and some refactoring to the localLambdaRunner and pythonCodeRunner files. Additional work deemed out-of-scope for this feature can be found here: #507
…s for local debug and run (#493)' from develop.
…r attach (#496)' from develop.
…ther extension/view menus (#506)' from develop
…nes (#503)' from develop.
… in time (#512)' from develop.
…le (#554)' from develop.
…context menu to disappear (#560)' from develop
…step (#538)' from develop.
…es for result and duration (#562)' from develop.
…itialized before initial credential validation (#577)' from develop.
… are nonexistent (#579)' from develop.
…n. (#585)' from develop
* Instead of installing VSDBG by manually invoking crossSpawn, use existing ChildProcess utility class. * Simplify code by unconditionally installing debugger each time - the script is smart enough to determine if an install is needed. * DockerContext outputs stdout to output channel * Fix installing debugger on non-windows platforms
… Core functions. (#593)
Codecov Report
@@ Coverage Diff @@
## develop #594 +/- ##
==========================================
- Coverage 55.82% 54.9% -0.92%
==========================================
Files 115 117 +2
Lines 4498 4655 +157
Branches 681 692 +11
==========================================
+ Hits 2511 2556 +45
- Misses 1987 2099 +112
Continue to review full report at Codecov.
|
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.
Only two things seem out of place to me
@@ -271,7 +259,11 @@ function enhanceAwsCloudFormationInstructions( | |||
// and append region to assist in troubleshooting the error | |||
// (command uses CLI configured value--users that don't know this and omit region won't see error) | |||
// tslint:disable-next-line:max-line-length |
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.
Is this still necessary?
'java' | | ||
'ruby' | | ||
'ruby2.5' | ||
'dotnetcore2.0' |
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.
Should this be removed? You can't deploy new dotnetcore2.0
apps.
'java', | ||
'ruby', | ||
'ruby2.5' | ||
'dotnetcore2.0' |
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.
Ditto above
@@ -20,7 +20,7 @@ import { defaultMetricDatum } from '../telemetry/telemetryUtils' | |||
import { toArrayAsync } from '../utilities/collectionUtils' | |||
import { localize } from '../utilities/vsCodeUtils' | |||
|
|||
export type Language = 'python' | 'javascript' | |||
export type Language = 'python' | 'javascript' | 'csharp' |
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: should we rename typescriptCodeLensProvider
to javascriptCodeLensProvider
?
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.
Out of scope for the feature branch merge
c51fb0f
to
ec8b88b
Compare
Due to a series of misteps, we are squashing this entire feature branch into develop.
In the future:
|
Description
Merge the feature branch pirocchi/dotnet/merge-develop back into develop.
Motivation and Context
The feature branch is complete.
Testing
develop
, and mergemerge-develop
into that branch.Checklist
Note: I will add a CHANGELOG entry and update this PR.
License
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.