chore: Remove unnecessary restore step

This commit is contained in:
Alan Rynne
2024-10-31 10:54:39 +01:00
parent 59549e1065
commit 5e4bcf48d6
-13
View File
@@ -5,7 +5,6 @@ using static Bullseye.Targets;
using static SimpleExec.Command;
const string CLEAN = "clean";
const string RESTORE = "restore";
const string BUILD = "build";
const string ZIP = "zip";
const string RESTORE_TOOLS = "restore-tools";
@@ -54,17 +53,6 @@ Target(
}
);
Target(
RESTORE,
Consts.Solutions,
s =>
{
Run("dotnet", $"restore {s}");
}
);
Target(
BUILD_SERVER_VERSION,
DependsOn(RESTORE_TOOLS),
@@ -76,7 +64,6 @@ Target(
Target(
BUILD,
DependsOn(RESTORE),
Consts.Solutions,
s =>
{