Skip to content

Commit

Permalink
Merge pull request #5980 from dnnsoftware/release/9.13.3
Browse files Browse the repository at this point in the history
Merges build issue fix done in `release/9.13.3` back into `develop`
  • Loading branch information
valadas authored Feb 23, 2024
2 parents 6b4ddec + 949cac2 commit 107988a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Build/Build.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
<AdditionalFiles Include="..\stylecop.json" Link="stylecop.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Cake.BuildSystems.Module" Version="6.1.0" />
<PackageReference Include="Cake.BuildSystems.Module" Version="7.0.0" />
<PackageReference Include="Cake.FileHelpers" Version="7.0.0" />
<PackageReference Include="Cake.Frosting" Version="4.0.0" />
<PackageReference Include="Cake.Git" Version="3.0.0" />
<PackageReference Include="Cake.Issues" Version="4.0.0" />
<PackageReference Include="Cake.Issues.MsBuild" Version="4.0.0" />
<PackageReference Include="Cake.Issues" Version="4.1.0" />
<PackageReference Include="Cake.Issues.MsBuild" Version="4.1.0" />
<PackageReference Include="Cake.Json" Version="7.0.1" />
<PackageReference Include="Cake.XdtTransform" Version="2.0.0" />
<PackageReference Include="Dnn.CakeUtils" Version="2.0.2" />
Expand Down
2 changes: 1 addition & 1 deletion Build/Context.cs
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ private void WriteSettings(ICakeContext context, string settingsFile)
{
context.SerializeJsonToPrettyFile(settingsFile, this.Settings);
context.Information(log => log($"Saved settings to {Path.GetFullPath(settingsFile)}"));
context.Debug(log => log($"Settings: {context.SerializeJson(this.Settings).Replace("{", "{{")}"));
context.Debug(log => log("{0}", $"Settings: {context.SerializeJson(this.Settings)}"));
}
}
}

0 comments on commit 107988a

Please sign in to comment.