|
60 | 60 | # we need to install specific version because of this bug: https://github.com/dotnet/sdk/issues/24037 |
61 | 61 | dotnet tool install fsxc --version 0.5.9.1 |
62 | 62 |
|
63 | | - find . -type f -name "*.fsx" | xargs -t -I {} DOTNET_ROLL_FORWARD=major dotnet fsxc {} |
| 63 | + # fsxc was built with .NET6.x |
| 64 | + export DOTNET_ROLL_FORWARD=major |
| 65 | +
|
| 66 | + find . -type f -name "*.fsx" | xargs -t -I {} fsxc {} |
64 | 67 |
|
65 | 68 | macOS--mono-only: |
66 | 69 | runs-on: macOS-13 |
@@ -155,7 +158,10 @@ jobs: |
155 | 158 | # we need to install specific version because of this bug: https://github.com/dotnet/sdk/issues/24037 |
156 | 159 | dotnet tool install fsxc --version 0.5.9.1 |
157 | 160 |
|
158 | | - find . -type f -name "*.fsx" | xargs -t -I {} DOTNET_ROLL_FORWARD=major dotnet fsxc {} |
| 161 | + # fsxc was built with .NET6.x |
| 162 | + export DOTNET_ROLL_FORWARD=major |
| 163 | +
|
| 164 | + find . -type f -name "*.fsx" | xargs -t -I {} fsxc {} |
159 | 165 |
|
160 | 166 | windows--legacyFramework-only: |
161 | 167 | runs-on: windows-2022 |
@@ -214,7 +220,10 @@ jobs: |
214 | 220 | # we need to install specific version because of this bug: https://github.com/dotnet/sdk/issues/24037 |
215 | 221 | dotnet tool install fsxc --version 0.5.9.1 |
216 | 222 |
|
217 | | - find . -type f -name "*.fsx" | xargs -t -I {} DOTNET_ROLL_FORWARD=major dotnet fsxc {} |
| 223 | + # fsxc was built with .NET6.x |
| 224 | + export DOTNET_ROLL_FORWARD=major |
| 225 | +
|
| 226 | + find . -type f -name "*.fsx" | xargs -t -I {} fsxc {} |
218 | 227 |
|
219 | 228 | linux24-github--dotnet-and-mono: |
220 | 229 | runs-on: ubuntu-24.04 |
@@ -344,7 +353,10 @@ jobs: |
344 | 353 | # we need to install specific version because of this bug: https://github.com/dotnet/sdk/issues/24037 |
345 | 354 | dotnet tool install fsxc --version 0.5.9.1 |
346 | 355 |
|
347 | | - find . -type f -name "*.fsx" | xargs -t -I {} DOTNET_ROLL_FORWARD=major dotnet fsxc {} |
| 356 | + # fsxc was built with .NET6.x |
| 357 | + export DOTNET_ROLL_FORWARD=major |
| 358 | +
|
| 359 | + find . -type f -name "*.fsx" | xargs -t -I {} fsxc {} |
348 | 360 |
|
349 | 361 | linux24-vanilla--stockdotnet6-and-newmono: |
350 | 362 | runs-on: ubuntu-24.04 |
@@ -388,7 +400,10 @@ jobs: |
388 | 400 | # we need to install specific version because of this bug: https://github.com/dotnet/sdk/issues/24037 |
389 | 401 | dotnet tool install fsxc --version 0.5.9.1 |
390 | 402 |
|
391 | | - find . -type f -name "*.fsx" | xargs -t -I {} DOTNET_ROLL_FORWARD=major dotnet fsxc {} |
| 403 | + # fsxc was built with .NET6.x |
| 404 | + export DOTNET_ROLL_FORWARD=major |
| 405 | +
|
| 406 | + find . -type f -name "*.fsx" | xargs -t -I {} fsxc {} |
392 | 407 |
|
393 | 408 | linux24-vanilla--stockdotnet6-and-stockmono: |
394 | 409 | runs-on: ubuntu-24.04 |
@@ -430,7 +445,10 @@ jobs: |
430 | 445 | # we need to install specific version because of this bug: https://github.com/dotnet/sdk/issues/24037 |
431 | 446 | dotnet tool install fsxc --version 0.5.9.1 |
432 | 447 |
|
433 | | - find . -type f -name "*.fsx" | xargs -t -I {} DOTNET_ROLL_FORWARD=major dotnet fsxc {} |
| 448 | + # fsxc was built with .NET6.x |
| 449 | + export DOTNET_ROLL_FORWARD=major |
| 450 | +
|
| 451 | + find . -type f -name "*.fsx" | xargs -t -I {} fsxc {} |
434 | 452 |
|
435 | 453 | linux24-vanilla--newmono-only: |
436 | 454 | runs-on: ubuntu-24.04 |
|
0 commit comments