BuildGraph: Enable warnings for declaring visibile instance fields in BuildGraph.Automation.

[CL 33817522 by ben marsh in ue5-main branch]
This commit is contained in:
ben marsh
2024-05-21 20:54:09 -04:00
parent f32e6accf4
commit 7918a7011d
63 changed files with 381 additions and 378 deletions

View File

@@ -22,31 +22,31 @@ namespace AutomationTool.Tasks
/// Path to the config file
/// </summary>
[TaskParameter(ValidationType = TaskParameterValidationType.FileSpec)]
public string File;
public string File { get; set; }
/// <summary>
/// The section name to modify
/// </summary>
[TaskParameter]
public string Section;
public string Section { get; set; }
/// <summary>
/// The property name to set
/// </summary>
[TaskParameter]
public string Key;
public string Key { get; set; }
/// <summary>
/// The property value to set
/// </summary>
[TaskParameter]
public string Value;
public string Value { get; set; }
/// <summary>
/// Tag to be applied to the extracted files
/// </summary>
[TaskParameter(Optional = true, ValidationType = TaskParameterValidationType.TagList)]
public string Tag;
public string Tag { get; set; }
}
/// <summary>