-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Task Provider Feature #5659
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
Merged
Task Provider Feature #5659
Changes from all commits
Commits
Show all changes
65 commits
Select commit
Hold shift + click to select a range
1408721
adding standard std version to clang_format_style
2236841
add new cppBuildTaskProvider
ffc0b68
add Sean's changes to tasks
e8eecd9
draft
e8d58aa
draft 2
d3c898a
draft 3 - working
4b34f16
windows version
d8403f1
fix cwd path
8b93a05
fix cwd
5e2da4e
change header and source file set
9f29e3d
minor changes
95284c6
make new instance
ecc01a1
create new instance
f73ad8f
remove compilerPath input
142105c
review changes
b2823b2
solving the error due to space in file name
62ff459
showing the error message
ded59df
Merge branch 'master' into elrashed/3674_2
4b2b34f
fix lint
ce1b647
add set timeout and setinterval from timers
9ebe692
Rename cppbuildTaskProvider.ts to cppBuildTaskProvider.ts
8abef50
fire the events with zero
1a5a301
Merge branch 'elrashed/3674_2' of https://github.com/microsoft/vscode…
95258cb
delete filewatcher
ea4c6b9
Merge branch 'master' into elrashed/3674_2
sean-mcmanus 1182bb2
localize strings
96fea95
Merge branch 'elrashed/3674_2' of https://github.com/microsoft/vscode…
fa075fb
change changelog.md
334b9e2
changelog
4045b90
changelog
73b64c1
change format
e3703cb
wait dobuild
752b0b6
use checkFileExists
d30ce91
after test
0e91565
after test2
4e6f53d
add properties
4b1fbf5
change the doBuild
c0026f9
this.closeEmitter.fire(result);
66644da
change doBuild
7ac3a29
very minor change
caf5e80
Merge branch 'master' into elrashed/3674_2
sean-mcmanus 6d6931a
Merge branch 'master' into elrashed/3674_2
sean-mcmanus bc9a05a
label vs name resolved
805412b
draft
4ae2bd4
draft for Sean
3a785e5
before cleaning the code
fae08d0
Stable, Clean, Before API proposal
4b940c5
adding details to the tasks menue
d4c5312
add TODO
7e8885e
remove extra ",remove description,merge from local
d2d10d4
remove task rename in this versoin
a4841f3
remove TODOs
f78ec14
merge the "default" stuff
3406b5f
remove some parts of proposals
4552894
fix linter errors
e9cf813
Merge branch 'master' into elrashed/3674_2
4d883b6
Merge branch 'master' into elrashed/3674_2
c9b612e
add import * as which from 'which';
d1bf0d8
Merge branch 'master' into elrashed/3674_2
3363b14
clean up the code after version 1.0.0
4e106cf
add new line
1d8183e
adapt to the new Vs Code API
16b07b8
Merge branch 'master' into elrashed/3674_2
b14b33d
linter error
2cb0b47
revert changelog
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
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 |
|---|---|---|
|
|
@@ -219,5 +219,11 @@ | |
| "c_cpp.debuggers.symbolLoadInfo.description": "Explicit control of symbol loading.", | ||
| "c_cpp.debuggers.symbolLoadInfo.loadAll.description": "If true, symbols for all libs will be loaded, otherwise no solib symbols will be loaded. Default value is true.", | ||
| "c_cpp.debuggers.symbolLoadInfo.exceptionList.description": "List of filenames (wildcards allowed) separated by semicolons ';'. Modifies behavior of LoadAll. If LoadAll is true then don't load symbols for libs that match any name in the list. Otherwise only load symbols for libs that match. Example: \"foo.so;bar.so\"", | ||
| "c_cpp.debuggers.requireExactSource.description": "Optional flag to require current source code to match the pdb." | ||
| } | ||
| "c_cpp.debuggers.requireExactSource.description": "Optional flag to require current source code to match the pdb.", | ||
| "c_cpp.taskDefinitions.name.description": "The name of the task", | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should these periods have remained? |
||
| "c_cpp.taskDefinitions.command.description": "The path to either a compiler or script that performs compilation", | ||
| "c_cpp.taskDefinitions.args.description": "Additional arguments to pass to the compiler or compilation script", | ||
| "c_cpp.taskDefinitions.options.description": "Additional command options", | ||
| "c_cpp.taskDefinitions.options.cwd.description": "The current working directory of the executed program or script. If omitted Code's current workspace root is used.", | ||
| "c_cpp.taskDefinitions.detail.description": "Additional details of the task" | ||
| } | ||
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
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
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
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.