File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 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()
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 )
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments