Skip to content

Commit

Permalink
Add global.json
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalberger committed Nov 20, 2024
1 parent 4438a68 commit 6224dd6
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ install:
- ps: '& "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" -Version 5.0.408 -InstallDir $env:DOTNET_INSTALL_DIR'
- ps: '& "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" -Version 6.0.411 -InstallDir $env:DOTNET_INSTALL_DIR'
- ps: '& "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" -Version 7.0.305 -InstallDir $env:DOTNET_INSTALL_DIR'
- ps: '& "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" -Version 8.0.100 -InstallDir $env:DOTNET_INSTALL_DIR'
- ps: '& "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" -Version 8.0.404 -InstallDir $env:DOTNET_INSTALL_DIR'
- ps: $env:Path = "$env:DOTNET_INSTALL_DIR;$env:Path"
- ps: dotnet --info
- ps: Install-Product node 20
Expand Down
7 changes: 7 additions & 0 deletions Cake.Frosting.Issues.Recipe/global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"sdk": {
"allowPrerelease": true,
"version": "8.0.404",
"rollForward": "latestFeature"
}
}
7 changes: 7 additions & 0 deletions tests/frosting/net6.0/global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"sdk": {
"allowPrerelease": true,
"version": "6.0.411",
"rollForward": "latestFeature"
}
}
7 changes: 7 additions & 0 deletions tests/frosting/net7.0/global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"sdk": {
"allowPrerelease": true,
"version": "7.0.305",
"rollForward": "latestFeature"
}
}
7 changes: 7 additions & 0 deletions tests/frosting/net8.0/global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"sdk": {
"allowPrerelease": true,
"version": "8.0.404",
"rollForward": "latestFeature"
}
}
7 changes: 7 additions & 0 deletions tests/script-runner/global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"sdk": {
"allowPrerelease": true,
"version": "6.0.411",
"rollForward": "latestFeature"
}
}

0 comments on commit 6224dd6

Please sign in to comment.