Skip to content
This repository was archived by the owner on Apr 28, 2024. It is now read-only.

Commit 7be796f

Browse files
upgrade: dependency
* nuke 6.2.1 -> 8.0.0
1 parent 19da7f4 commit 7be796f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

nuke/Build.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ protected override void OnBuildInitialized()
109109
.Before(Restore)
110110
.Executes(() =>
111111
{
112-
SourceDirectory.GlobDirectories("**/bin", "**/obj").ForEach(DeleteDirectory);
112+
SourceDirectory.GlobDirectories("**/bin", "**/obj").ForEach(dir => dir.DeleteDirectory());
113113
});
114114

115115
Target Restore => _ => _
@@ -244,7 +244,7 @@ protected override void OnBuildInitialized()
244244
throw new BuildAbortedException("Could not resolve the NuGet API key.");
245245
}
246246

247-
foreach (var nupkg in GlobFiles(ResultDirectory, "*.nupkg"))
247+
foreach (var nupkg in ResultDirectory.GlobFiles("*.nupkg"))
248248
{
249249
DotNetNuGetPush(s => s
250250
.SetTargetPath(nupkg)

nuke/_build.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</PropertyGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="Nuke.Common" Version="6.2.1" />
14+
<PackageReference Include="Nuke.Common" Version="8.0.0" />
1515
</ItemGroup>
1616

1717
<ItemGroup>

0 commit comments

Comments
 (0)