Fix ForAgentIdentity hardcoded 'AzureAd' ConfigurationSection to respect AuthenticationOptionsName #2031
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "AOT Check" | |
| on: | |
| push: | |
| branches: [ "master", "rel/v2" ] | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| - ready_for_review | |
| branches: [ "master", "rel/v2" ] | |
| env: | |
| TargetNetNext: False | |
| jobs: | |
| analyze: | |
| runs-on: windows-latest | |
| name: AOT check | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 1 | |
| - name: Setup .NET 9.0.x | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: 9.0.x | |
| - name: Setup .NET 10.0.x | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: 10.0.x | |
| - name: Runs AOT check with .NET 9.0 | |
| id: aot-powershell-net9 | |
| run: build\test-aot.ps1 'net9.0' | |
| - name: Runs AOT check with .NET 10.0 | |
| id: aot-powershell-net10 | |
| run: build\test-aot.ps1 'net10.0' | |