예제 #1
0
 public static ISeedManifestCollection AddManifestFile(this ISeedManifestCollection self, string path)
 {
     self.Add(new Model.SeedManifestDescriptor(path));
     return(self);
 }
예제 #2
0
파일: Startup.cs 프로젝트: s2fx/s2fx-core
        public override void ConfigureSeeds(ISeedManifestCollection initSeeds, ISeedManifestCollection demoSeeds)
        {
            initSeeds.AddManifestFile("SeedData/Init/Manifest.xaml");

            demoSeeds.AddManifestFile("SeedData/demo/Manifest.xaml");
        }
예제 #3
0
 public virtual void ConfigureSeeds(ISeedManifestCollection initSeeds, ISeedManifestCollection demoSeeds)
 {
 }