Skip to content

Commit

Permalink
Make singleFileToAddToAppCast optional
Browse files Browse the repository at this point in the history
  • Loading branch information
Deadpikle committed Sep 22, 2024
1 parent 9bf29e0 commit b1bc639
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NetSparkle.Tools.AppCastGenerator/AppCastMaker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ public string GetPathToAppCastOutput(string desiredOutputDirectory, string sourc
/// </summary>
/// <param name="sourceBinaryDirectory"></param>
/// <returns>items, product name</returns>
public (List<AppCastItem>?, string?) LoadAppCastItemsAndProductName(string sourceBinaryDirectory, bool useExistingAppCastItems, string outputAppCastFileName, string singleFileToAddToAppCast)
public (List<AppCastItem>?, string?) LoadAppCastItemsAndProductName(string sourceBinaryDirectory, bool useExistingAppCastItems, string outputAppCastFileName, string? singleFileToAddToAppCast = null)
{
var items = new List<AppCastItem>();
var dirFileSearches = GetSearchExtensionsFromString(_opts.Extensions ?? "");
Expand Down

0 comments on commit b1bc639

Please sign in to comment.