A game framework written with osu! in mind.

Merge branch 'master' into hex-colour-picker

authored by

Dean Herbert and committed by
GitHub
7985a47e 3bd6778d

+5 -3
+5 -3
build/build.cake
··· 123 123 }); 124 124 }); 125 125 126 - Task("DotnetFormat") 127 - .Does(() => DotNetCoreTool(sln.FullPath, "format", "--dry-run --check")); 126 + // Temporarily disabled until the tool is upgraded to 5.0. 127 + // The version specified in .config/dotnet-tools.json (3.1.37601) won't run on .NET hosts >=5.0.7. 128 + // Task("DotnetFormat") 129 + // .Does(() => DotNetCoreTool(sln.FullPath, "format", "--dry-run --check")); 128 130 129 131 Task("PackFramework") 130 132 .Does(() => { ··· 222 224 .IsDependentOn("Clean") 223 225 .IsDependentOn("DetermineAppveyorBuildProperties") 224 226 .IsDependentOn("CodeFileSanity") 225 - .IsDependentOn("DotnetFormat") 227 + //.IsDependentOn("DotnetFormat") <- To be uncommented after fixing the task. 226 228 .IsDependentOn("InspectCode") 227 229 .IsDependentOn("Test") 228 230 .IsDependentOn("DetermineAppveyorDeployProperties")