Fix anonymous-type lambda early-return emitting unresolvable cast #2931
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: Build XPlat Frontends | |
| on: | |
| push: | |
| branches: '**' | |
| pull_request: | |
| branches: [ master, release/** ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: '11.0.x' | |
| dotnet-quality: 'preview' | |
| - name: Install dependencies | |
| run: dotnet restore ILSpy.XPlat.slnf -p:RestoreEnablePackagePruning=false | |
| - name: Build Debug | |
| run: dotnet msbuild ILSpy.XPlat.slnf -p:Configuration=Debug -bl:Debug.binlog | |
| - name: Build Release | |
| run: dotnet msbuild ILSpy.XPlat.slnf -p:Configuration=Release -bl:Release.binlog | |
| - name: list files | |
| if: always() | |
| run: ls -la | |
| - name: print VERSION | |
| if: always() | |
| run: cat VERSION | |
| - name: Upload binlog | |
| if: always() | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: binlog | |
| path: '**/*.binlog' | |
| if-no-files-found: error |