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 635d074
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions build/_build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -112,11 +112,16 @@ class Build : NukeBuild
Target Pack => _ => _
.After(Compile)
.Executes(
() => DotNetTasks.DotNetPack(
() =>
{
DotNetTasks.DotNetPack(
x => x
.SetProject(MovereSlnPath)
.AddProperty("PackageVersionSuffix", PackageVersionSuffix)
)
);
Serilog.Log.Information(EnvironmentInfo.GetVariable("CONFIGURATION"));
Serilog.Log.Information(Configuration);
}
);

Target PushMyGet => _ => _
Expand Down

0 comments on commit 635d074

Please sign in to comment.