-
Notifications
You must be signed in to change notification settings - Fork 522
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
Adding C++ template #644
Adding C++ template #644
Conversation
configureWorkspace/config-utils.ts
Outdated
@@ -9,6 +9,18 @@ import { IAzureQuickPickItem, IAzureUserInput } from 'vscode-azureextensionui'; | |||
import { ext } from "../extensionVariables"; | |||
import { Platform, PlatformOS } from '../utils/platform'; | |||
|
|||
export type OS = 'Windows' | 'Linux'; |
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 remove these and instead use the ones from platform.ts (where they were moved to)
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.
Thanks, done. The PlatformOS type from platform.ts was already being used so that shouldn't have still been there.
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.
This applies to the extra Platform enum as well... Thx.
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.
D'oh! Fixed.
Unneeded type, already using PlatformOS from platform.ts
Regarding the lint error:
Looks alphabetized to me...? But you can try this: npm run lint-fix If it's still giving you problems, let me know and I'll take a look. |
Looks good, thanks! I'd like to play with it a little bit before merging... |
I threw a hello world in this repo to save you some typing on getting a C++ app to try this with. |
Thanks! |
Looks great, thanks! Next release should be out very soon. |
Proposed change for #570