diff --git a/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/AddLocalGroupMemberCommand.cs b/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/AddLocalGroupMemberCommand.cs index 59cb3067efc..b80f141b9a9 100644 --- a/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/AddLocalGroupMemberCommand.cs +++ b/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/AddLocalGroupMemberCommand.cs @@ -41,7 +41,7 @@ public class AddLocalGroupMemberCommand : PSCmdlet [ValidateNotNull] public Microsoft.PowerShell.Commands.LocalGroup Group { - get { return this.group;} + get { return this.group; } set { this.group = value; } } @@ -62,7 +62,7 @@ public Microsoft.PowerShell.Commands.LocalGroup Group [SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays")] public Microsoft.PowerShell.Commands.LocalPrincipal[] Member { - get { return this.member;} + get { return this.member; } set { this.member = value; } } @@ -79,7 +79,7 @@ public Microsoft.PowerShell.Commands.LocalPrincipal[] Member [ValidateNotNullOrEmpty] public string Name { - get { return this.name;} + get { return this.name; } set { this.name = value; } } @@ -96,7 +96,7 @@ public string Name [ValidateNotNull] public System.Security.Principal.SecurityIdentifier SID { - get { return this.sid;} + get { return this.sid; } set { this.sid = value; } } diff --git a/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/DisableLocalUserCommand.cs b/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/DisableLocalUserCommand.cs index 592c77726fe..9482609f889 100644 --- a/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/DisableLocalUserCommand.cs +++ b/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/DisableLocalUserCommand.cs @@ -91,7 +91,7 @@ public string[] Name [SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays")] public System.Security.Principal.SecurityIdentifier[] SID { - get { return this.sid;} + get { return this.sid; } set { this.sid = value; } } diff --git a/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/EnableLocalUserCommand.cs b/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/EnableLocalUserCommand.cs index 88627ba2e33..808a91c39bb 100644 --- a/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/EnableLocalUserCommand.cs +++ b/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/EnableLocalUserCommand.cs @@ -91,7 +91,7 @@ public string[] Name [SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays")] public System.Security.Principal.SecurityIdentifier[] SID { - get { return this.sid;} + get { return this.sid; } set { this.sid = value; } } diff --git a/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/GetLocalGroupCommand.cs b/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/GetLocalGroupCommand.cs index 4c11a3c4c36..627e615e7a5 100644 --- a/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/GetLocalGroupCommand.cs +++ b/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/GetLocalGroupCommand.cs @@ -59,7 +59,7 @@ public string[] Name [SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays")] public System.Security.Principal.SecurityIdentifier[] SID { - get { return this.sid;} + get { return this.sid; } set { this.sid = value; } } diff --git a/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/GetLocalGroupMemberCommand.cs b/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/GetLocalGroupMemberCommand.cs index 0b3625f6ef7..eb3e690aa61 100644 --- a/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/GetLocalGroupMemberCommand.cs +++ b/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/GetLocalGroupMemberCommand.cs @@ -39,7 +39,7 @@ public class GetLocalGroupMemberCommand : Cmdlet [ValidateNotNull] public Microsoft.PowerShell.Commands.LocalGroup Group { - get { return this.group;} + get { return this.group; } set { this.group = value; } } @@ -56,7 +56,7 @@ public Microsoft.PowerShell.Commands.LocalGroup Group [ValidateNotNullOrEmpty] public string Member { - get { return this.member;} + get { return this.member; } set { this.member = value; } } @@ -75,7 +75,7 @@ public string Member [ValidateNotNullOrEmpty] public string Name { - get { return this.name;} + get { return this.name; } set { this.name = value; } } @@ -94,7 +94,7 @@ public string Name [ValidateNotNullOrEmpty] public System.Security.Principal.SecurityIdentifier SID { - get { return this.sid;} + get { return this.sid; } set { this.sid = value; } } diff --git a/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/NewLocalGroupCommand.cs b/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/NewLocalGroupCommand.cs index b709d22a485..7c56a4c6d64 100644 --- a/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/NewLocalGroupCommand.cs +++ b/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/NewLocalGroupCommand.cs @@ -36,7 +36,7 @@ public class NewLocalGroupCommand : Cmdlet [ValidateNotNull] public string Description { - get { return this.description;} + get { return this.description; } set { this.description = value; } } @@ -55,7 +55,7 @@ public string Description [ValidateLength(1, 256)] public string Name { - get { return this.name;} + get { return this.name; } set { this.name = value; } } diff --git a/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/NewLocalUserCommand.cs b/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/NewLocalUserCommand.cs index d3402b5a4c9..fcadf9a67be 100644 --- a/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/NewLocalUserCommand.cs +++ b/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/NewLocalUserCommand.cs @@ -49,7 +49,7 @@ public class NewLocalUserCommand : PSCmdlet [Parameter(ValueFromPipelineByPropertyName = true)] public System.DateTime AccountExpires { - get { return this.accountexpires;} + get { return this.accountexpires; } set { this.accountexpires = value; } } @@ -64,7 +64,7 @@ public System.DateTime AccountExpires [Parameter(ValueFromPipelineByPropertyName = true)] public System.Management.Automation.SwitchParameter AccountNeverExpires { - get { return this.accountneverexpires;} + get { return this.accountneverexpires; } set { this.accountneverexpires = value; } } @@ -79,7 +79,7 @@ public System.Management.Automation.SwitchParameter AccountNeverExpires [ValidateNotNull] public string Description { - get { return this.description;} + get { return this.description; } set { this.description = value; } } @@ -93,7 +93,7 @@ public string Description [Parameter(ValueFromPipelineByPropertyName = true)] public System.Management.Automation.SwitchParameter Disabled { - get { return this.disabled;} + get { return this.disabled; } set { this.disabled = value; } } @@ -109,7 +109,7 @@ public System.Management.Automation.SwitchParameter Disabled [ValidateNotNull] public string FullName { - get { return this.fullname;} + get { return this.fullname; } set { this.fullname = value; } } @@ -129,7 +129,7 @@ public string FullName [ValidateLength(1, 20)] public string Name { - get { return this.name;} + get { return this.name; } set { this.name = value; } } @@ -147,7 +147,7 @@ public string Name [ValidateNotNull] public System.Security.SecureString Password { - get { return this.password;} + get { return this.password; } set { this.password = value; } } @@ -193,7 +193,7 @@ public System.Management.Automation.SwitchParameter PasswordNeverExpires [Parameter(ValueFromPipelineByPropertyName = true)] public System.Management.Automation.SwitchParameter UserMayNotChangePassword { - get { return this.usermaynotchangepassword;} + get { return this.usermaynotchangepassword; } set { this.usermaynotchangepassword = value; } } diff --git a/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/RemoveLocalGroupMemberCommand.cs b/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/RemoveLocalGroupMemberCommand.cs index 47d0a77784e..a38ff00d9e6 100644 --- a/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/RemoveLocalGroupMemberCommand.cs +++ b/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/RemoveLocalGroupMemberCommand.cs @@ -41,7 +41,7 @@ public class RemoveLocalGroupMemberCommand : PSCmdlet [ValidateNotNull] public Microsoft.PowerShell.Commands.LocalGroup Group { - get { return this.group;} + get { return this.group; } set { this.group = value; } } @@ -62,7 +62,7 @@ public Microsoft.PowerShell.Commands.LocalGroup Group [SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays")] public Microsoft.PowerShell.Commands.LocalPrincipal[] Member { - get { return this.member;} + get { return this.member; } set { this.member = value; } } @@ -79,7 +79,7 @@ public Microsoft.PowerShell.Commands.LocalPrincipal[] Member [ValidateNotNullOrEmpty] public string Name { - get { return this.name;} + get { return this.name; } set { this.name = value; } } @@ -96,7 +96,7 @@ public string Name [ValidateNotNull] public System.Security.Principal.SecurityIdentifier SID { - get { return this.sid;} + get { return this.sid; } set { this.sid = value; } } diff --git a/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/RemoveLocalUserCommand.cs b/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/RemoveLocalUserCommand.cs index 6d6081fef7e..fd479298e21 100644 --- a/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/RemoveLocalUserCommand.cs +++ b/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/RemoveLocalUserCommand.cs @@ -43,7 +43,7 @@ public class RemoveLocalUserCommand : Cmdlet [SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays")] public Microsoft.PowerShell.Commands.LocalUser[] InputObject { - get { return this.inputobject;} + get { return this.inputobject; } set { this.inputobject = value; } } diff --git a/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/RenameLocalGroupCommand.cs b/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/RenameLocalGroupCommand.cs index c594fccb889..d06ce9dc50c 100644 --- a/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/RenameLocalGroupCommand.cs +++ b/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/RenameLocalGroupCommand.cs @@ -41,7 +41,7 @@ public class RenameLocalGroupCommand : Cmdlet [ValidateNotNullOrEmpty] public Microsoft.PowerShell.Commands.LocalGroup InputObject { - get { return this.inputobject;} + get { return this.inputobject; } set { this.inputobject = value; } } @@ -61,7 +61,7 @@ public Microsoft.PowerShell.Commands.LocalGroup InputObject [ValidateNotNullOrEmpty] public string Name { - get { return this.name;} + get { return this.name; } set { this.name = value; } } @@ -78,7 +78,7 @@ public string Name [ValidateNotNullOrEmpty] public string NewName { - get { return this.newname;} + get { return this.newname; } set { this.newname = value; } } @@ -97,7 +97,7 @@ public string NewName [ValidateNotNullOrEmpty] public System.Security.Principal.SecurityIdentifier SID { - get { return this.sid;} + get { return this.sid; } set { this.sid = value; } } diff --git a/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/RenameLocalUserCommand.cs b/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/RenameLocalUserCommand.cs index c23cf41ac61..2050ea1e133 100644 --- a/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/RenameLocalUserCommand.cs +++ b/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/RenameLocalUserCommand.cs @@ -41,7 +41,7 @@ public class RenameLocalUserCommand : Cmdlet [ValidateNotNull] public Microsoft.PowerShell.Commands.LocalUser InputObject { - get { return this.inputobject;} + get { return this.inputobject; } set { this.inputobject = value; } } @@ -61,7 +61,7 @@ public Microsoft.PowerShell.Commands.LocalUser InputObject [ValidateNotNullOrEmpty] public string Name { - get { return this.name;} + get { return this.name; } set { this.name = value; } } @@ -78,7 +78,7 @@ public string Name [ValidateNotNullOrEmpty] public string NewName { - get { return this.newname;} + get { return this.newname; } set { this.newname = value; } } @@ -97,7 +97,7 @@ public string NewName [ValidateNotNull] public System.Security.Principal.SecurityIdentifier SID { - get { return this.sid;} + get { return this.sid; } set { this.sid = value; } } diff --git a/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/SetLocalGroupCommand.cs b/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/SetLocalGroupCommand.cs index 49ae31dacc7..0081f1f9bea 100644 --- a/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/SetLocalGroupCommand.cs +++ b/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/SetLocalGroupCommand.cs @@ -36,7 +36,7 @@ public class SetLocalGroupCommand : Cmdlet [ValidateNotNull] public string Description { - get { return this.description;} + get { return this.description; } set { this.description = value; } } @@ -56,7 +56,7 @@ public string Description [ValidateNotNull] public Microsoft.PowerShell.Commands.LocalGroup InputObject { - get { return this.inputobject;} + get { return this.inputobject; } set { this.inputobject = value; } } @@ -76,7 +76,7 @@ public Microsoft.PowerShell.Commands.LocalGroup InputObject [ValidateNotNull] public string Name { - get { return this.name;} + get { return this.name; } set { this.name = value; } } @@ -95,7 +95,7 @@ public string Name [ValidateNotNull] public System.Security.Principal.SecurityIdentifier SID { - get { return this.sid;} + get { return this.sid; } set { this.sid = value; } } diff --git a/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/SetLocalUserCommand.cs b/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/SetLocalUserCommand.cs index 3bfdc24ac03..e77042fa633 100644 --- a/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/SetLocalUserCommand.cs +++ b/src/Microsoft.PowerShell.LocalAccounts/LocalAccounts/Commands/SetLocalUserCommand.cs @@ -53,7 +53,7 @@ public class SetLocalUserCommand : PSCmdlet [Parameter] public System.DateTime AccountExpires { - get { return this.accountexpires;} + get { return this.accountexpires; } set { this.accountexpires = value; } } @@ -67,7 +67,7 @@ public System.DateTime AccountExpires [Parameter] public System.Management.Automation.SwitchParameter AccountNeverExpires { - get { return this.accountneverexpires;} + get { return this.accountneverexpires; } set { this.accountneverexpires = value; } } @@ -82,7 +82,7 @@ public System.Management.Automation.SwitchParameter AccountNeverExpires [ValidateNotNull] public string Description { - get { return this.description;} + get { return this.description; } set { this.description = value; } } @@ -98,7 +98,7 @@ public string Description [ValidateNotNull] public string FullName { - get { return this.fullname;} + get { return this.fullname; } set { this.fullname = value; } } @@ -117,7 +117,7 @@ public string FullName [ValidateNotNull] public Microsoft.PowerShell.Commands.LocalUser InputObject { - get { return this.inputobject;} + get { return this.inputobject; } set { this.inputobject = value; } } @@ -136,7 +136,7 @@ public Microsoft.PowerShell.Commands.LocalUser InputObject [ValidateNotNullOrEmpty] public string Name { - get { return this.name;} + get { return this.name; } set { this.name = value; } } @@ -151,7 +151,7 @@ public string Name [ValidateNotNull] public System.Security.SecureString Password { - get { return this.password;} + get { return this.password; } set { this.password = value; } } @@ -184,7 +184,7 @@ public bool PasswordNeverExpires [ValidateNotNull] public System.Security.Principal.SecurityIdentifier SID { - get { return this.sid;} + get { return this.sid; } set { this.sid = value; } } @@ -199,7 +199,7 @@ public System.Security.Principal.SecurityIdentifier SID [Parameter] public bool UserMayChangePassword { - get { return this.usermaychangepassword;} + get { return this.usermaychangepassword; } set { this.usermaychangepassword = value; } }