Skip to content

Commit

Permalink
Update Build.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisPulman committed Sep 14, 2023
1 parent 7cc5eec commit 79f68f5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class Build : NukeBuild
{
DotNetRestore(s => s.SetProjectFile(Solution));
Solution.RestoreSolutionWorkloads();
////Solution.RestoreSolutionWorkloads();
});

Target Compile => _ => _
Expand All @@ -88,11 +88,11 @@ class Build : NukeBuild
{
var packableProjects = Solution.GetPackableProjects();
packableProjects?.ForEach(project =>
{
Log.Information("Restoring workloads of {Input}", project);
project.RestoreProjectWorkload();
});
////packableProjects?.ForEach(project =>
////{
//// Log.Information("Restoring workloads of {Input}", project);
//// project.RestoreProjectWorkload();
////});
DotNetPack(settings => settings
.SetConfiguration(Configuration)
Expand Down

0 comments on commit 79f68f5

Please sign in to comment.