We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fba3454 commit 71e343fCopy full SHA for 71e343f
.github/workflows/codeQL.yml
@@ -59,10 +59,12 @@ jobs:
59
global-json-file: global.json
60
61
- name: Restore dependencies
62
- run: dotnet restore $solution
+ run: |
63
+ Get-ChildItem -Path src, test -Recurse -Filter *.csproj | ForEach-Object { dotnet restore $_.FullName }
64
65
- name: Build
- run: dotnet build $solution #--configuration $config #--no-restore -p:FileVersionRevision=$GITHUB_RUN_NUMBER -p:ContinuousIntegrationBuild=true
66
67
+ Get-ChildItem -Path src, test -Recurse -Filter *.csproj | ForEach-Object { dotnet build $_.FullName }
68
69
# Run CodeQL analysis
70
- name: Perform CodeQL Analysis
0 commit comments