示例#1
0
        public ExecutableReferences()
        {
            var sourceDir = this.PackageLocation.SubDirectory("source");
            this.source = Bam.Core.FileLocation.Get(sourceDir, "executablexml.cs");

            this.UpdateOptions += new Bam.Core.UpdateOptionCollectionDelegate(ExecutableReferences_UpdateOptions);
        }
示例#2
0
        public WPFExecutable()
        {
            var sourceDir = this.PackageLocation.SubDirectory("source");
            this.applicationDefinition = Bam.Core.FileLocation.Get(sourceDir, "App.xaml");
            this.page = Bam.Core.FileLocation.Get(sourceDir, "MainWindow.xaml");

            this.UpdateOptions += new Bam.Core.UpdateOptionCollectionDelegate(WPFExecutable_UpdateOptions);
        }
示例#3
0
 public CodeGeneratorTool()
 {
     var sourceDir = this.PackageLocation.SubDirectory("source");
     var codegentoolSourceDir = sourceDir.SubDirectory("codegentool");
     this.source = Bam.Core.FileLocation.Get(codegentoolSourceDir, "main.cs");
 }
示例#4
0
 public Executable2()
 {
     var sourceDir = this.PackageLocation.SubDirectory("source");
     this.source = Bam.Core.FileLocation.Get(sourceDir, "executable2.cs");
 }
示例#5
0
 public SimpleWindowExecutable()
 {
     var sourceDir = this.PackageLocation.SubDirectory("source");
     this.source = Bam.Core.FileLocation.Get(sourceDir, "simplewindowsexecutable.cs");
 }
示例#6
0
 public SimpleModule()
 {
     var sourceDir = this.PackageLocation.SubDirectory("source");
     this.source = Bam.Core.FileLocation.Get(sourceDir, "simplemodule.cs");
 }