-
Notifications
You must be signed in to change notification settings - Fork 19
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
Compiler integration with the Project Explorer (& Task Providers) #23
Comments
Can be done after microsoft/vscode#71027 |
If I recall correctly, you mentioned this will likely use the "Project Explorer" instead of the VS Code Task system. Ill tag this with the project explorer label so it shows up under that filter. |
Some context on where the tasks thing went. Here's an example task provider: https://github.com/microsoft/vscode-extension-samples/blob/master/task-provider-sample/src/extension.ts Problem is, if you add a custom task, like "type": "papyrus", you can't just add a bunch of custom configuration values to that. You must have a provider that provides specific tasks, and there has to be one that matches it. https://github.com/microsoft/vscode-extension-samples/blob/master/task-provider-sample/src/extension.ts#L30 What we can do, though, is have a task schema that has an optional My thinking would be to just have the provider produce tasks for each combination of the (asm/debug/etc.) settings if you want to override. |
This is now done. We now autodiscover build tasks for .PPJ files (as soon as the PR I submitted with that fix gets merged, hint hint) |
Blocked by microsoft/vscode#33523
The text was updated successfully, but these errors were encountered: