From 5e4bcf48d6fe3822e51ae0af1dd9d4b9a4dd6d07 Mon Sep 17 00:00:00 2001 From: Alan Rynne Date: Thu, 31 Oct 2024 10:54:39 +0100 Subject: [PATCH] chore: Remove unnecessary restore step --- ci-build/Program.cs | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/ci-build/Program.cs b/ci-build/Program.cs index afdb1e9..94fdc68 100644 --- a/ci-build/Program.cs +++ b/ci-build/Program.cs @@ -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 => {