Skip to content

Commit 3033fa7

Browse files
authored
Revert change that ignored the StoredCertificateSettings property
1 parent 33bfec8 commit 3033fa7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/ServiceManagement/Compute/Commands.ServiceManagement/ServiceManagementProfile.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,6 @@ public static void Initialize()
266266
.ForMember(c => c.SshSettings, o => o.MapFrom(r => r.SSH));
267267
cfg.CreateMap<PVM.WindowsProvisioningConfigurationSet, NSM.ConfigurationSet>()
268268
.ForMember(c => c.PublicIPs, o => o.Ignore())
269-
.ForMember(c => c.StoredCertificateSettings, o => o.Ignore())
270269
.ForMember(c => c.AdminPassword, o => o.MapFrom(r => r.AdminPassword == null ? null : r.AdminPassword.ConvertToUnsecureString()));
271270
cfg.CreateMap<PVM.ProvisioningConfigurationSet, NSM.ConfigurationSet>()
272271
.ForMember(c => c.PublicIPs, o => o.Ignore());
@@ -576,4 +575,4 @@ public static void Initialize()
576575
_mapper = config.CreateMapper();
577576
}
578577
}
579-
}
578+
}

0 commit comments

Comments
 (0)