From bf93bbf5f8988673ec5d7f962e7da972d93f7665 Mon Sep 17 00:00:00 2001 From: Adam Hathcock Date: Tue, 21 Mar 2023 13:44:02 +0000 Subject: [PATCH] fix restore --- build/Program.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/Program.cs b/build/Program.cs index a54e9b3e..70d4a3e8 100644 --- a/build/Program.cs +++ b/build/Program.cs @@ -43,11 +43,11 @@ Target( Format, () => { - Run("dotnet", "tool restore", "./csharp"); - Run("dotnet", "csharpier --check .", "./csharp"); + Run("dotnet", "tool restore"); + Run("dotnet", "csharpier --check ."); } ); -Target(Restore, DependsOn(Format), () => Run("dotnet", "restore --locked-mode", "./csharp")); +Target(Restore, DependsOn(Format), () => Run("dotnet", "restore")); Target( Build,