12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- trigger:
- branches:
- include:
- - '*'
- pool:
-
- vmImage: ubuntu-latest
- steps:
- - task: AdvancedSecurity-Codeql-Init@1
- inputs:
- languages: "csharp"
-
-
-
- enableAutomaticCodeQLInstall: true
-
-
- - task: DotNetCoreCLI@2
- inputs:
- command: 'custom'
- custom: 'restore'
-
- - task: DotNetCoreCLI@2
- inputs:
- command: 'custom'
- custom: 'build'
- arguments: '--no-restore'
- - task: AdvancedSecurity-Dependency-Scanning@1
- - task: AdvancedSecurity-Codeql-Analyze@1
|