Inheritance: BasePackageProvider
Beispiel #1
0
 public static void ExportFromContext(IReadOnlyZetboxContext ctx, string filename, string[] schemaModules, string[] ownerModules)
 {
     using (var s = new FileSystemPackageProvider(filename, BasePackageProvider.Modes.Write))
     {
         ExportFromContext(ctx, s, schemaModules, ownerModules);
     }
 }
Beispiel #2
0
 public static void PublishFromContext(IZetboxContext ctx, string filename, string[] ownerModules)
 {
     using (var s = new FileSystemPackageProvider(filename, BasePackageProvider.Modes.Write))
     {
         PublishFromContext(ctx, s, ownerModules);
     }
 }