File tree Expand file tree Collapse file tree 1 file changed +11
-11
lines changed
src/Resources/Resources/ActiveDirectory/Cmdlets Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -36,19 +36,19 @@ public class NewAzureADGroupCommand : ActiveDirectoryBaseCmdlet
36
36
37
37
public override void ExecuteCmdlet ( )
38
38
{
39
- var groupCreateParams = new GroupCreateParameters ( )
40
- {
41
- DisplayName = DisplayName ,
42
- MailNickname = MailNickname ,
43
- AdditionalProperties = new System . Collections . Generic . Dictionary < string , object > ( )
44
- } ;
39
+ var groupCreateParams = new GroupCreateParameters ( )
40
+ {
41
+ DisplayName = DisplayName ,
42
+ MailNickname = MailNickname ,
43
+ AdditionalProperties = new System . Collections . Generic . Dictionary < string , object > ( )
44
+ } ;
45
45
46
- if ( ! string . IsNullOrEmpty ( Description ) )
47
- {
48
- groupCreateParams . AdditionalProperties . Add ( "description" , Description ) ;
49
- }
46
+ if ( ! string . IsNullOrEmpty ( Description ) )
47
+ {
48
+ groupCreateParams . AdditionalProperties . Add ( "description" , Description ) ;
49
+ }
50
50
51
- ExecutionBlock ( ( ) =>
51
+ ExecutionBlock ( ( ) =>
52
52
{
53
53
if ( ShouldProcess ( target : DisplayName , action : string . Format ( "Creating a new AD group with display name '{0}'" , DisplayName ) ) )
54
54
{
You can’t perform that action at this time.
0 commit comments