File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ protected override void OnBuildInitialized()
109
109
. Before ( Restore )
110
110
. Executes ( ( ) =>
111
111
{
112
- SourceDirectory . GlobDirectories ( "**/bin" , "**/obj" ) . ForEach ( DeleteDirectory ) ;
112
+ SourceDirectory . GlobDirectories ( "**/bin" , "**/obj" ) . ForEach ( dir => dir . DeleteDirectory ( ) ) ;
113
113
} ) ;
114
114
115
115
Target Restore => _ => _
@@ -244,7 +244,7 @@ protected override void OnBuildInitialized()
244
244
throw new BuildAbortedException ( "Could not resolve the NuGet API key." ) ;
245
245
}
246
246
247
- foreach ( var nupkg in GlobFiles ( ResultDirectory , "*.nupkg" ) )
247
+ foreach ( var nupkg in ResultDirectory . GlobFiles ( "*.nupkg" ) )
248
248
{
249
249
DotNetNuGetPush ( s => s
250
250
. SetTargetPath ( nupkg )
Original file line number Diff line number Diff line change 11
11
</PropertyGroup >
12
12
13
13
<ItemGroup >
14
- <PackageReference Include =" Nuke.Common" Version =" 6.2.1 " />
14
+ <PackageReference Include =" Nuke.Common" Version =" 8.0.0 " />
15
15
</ItemGroup >
16
16
17
17
<ItemGroup >
You can’t perform that action at this time.
0 commit comments