Summary

Completed

In this module, you learned how to launch, debug, and publish your extension. Visual Studio Code has built-in support for debugging.

You can publish your app to a sandbox environment with the F5 keyboard shortcut, which will automatically start a debug session as well.

While debugging, you can use the step into and step out features, much like you would with any other debugger that you're familiar with from other programming tools.

You can also debug another session by creating an Attach configuration. For the cloud sandbox, you can only attach to the WebServiceClient to debug APIs.

Visual Studio Code also supports Rapid Application Development (RAD), which allows you to publish only the deltas (changes) instead of publishing the complete package. You can use the Ctrl+Alt+F5 keyboard shortcut for this feature.

Finally, you learned how to package your application and publish it into a production environment.