fix restore

This commit is contained in:
Adam Hathcock
2023-03-21 13:44:02 +00:00
parent fa2a52ff41
commit bf93bbf5f8

View File

@@ -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,