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
I'm aware that .net 9.0 is not yet supported by Nuke due to #818, but I managed to get a local build to work as long as both .net 8 and .net 9 SDK are installed, the build project targets a net8.0, and the rest of projects target net9.0 frameworks. But I'm unable to make it work when run on GitHub Actions.
The build is run on GitHubActionsImage.WindowsLatest. The bootstrapping file detects the root global.json and installs .net 9.0 SDK, but does not detect the nested global.json and does not install the .net 8.0 SDK.
I guess I could fiddle around with the bootsrapping file so that i does detect them both, but I'm unsure if that is the right approach. I've never worked with multi target/multi framework builds, so I have no idea how to best approach it.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I'm aware that .net 9.0 is not yet supported by Nuke due to #818, but I managed to get a local build to work as long as both .net 8 and .net 9 SDK are installed, the build project targets a
net8.0
, and the rest of projects targetnet9.0
frameworks. But I'm unable to make it work when run on GitHub Actions.My project is setup as fallows:
The build is run on
GitHubActionsImage.WindowsLatest
. The bootstrapping file detects the rootglobal.json
and installs .net 9.0 SDK, but does not detect the nestedglobal.json
and does not install the .net 8.0 SDK.I guess I could fiddle around with the bootsrapping file so that i does detect them both, but I'm unsure if that is the right approach. I've never worked with multi target/multi framework builds, so I have no idea how to best approach it.
Beta Was this translation helpful? Give feedback.
All reactions