mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 20:13:21 +08:00
Move compile to the correct task.
The dotnetcore... commands all contain compiling.
This commit is contained in:
parent
1b779dae77
commit
309e74afac
@ -43,6 +43,7 @@ Task("Restore Nuget")
|
|||||||
|
|
||||||
Task("InspectCode")
|
Task("InspectCode")
|
||||||
.IsDependentOn("Restore Nuget")
|
.IsDependentOn("Restore Nuget")
|
||||||
|
.IsDependentOn("Compile")
|
||||||
.Does(() => {
|
.Does(() => {
|
||||||
InspectCode(osuSolution, new InspectCodeSettings {
|
InspectCode(osuSolution, new InspectCodeSettings {
|
||||||
CachesHome = "inspectcode",
|
CachesHome = "inspectcode",
|
||||||
@ -62,7 +63,6 @@ Task("CodeFileSanity")
|
|||||||
|
|
||||||
Task("Build")
|
Task("Build")
|
||||||
.IsDependentOn("CodeFileSanity")
|
.IsDependentOn("CodeFileSanity")
|
||||||
.IsDependentOn("Compile")
|
|
||||||
.IsDependentOn("InspectCode")
|
.IsDependentOn("InspectCode")
|
||||||
.IsDependentOn("Test");
|
.IsDependentOn("Test");
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user