Migrating for FlashBuilder #670
-
I have a large workspace in FlashBuilder with several Flex LIbrary projects that are then used in an Air application also included in this workspace. In Flash Builder I can choose to "build" the air application and it will recompile the projects if they changed since the last compile. Is there a way to do that with this extension? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You can use the https://code.visualstudio.com/docs/editor/tasks#_compound-tasks It will recompile the libraries every time, though, even if nothing changed. EDIT: I created a Gist that shows how to do it https://gist.github.com/joshtynjala/7652881ff6b2dc53fc25f2c74d38c2c5 |
Beta Was this translation helpful? Give feedback.
You can use the
dependsOn
field in .vscode/tasks.json to build libraries before the main application.https://code.visualstudio.com/docs/editor/tasks#_compound-tasks
It will recompile the libraries every time, though, even if nothing changed.
EDIT: I created a Gist that shows how to do it
https://gist.github.com/joshtynjala/7652881ff6b2dc53fc25f2c74d38c2c5