From 7c114cd69abc9f743f3c149b3ed5c189d0a002e8 Mon Sep 17 00:00:00 2001 From: Dan Balasescu Date: Wed, 15 Apr 2026 01:10:54 +0900 Subject: [PATCH] Update CodeFileSanity (#37293) Has been failing on master for some time now because .NET 6 is not supported anymore. --- .config/dotnet-tools.json | 4 ++-- ...{MacOsAppLocationChecker.cs => MacOSAppLocationChecker.cs} | 0 osu.Game/Beatmaps/BeatmapSetNominationStatus.cs | 2 +- osu.Game/Beatmaps/BeatmapSetNominationStatusRequiredMeta.cs | 2 +- ...RulesetBeatmapDifficulty.cs => RulesetBeatmapAttribute.cs} | 0 .../{ResultScreen.MainPanel.cs => ResultsScreen.MainPanel.cs} | 0 6 files changed, 4 insertions(+), 4 deletions(-) rename osu.Desktop/MacOS/{MacOsAppLocationChecker.cs => MacOSAppLocationChecker.cs} (100%) rename osu.Game/Rulesets/Difficulty/{RulesetBeatmapDifficulty.cs => RulesetBeatmapAttribute.cs} (100%) rename osu.Game/Screens/OnlinePlay/Matchmaking/RankedPlay/{ResultScreen.MainPanel.cs => ResultsScreen.MainPanel.cs} (100%) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index dcc47685ee..4623d46784 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -10,7 +10,7 @@ "rollForward": false }, "codefilesanity": { - "version": "0.0.37", + "version": "0.0.41", "commands": [ "CodeFileSanity" ], @@ -24,4 +24,4 @@ "rollForward": false } } -} \ No newline at end of file +} diff --git a/osu.Desktop/MacOS/MacOsAppLocationChecker.cs b/osu.Desktop/MacOS/MacOSAppLocationChecker.cs similarity index 100% rename from osu.Desktop/MacOS/MacOsAppLocationChecker.cs rename to osu.Desktop/MacOS/MacOSAppLocationChecker.cs diff --git a/osu.Game/Beatmaps/BeatmapSetNominationStatus.cs b/osu.Game/Beatmaps/BeatmapSetNominationStatus.cs index 267e46b0d4..b23bcb371c 100644 --- a/osu.Game/Beatmaps/BeatmapSetNominationStatus.cs +++ b/osu.Game/Beatmaps/BeatmapSetNominationStatus.cs @@ -20,6 +20,6 @@ namespace osu.Game.Beatmaps /// The number of nominations required so that the map is eligible for qualification. /// [JsonProperty(@"required_meta")] - public BeatmapSetNominationRequiredMeta RequiredMeta { get; set; } = new BeatmapSetNominationRequiredMeta(); + public BeatmapSetNominationStatusRequiredMeta RequiredMeta { get; set; } = new BeatmapSetNominationStatusRequiredMeta(); } } diff --git a/osu.Game/Beatmaps/BeatmapSetNominationStatusRequiredMeta.cs b/osu.Game/Beatmaps/BeatmapSetNominationStatusRequiredMeta.cs index 44d31d7b2c..f5169721ce 100644 --- a/osu.Game/Beatmaps/BeatmapSetNominationStatusRequiredMeta.cs +++ b/osu.Game/Beatmaps/BeatmapSetNominationStatusRequiredMeta.cs @@ -8,7 +8,7 @@ namespace osu.Game.Beatmaps /// /// Contains information about the number of nominations required for a beatmap set. /// - public class BeatmapSetNominationRequiredMeta + public class BeatmapSetNominationStatusRequiredMeta { /// /// The number of nominations required for difficulties of the main ruleset. diff --git a/osu.Game/Rulesets/Difficulty/RulesetBeatmapDifficulty.cs b/osu.Game/Rulesets/Difficulty/RulesetBeatmapAttribute.cs similarity index 100% rename from osu.Game/Rulesets/Difficulty/RulesetBeatmapDifficulty.cs rename to osu.Game/Rulesets/Difficulty/RulesetBeatmapAttribute.cs diff --git a/osu.Game/Screens/OnlinePlay/Matchmaking/RankedPlay/ResultScreen.MainPanel.cs b/osu.Game/Screens/OnlinePlay/Matchmaking/RankedPlay/ResultsScreen.MainPanel.cs similarity index 100% rename from osu.Game/Screens/OnlinePlay/Matchmaking/RankedPlay/ResultScreen.MainPanel.cs rename to osu.Game/Screens/OnlinePlay/Matchmaking/RankedPlay/ResultsScreen.MainPanel.cs