@@ -11,34 +11,33 @@ public class GeneralOptions : BaseOptionPage<General> { }
11
11
12
12
public class General : BaseOptionModel < General >
13
13
{
14
- [ Category ( "Generator" ) ]
14
+ [ Category ( "Workflow Generator" ) ]
15
15
[ DisplayName ( "Default file name" ) ]
16
16
[ Description ( "The base name of the workflow (.yaml) file to be generated" ) ]
17
17
[ DefaultValue ( "build" ) ]
18
18
public string DefaultName { get ; set ; } = "build" ;
19
19
20
- [ Category ( "Generator" ) ]
20
+ [ Category ( "Workflow Generator" ) ]
21
21
[ DisplayName ( "Randomize file name" ) ]
22
22
[ Description ( "If true, a suffix is added to the Default file name to avoid conflicts" ) ]
23
23
[ DefaultValue ( true ) ]
24
24
public bool RandomizeFileName { get ; set ; } = true ;
25
25
26
- [ Category ( "Generator" ) ]
26
+ [ Category ( "Workflow Generator" ) ]
27
27
[ DisplayName ( "Overwrite if exists" ) ]
28
28
[ Description ( "If true, this will overwrite same-named workflow files if exists" ) ]
29
29
[ DefaultValue ( false ) ]
30
30
public bool OverwriteExisting { get ; set ; } = false ;
31
31
32
- [ Category ( "Generator" ) ]
32
+ [ Category ( "Workflow Generator" ) ]
33
33
[ DisplayName ( "Solution Folder" ) ]
34
34
[ Description ( "The Solution Items folder to add these to in the Visual Studio solution" ) ]
35
35
[ DefaultValue ( "Solution Items" ) ]
36
36
public string SolutionFolderName { get ; set ; } = "Solution Items" ;
37
37
38
- [ Category ( "Generator" ) ]
38
+ [ Category ( "Workflow Generator" ) ]
39
39
[ DisplayName ( "Current branch" ) ]
40
40
[ Description ( "Will use the current branch name or 'main' if false" ) ]
41
41
[ DefaultValue ( true ) ]
42
42
public bool UseCurrentBranchName { get ; set ; } = true ;
43
- public int RatingRequests { get ; set ; }
44
43
}
0 commit comments