Skip to content

Commit 3002468

Browse files
committed
fixed test build
1 parent 84c8898 commit 3002468

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/build/Build.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@ class Build : NukeBuild
6868
{
6969
if (!Debugger.IsAttached)
7070
{
71-
RootDirectory.GlobDirectories("bin", "obj", "packages", "publish").ForEach(path => path.CreateOrCleanDirectory());
71+
RootDirectory
72+
.GlobDirectories("bin", "obj", "packages", "publish")
73+
.ForEach(path => path.CreateOrCleanDirectory());
7274
Log.Information("Cleaned bin, obj, packages and publish folders.");
7375
}
7476
});
@@ -111,7 +113,7 @@ class Build : NukeBuild
111113
});
112114

113115
Target RunTests => _ => _
114-
.DependentFor(BuildGenerators)
116+
.DependentFor(GenerateSdkNuGet)
115117
.After(Restore)
116118
.After(SetVersion)
117119
.After(BuildGenerators)

0 commit comments

Comments
 (0)