public AppxManifestEditor(string manifestPath)
 {
     this.extractedEditor = new AppxDirectoryEditor(Path.GetDirectoryName(manifestPath));
 }
 public AppxManifestEditor(FileInfo manifestPath)
 {
     this.extractedEditor = new AppxDirectoryEditor(manifestPath.Directory);
 }