Migrate to .NET 9 #198
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "net90"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Download the artifacts for this pull request:
GUI-less
Only for Developers
We should only merge this once .NET 9 has been released globally out of RC, and the version of the
global.json
is update again to match latest release version.Meanwhile, we need more people to test and see what has happened, e.g. performance regression/broken game functionality.
Pretty sure that's why this was opened as a draft.
There's some low hanging fruit you could probably add to this PR such as the new
Lock
object: https://learn.microsoft.com/en-us/dotnet/api/system.threading.lock?view=net-9.0A quick find replace on
object _lock
has a a lot of hits that are free to update.Those warnings about
Lock
being upcast to object will result in runtime failures. You need to update the method signatures to Lock as well when you pass instances around.Curious why this lock type was reverted to
object
?Monitor
class dependencyLGTM. Seems to give a 1% FPS increase on my setup.
I think all runtime synchronized packages (
System.IO.Hashing
andSystem.Managment
) should be updated to 9.0.0 as well.Can we further simplify the code to
[new()]
for this and next line?done
Improves performance in pretty much every game on my machine (i7-13620H, RTX 4070)
Super Mario Odyssey: +4.2 FPS
The Legend of Zelda: Echoes of Wisdom: +0.6 FPS
Mario Party Superstars +5.3 FPS
Balatro: +2.2 FPS
Minecraft: NSW Edition: +13.7 FPS
@marco-carvalho do you have any reference for "Linq.Any/Linq.FirstOrDefault are now faster than List.Exists/List.Find"? I tried to search but didn't find any existing article or benchmark.
On another note, just came across an article claiming
ToArray
is now always faster thanToList
. Some instances can be changed in the code.@ViRb3
https://github.com/SonarSource/sonar-dotnet/issues/9664
https://github.com/SonarSource/sonar-dotnet/issues/9665
FPS uplift from 86.5 to 93.4 on Densha de Go Stage Select screen with .NET 9 with frame rates unlocked on my system. I haven't found any issues in my library with this patch.
Will this changes break Linux compatibility?
Gives me around 10-15 more FPS in general Areas on Pokemon Violet - Don't see any regression or issues thus far.
Seems to stay more stable at higher FPS - drops down less in general. (Canary can drop down all the way to 80-85 in some areas. Net9 drops down to 98-105 at most)
Uh, no? This PR even has linux builds available. What are you talking about?
@ -0,0 +1,6 @@
<Project>
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<LangVersion>latest</LangVersion>
Why are we setting LangVersion? That's only supposed to be used to force downlevel language versions.
@ -0,0 +1,6 @@
<Project>
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<LangVersion>latest</LangVersion>
I'm only centralizing
<LangVersion>latest</LangVersion>
in theDirectory.Build.props
, some projects of the solution target tonetstandard2.0
What's the status on this? Is it ready for merge or are you still looking for ways to apply the new features?
It is ready for merge since I removed the “draft” status.