diff --git a/src/6-Build/Build.cs b/src/6-Build/Build.cs index af6860e32..c75ce9a86 100644 --- a/src/6-Build/Build.cs +++ b/src/6-Build/Build.cs @@ -113,7 +113,7 @@ internal class Build : NukeBuild /// private Target Lint => _ => - _.DependsOn(Compile) + _.DependsOn(Compile, RestoreDotNetTools) .Executes(() => { // Only on local we want to apply linting changes to the source code @@ -181,7 +181,7 @@ internal class Build : NukeBuild /// private Target RunMutationTests => _ => - _.DependsOn(RunUnitTests, RestoreDotNetTools) + _.DependsOn(RunUnitTests) .Executes(() => { //It will add dashboard reporter for CI