VS Code Extension

SimBuild

Build and install your iOS app to a chosen simulator directly from VS Code—no Xcode UI needed.

What it does

Requirements

Install

Quickstart

  1. Open the iOS project folder in VS Code that contains a `.xcodeproj` or `.xcworkspace`.
  2. Open the Command Palette (Cmd/Ctrl+Shift+P) and choose:
    `SimBuild: Build`
    `SimBuild: Build and Run`
  3. On first run, select a scheme and a simulator device.
  4. Watch progress in the SimBuild output panel; it installs and launches the app when done.

Commands

simbuild.build

Build the current project.

simbuild.run

Build and run on a simulator.

simbuild.selectSimulator

Pick a simulator device.

simbuild.selectScheme

Pick a scheme.

simbuild.clean

Clean build artifacts.

Settings

{
  "simbuild.defaultSimulator": "iPhone 15 Pro",
  "simbuild.derivedDataPath": "./build",
  "simbuild.showBuildTime": true
}
simbuild.defaultSimulator"iPhone 15 Pro"
simbuild.derivedDataPath"./build"
simbuild.showBuildTimetrue

Development

Troubleshooting