We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecdc838 commit 21d6506Copy full SHA for 21d6506
.github/workflows/build-publish-nuget.yml
@@ -19,7 +19,7 @@ jobs:
19
build:
20
runs-on: ubuntu-latest
21
env:
22
- DOTNET_VERSION: 8.x.x
+ DOTNET_VERSION: 8.0.100 # same version that's in global.json. Use low version so clients can use it with an older version of compiler
23
SRC_DIRECTORY_PATH_LIB: ${{ github.workspace }}/src
24
NUGET_VERSION: ${{ github.event.inputs.nuget_version_override || '0.1.0-preview' }}.${{ github.run_number }}
25
PUSH_NUGET: ${{ github.event.inputs.push_nuget || false }}
global.json
@@ -0,0 +1,6 @@
1
+{
2
+ "sdk": {
3
+ "version": "8.0.100",
4
+ "rollForward": "disable"
5
+ }
6
0 commit comments