mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 07:06:35 +09:00
Move compile to the correct task.
The dotnetcore... commands all contain compiling.
This commit is contained in:
@ -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");
|
||||
|
||||
|
Reference in New Issue
Block a user