-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Changes to IntelliCode and engine downloads #1715
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
Conversation
MikhailArkhipov
commented
May 21, 2018
- Remove user-visible Pythia flag
- Rename it to IntelliCode
- Remove download of Pythia model, it is to be done by a separate extension
- Fold Linux build back to a single linux-x64 since it works in .NET Core 2.1
- Remove packaging of MSIL libraries as check for .NET Runtime is not reliable
Codecov Report
@@ Coverage Diff @@
## master #1715 +/- ##
==========================================
+ Coverage 71.71% 71.84% +0.12%
==========================================
Files 277 277
Lines 13043 12999 -44
Branches 2349 2336 -13
==========================================
- Hits 9354 9339 -15
+ Misses 3548 3524 -24
+ Partials 141 136 -5
Continue to review full report at Codecov.
|
@@ -99,7 +99,8 @@ export interface IPythonSettings { | |||
readonly pythonPath: string; | |||
readonly venvPath: string; | |||
readonly venvFolders: string[]; | |||
readonly pythiaEnabled: boolean; | |||
readonly intelliCodeEnabled: boolean; |
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.
Don't we need to define these two settings (intelliCodeEnabled
and downloadCodeAnalysis
) in package.json
?
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.
Not yet. IntelliCode functionality is not public yet and disabling download is for contributors only (or us).