|
36 | 36 | - name: Set up .NET |
37 | 37 | uses: actions/setup-dotnet@v4 |
38 | 38 | with: |
39 | | - dotnet-version: '8.0.x' |
| 39 | + dotnet-version: '8.0.408' |
40 | 40 | - name: Bootstrap local dependency feed (Windows) |
41 | 41 | if: runner.os == 'Windows' |
42 | 42 | shell: pwsh |
|
51 | 51 | shell: pwsh |
52 | 52 | run: | |
53 | 53 | if ('${{ matrix.tfm }}' -eq 'net8.0') { |
54 | | - dotnet build KeelMatrix.QueryWatch.sln --configuration Release --no-restore -f net8.0 |
| 54 | + dotnet build ./src/KeelMatrix.QueryWatch/KeelMatrix.QueryWatch.csproj --configuration Release --no-restore -f net8.0 |
| 55 | + if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } |
| 56 | + dotnet build ./src/KeelMatrix.QueryWatch.Contracts/KeelMatrix.QueryWatch.Contracts.csproj --configuration Release --no-restore -f net8.0 |
| 57 | + if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } |
| 58 | + dotnet build ./src/KeelMatrix.QueryWatch.EfCore/KeelMatrix.QueryWatch.EfCore.csproj --configuration Release --no-restore -f net8.0 |
55 | 59 | exit $LASTEXITCODE |
56 | 60 | } |
57 | 61 |
|
|
87 | 91 | - name: Set up .NET |
88 | 92 | uses: actions/setup-dotnet@v4 |
89 | 93 | with: |
90 | | - dotnet-version: '8.0.x' |
| 94 | + dotnet-version: '8.0.408' |
91 | 95 | - name: Bootstrap local dependency feed (Windows) |
92 | 96 | if: runner.os == 'Windows' |
93 | 97 | shell: pwsh |
@@ -129,7 +133,7 @@ jobs: |
129 | 133 | - name: Set up .NET |
130 | 134 | uses: actions/setup-dotnet@v4 |
131 | 135 | with: |
132 | | - dotnet-version: '8.0.x' |
| 136 | + dotnet-version: '8.0.408' |
133 | 137 | - name: Bootstrap local dependency feed |
134 | 138 | shell: bash |
135 | 139 | run: bash build/Dev-PackInstallSamples.sh |
@@ -164,7 +168,7 @@ jobs: |
164 | 168 | - name: Set up .NET |
165 | 169 | uses: actions/setup-dotnet@v4 |
166 | 170 | with: |
167 | | - dotnet-version: '8.0.x' |
| 171 | + dotnet-version: '8.0.408' |
168 | 172 | - name: Bootstrap local dependency feed |
169 | 173 | shell: bash |
170 | 174 | run: bash build/Dev-PackInstallSamples.sh |
@@ -232,7 +236,7 @@ jobs: |
232 | 236 | repository: KeelMatrix/Telemetry |
233 | 237 | path: _deps/KeelMatrix.Telemetry/app |
234 | 238 | - uses: actions/setup-dotnet@v4 |
235 | | - with: { dotnet-version: '8.0.x' } |
| 239 | + with: { dotnet-version: '8.0.408' } |
236 | 240 | - name: Bootstrap local dependency feed |
237 | 241 | shell: pwsh |
238 | 242 | run: pwsh -NoProfile -File build/Dev-PackInstallSamples.ps1 |
|
0 commit comments