Skip to content
This repository was archived by the owner on Jun 22, 2024. It is now read-only.

Swift Building Params

Choose a tag to compare

@vknabel vknabel released this 02 Jun 08:26
· 166 commits to master since this release

2.4.0

  • Bumped internal dependencies to be more reliable on newer vscode versions
  • New setting sde.swiftBuildingParams allows run other commands than swift build #24 jinmingjian/sde#32

Building Params

It is now possible to run different commands when building swift code.

  • "sde.swiftBuildingParams": ["build"]: default setting
  • "sde.swiftBuildingParams": ["build", "--build-path", ".vscode-build"]: build in different directory, see #24
  • "sde.swiftBuildingParams": ["build", "--build-tests"]: compile tests, but do not run them
  • "sde.swiftBuildingParams": ["test"]: runs unit tests jinmingjian/sde#32