Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Try building with .NET 8.0 #5322

Draft
wants to merge 10 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Use .NET 8.0 when executing generated C# code
  • Loading branch information
atomb committed Apr 15, 2024
commit 929e8d5deb4c006d4c4a09013183687594ae42df
2 changes: 1 addition & 1 deletion Source/DafnyCore/Backends/CSharp/CsharpBackend.cs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public class CsharpBackend : ExecutableBackend {
tfm = "net8.0",
framework = new {
name = "Microsoft.NETCore.App",
version = "6.0.0",
version = "8.0.0",
rollForward = "LatestMinor"
}
}
Expand Down
2 changes: 1 addition & 1 deletion Source/DafnyDriver.Test/LanguageServerProcessTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ public class ShortLivedProcessStarter {{
tfm = "net8.0",
framework = new {
name = "Microsoft.NETCore.App",
version = "6.0.0",
version = "8.0.0",
rollForward = "LatestMinor"
}
}
Expand Down