Skip to content

Commit 1dbc279

Browse files
committed
fix(docs): add missing xml parameter comments in engine and apprunner to resolve cs1573 warnings
1 parent f366adc commit 1dbc279

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

src/Engine.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ public Engine(
9191
/// <param name="diff">If <c>true</c>, shows a diff of changes and returns without applying.</param>
9292
/// <param name="forceReapply">If <c>true</c>, reapplies steps even if previously succeeded.</param>
9393
/// <param name="continueOnError">If <c>true</c>, continues with remaining steps when a step fails.</param>
94+
/// <param name="autoInstallApps">If <c>true</c>, automatically installs missing plugin prerequisite applications.</param>
9495
public async Task RunAsync(Configuration config, bool dryRun, string? profileName = null, bool debug = false, bool diff = false, bool forceReapply = false, bool continueOnError = false, bool autoInstallApps = false)
9596
{
9697
_logger.LogInfo($"--- WinHome v{config.Version} ---");

src/Infrastructure/AppRunner.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ public AppRunner(IEngine engine, IConfigValidator validator, ISecretResolver sec
3333
/// <param name="json">If <c>true</c>, outputs results as JSON.</param>
3434
/// <param name="force">If <c>true</c>, reapplies steps even if previously succeeded.</param>
3535
/// <param name="continueOnError">If <c>true</c>, continues applying remaining steps on failure.</param>
36+
/// <param name="autoInstallApps">If <c>true</c>, automatically installs missing plugin prerequisite applications.</param>
3637
/// <returns>Exit code (0 for success).</returns>
3738
public async Task<int> RunAsync(FileInfo configFile, bool dryRun, string? profile, bool debug, bool diff, bool json, bool force = false, bool continueOnError = false, bool autoInstallApps = false)
3839
{

0 commit comments

Comments
 (0)