First of all, thanks for considering to improve Swift support for Visual Studio Code! In general most of these extensions are created similarly and share the general architecture.
Each of these project above have the following, central files. Many of them are shared, but might differ between extensions. When fixing bugs, it might make sense to replicate them to different extensions.
- extension.ts acts as the entrypoint for the extension.
- Current.ts mostly encapsulating external dependencies for system and vscode access.
- UserInteraction.ts which handles alerts and displaying error messages.
- some *Provider.ts representing the core of the extension.
- execShell.ts provides a platform independent way for shell access.
If you want to release an update to this extension, follow these steps:
- Commit the new version number to the
package.json
. - Create an according release tag in the form of vX.X.X.
- Create a release on GitHub for the tag with autogenerated release notes.
- A new release build should automatically start off.