Example #1
0
 public BuildFile( string name, bool isSubType, string dependentUpon, VSFileType type )
 {
     Name = name;
     IsSubType = isSubType;
     Type = type;
     this.dependentUpon = dependentUpon;
 }
Example #2
0
 public BuildFile(string name, bool isSubType, string dependentUpon, VSFileType type)
 {
     Name               = name;
     IsSubType          = isSubType;
     Type               = type;
     this.dependentUpon = dependentUpon;
 }
Example #3
0
 public void RegisterFile( string component, string name, VSFileType type )
 {
     RegisterFile( component, name, false, null, type );
 }
Example #4
0
 public void RegisterFile( string component, string name, bool isSubType, string dependsUpon, VSFileType type )
 {
     if( informations.ContainsKey( component ) ) {
         informations[component].Files.Add( new BuildFile( component, name, isSubType, dependsUpon, type ) );
     } else {
         throw new UnknownComponentException( component );
     }
 }
Example #5
0
 public void RegisterFile(string component, string name, VSFileType type)
 {
     RegisterFile(component, name, false, null, type);
 }
Example #6
0
 public void RegisterFile(string component, string name, bool isSubType, string dependsUpon, VSFileType type)
 {
     if (informations.ContainsKey(component))
     {
         informations[component].Files.Add(new BuildFile(component, name, isSubType, dependsUpon, type));
     }
     else
     {
         throw new UnknownComponentException(component);
     }
 }
Example #7
0
 public BuildFile( string component, string name, bool isSubType, string dependentUpon, VSFileType type )
     : this(name, isSubType, dependentUpon, type)
 {
     Component = component;
 }
Example #8
0
 public BuildFile(string component, string name, bool isSubType, string dependentUpon, VSFileType type)
     : this(name, isSubType, dependentUpon, type)
 {
     Component = component;
 }