You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+25-1
Original file line number
Diff line number
Diff line change
@@ -97,7 +97,31 @@ jobs:
97
97
uses: actions/setup-dotnet@v3
98
98
with:
99
99
dotnet-version: ${{ matrix.dotnet }}
100
-
- run: dotnet build <my project>
100
+
- name: Execute dotnet
101
+
run: dotnet build <my project>
102
+
```
103
+
>**Note**: Unless a concrete version is specified in the [`global.json`](https://learn.microsoft.com/en-us/dotnet/core/tools/global-json) file, the latest .NET version installed on the runner (including preinstalled versions) will be used [by default](https://learn.microsoft.com/en-us/dotnet/core/versions/selection#the-sdk-uses-the-latest-installed-version). To control this behavior you may want to use temporary `global.json` files:
104
+
105
+
**Matrix testing with temporary global.json creation**
0 commit comments