Skip to content

GH4520: add slnx support to SolutionParser #2168

GH4520: add slnx support to SolutionParser

GH4520: add slnx support to SolutionParser #2168

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [ develop, main]
pull_request:
branches: [ develop ]
schedule:
- cron: '41 21 * * 2'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- language: 'csharp'
build-mode: 'autobuild'
steps:
- name: Checkout repository
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Install .NET SDK 8.0.x - 9.0.x
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
8.0.x
9.0.x
- name: Install .NET SDK (global.json)
uses: actions/setup-dotnet@v5
with:
global-json-file: global.json
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
- name: Autobuild
uses: github/codeql-action/autobuild@v4
env:
CAKE_INSTALL_SUPPORTED_SDKS: true
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4