Example #1
0
 public PSManifestAttribute(ManifestAttributes manifest)
 {
     Registry  = manifest?.Registry;
     ImageName = manifest?.ImageName;
     if (manifest != null)
     {
         Attributes = new PSManifestAttributeBase(manifest.Attributes);
     }
 }
Example #2
0
 public PSManifestAttribute(string registry = default(string), string imageName = default(string), PSManifestAttributeBase attributes = default(PSManifestAttributeBase))
 {
     Registry   = registry;
     ImageName  = imageName;
     Attributes = attributes;
 }