Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
jp2masa committed Sep 5, 2024
1 parent fec87d2 commit 626eeca
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build/_build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class Build : NukeBuild
);

Target Compile => _ => _
.After(Restore)
.DependsOn(Restore)
.Executes(
() => DotNetTasks.DotNetBuild(
x => x
Expand All @@ -110,11 +110,12 @@ class Build : NukeBuild
);

Target Pack => _ => _
.After(Compile)
.DependsOn(Compile)
.Executes(
() => DotNetTasks.DotNetPack(
x => x
.SetProject(MovereSlnPath)
.SetConfiguration(Configuration)
.AddProperty("PackageVersionSuffix", PackageVersionSuffix)
)
);
Expand Down

0 comments on commit 626eeca

Please sign in to comment.