Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 898 Bytes

HOW_TO_BUILD.md

File metadata and controls

41 lines (28 loc) · 898 Bytes

How to build/install extension from a repo

Open terminal to install required libraries (Also make sure you've installed Xcode, xcbeautify, xcodeproj):

  • install pyinstaller and psutil (needed to build Xcode proxy build service)
pip install pyinstaller
pip install psutil
  • install npm
brew install node
  • clone git repo and update submodules:
git clone https://github.com/fireplusteam/ios_vs_code.git
git submodule update --init --recursive
  • install vsce package
brew install vsce
    1. Open Visual Studio Code.
    2. Press Cmd+Shift+P to open the Command Palette.
    3. Type: Shell Command: Install 'code' command in PATH.
  • navigate to repo folder in your terminal and run:

./make.sh

If everything configured right, the extension should be built and installed to vs code automatically.