1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 07:42:57 +08:00

Move compile to the correct task.

The dotnetcore... commands all contain compiling.
This commit is contained in:
miterosan 2018-08-04 00:02:31 +02:00
parent 1b779dae77
commit 309e74afac

View File

@ -43,6 +43,7 @@ Task("Restore Nuget")
Task("InspectCode")
.IsDependentOn("Restore Nuget")
.IsDependentOn("Compile")
.Does(() => {
InspectCode(osuSolution, new InspectCodeSettings {
CachesHome = "inspectcode",
@ -62,7 +63,6 @@ Task("CodeFileSanity")
Task("Build")
.IsDependentOn("CodeFileSanity")
.IsDependentOn("Compile")
.IsDependentOn("InspectCode")
.IsDependentOn("Test");