Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1023 Bytes

File metadata and controls

31 lines (23 loc) · 1023 Bytes

Development Notes

  1. Build & Run

    git clone https://github.com/doggy8088/quicktype-vscode-refresh.git
    cd quicktype-vscode-refresh
    npm install
    code .
    
    # Hit F5 to run
  2. Update quicktype source code

    Use Node 8.x and Ubuntu to build this project

    git clone https://github.com/doggy8088/quicktype.git -b CSharp-SystemTextJson
    cd quicktype
    npm install --ignore-scripts # Install dependencies
    npm install -g typescript    # Install typescript globally
    tsc --project src/cli        # Rebuild
    node dist/cli/index.js       # Run
    npm run build
    npm run pub

    Build status

    I also have a quicktype-csharp-demo repo that is for testing the recent implementation of System.Text.Json support.