Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: longbridge/openapi
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.3.0
Choose a base ref
...
head repository: longbridge/openapi
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 1 commit
  • 4 files changed
  • 2 contributors

Commits on Jun 10, 2026

  1. fix(ci): replace msbuild longbridge.sln with cmake --build for Windows (

    #541)
    
    ## Problem
    
    `windows-latest` runner was upgraded to VS2026 (MSBuild 18.6.3), which
    generates a different `.sln` filename than VS2022. The Makefile.toml had
    `longbridge.sln` hardcoded, causing:
    
    ```
    MSBUILD : error MSB1009: Project file does not exist.
    Switch: longbridge.sln
    ```
    
    ## Fix
    
    Replace `msbuild longbridge.sln` with `cmake --build .` in
    `c/Makefile.toml` and `cpp/Makefile.toml`. `cmake --build` delegates to
    the underlying build system and doesn't depend on the `.sln` filename.
    
    **Before:**
    ```toml
    [tasks.c.windows]
    command = "msbuild"
    args = ["longbridge.sln", "-p:Configuration=Debug", "/t:cargo-build_longbridge_c"]
    ```
    
    **After:**
    ```toml
    [tasks.c.windows]
    command = "cmake"
    args = ["--build", ".", "--config", "Debug", "--target", "cargo-build_longbridge_c"]
    ```
    
    This change is backward-compatible with VS2022 and works with any cmake
    generator.
    
    ---------
    
    Co-authored-by: Claude Sonnet 4.6 (1M context) <[email protected]>
    hogan-yuan and claude authored Jun 10, 2026
    Configuration menu
    Copy the full SHA
    4300207 View commit details
    Browse the repository at this point in the history
Loading