File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,6 @@ partial class Build : NukeBuild
54
54
. Before ( Restore )
55
55
. Executes ( ( ) =>
56
56
{
57
- ExamplesDirectory . GlobDirectories ( "**/bin" , "**/obj" ) . ForEach ( DeleteDirectory ) ;
58
57
SourceDirectory . GlobDirectories ( "**/bin" , "**/obj" ) . ForEach ( DeleteDirectory ) ;
59
58
TestsDirectory . GlobDirectories ( "**/bin" , "**/obj" ) . ForEach ( DeleteDirectory ) ;
60
59
EnsureCleanDirectory ( ArtifactsDirectory ) ;
@@ -127,7 +126,7 @@ partial class Build : NukeBuild
127
126
. Executes ( ( ) =>
128
127
{
129
128
var packTargets = GetActiveProjects ( )
130
- . Where ( x => ! x . Name . Contains ( ".Test " ) ) ;
129
+ . Where ( x => ! x . Name . EndsWith ( ".Tests " ) ) ;
131
130
132
131
var version = TagVersion ;
133
132
var suffix = "" ;
Original file line number Diff line number Diff line change 11
11
</PropertyGroup >
12
12
13
13
<ItemGroup >
14
- <PackageReference Include =" Nuke.Common" Version =" 5.2.1 " />
14
+ <PackageReference Include =" Nuke.Common" Version =" 5.3.0 " />
15
15
</ItemGroup >
16
16
17
17
</Project >
You can’t perform that action at this time.
0 commit comments