コード例 #1
0
ファイル: BuildBase.cs プロジェクト: AlexandrSurkov/PKStudio
        public RequiredBase(string Name, RequiredBase Parent)
        {
            if (string.IsNullOrEmpty(Path.GetPathRoot(Name)))
                this.Name = Name;
            else
            {
                this.OutputFileMSBuild = Name;
                this.Name = Path.GetFileName(Name);
            }

            this._Parent = Parent;
        }
コード例 #2
0
        public RequiredBase(string Name, RequiredBase Parent)
        {
            if (string.IsNullOrEmpty(Path.GetPathRoot(Name)))
            {
                this.Name = Name;
            }
            else
            {
                this.OutputFileMSBuild = Name;
                this.Name = Path.GetFileName(Name);
            }

            this._Parent = Parent;
        }
コード例 #3
0
 public Link(string Name, RequiredBase Parent)
     : base(Name, Parent)
 {
 }
コード例 #4
0
 public RequiredLibrary(string Name, RequiredBase Parent)
     : base(Name, Parent)
 {
 }
コード例 #5
0
ファイル: RequiredObject.cs プロジェクト: schifflee/PKStudio
 public RequiredObject(string Name, RequiredBase Parent)
     : base(Name, Parent)
 {
 }
コード例 #6
0
        public RequiredObject(string Name, RequiredBase Parent)
            : base(Name, Parent)
        {

        }
コード例 #7
0
 public RequiredLibrary(string Name, RequiredBase Parent)
     : base(Name, Parent)
 {
  
 }
コード例 #8
0
ファイル: Link.cs プロジェクト: AlexandrSurkov/PKStudio
 public Link(string Name, RequiredBase Parent)
     : base(Name, Parent)
 {
 }