fmt and tests

This commit is contained in:
Adam Hathcock
2024-06-12 12:18:52 +01:00
parent 6bdd0a5bce
commit 782c87cda8
12 changed files with 54 additions and 30 deletions
+2 -2
View File
@@ -83,9 +83,9 @@ Target(
return Glob.Files(".", d);
}
foreach (var file in GetFiles("**/*.Test.csproj"))
foreach (var file in GetFiles("**/*.Tests.csproj"))
{
Run("dotnet", $"test {file} -c Release --no-restore --verbosity=normal");
Run("dotnet", $"test {file} -c Release --no-build --verbosity=normal");
}
}
);