From ef330e527c8b7fb0c5948d020219c44b417d2d5b Mon Sep 17 00:00:00 2001 From: Miha Kralj Date: Wed, 4 Mar 2026 10:03:50 -0800 Subject: [PATCH] fix: target quantalib.csproj instead of .slnx for inspectcode Analysis of full .slnx (800+ files across 5 projects) still times out even with --no-build. Target lib/quantalib.csproj directly to scope analysis to the main library (~400 files). Consistent with proven local inspectcode approach. --- .github/workflows/Publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Publish.yml b/.github/workflows/Publish.yml index 2e8b084f..1e4afae9 100644 --- a/.github/workflows/Publish.yml +++ b/.github/workflows/Publish.yml @@ -83,7 +83,7 @@ jobs: - name: Run ReSharper InspectCode (SARIF) run: | set +e - jb inspectcode QuanTAlib.slnx \ + jb inspectcode lib/quantalib.csproj \ --no-build \ --include="**/*.cs" \ --format=sarif \