Exemplo n.º 1
0
 public AssetVCCSProject(string sourcePath)
     : base(sourcePath)
 {
     ConvertableToTypes.Add(".cs");
     ConvertableToTypes.Add(".xml");
     ConvertableToTypes.Add(".bin");
 }
Exemplo n.º 2
0
 public AssetObj(string sourcePath)
     : base(sourcePath)
 {
     ConvertableToTypes.Add(".exe");
     ConvertableToTypes.Add(".lib");
     //TargetTypes.Add(".dll");
 }
Exemplo n.º 3
0
 public AssetVCProject(string sourcePath)
     : base(sourcePath)
 {
     ConvertableToTypes.Add(".h");
     ConvertableToTypes.Add(".hpp");
     ConvertableToTypes.Add(".inl");
     ConvertableToTypes.Add(".def");
     ConvertableToTypes.Add(".c");
     ConvertableToTypes.Add(".cpp");
     ConvertableToTypes.Add(".xml");
     ConvertableToTypes.Add(".bin");
 }
Exemplo n.º 4
0
 public AssetCS(string sourcePath)
     : base(sourcePath)
 {
     ConvertableToTypes.Add(".obj");
 }
Exemplo n.º 5
0
 public AssetVCSolution(string sourcePath)
     : base(sourcePath)
 {
     ConvertableToTypes.Add(".vcxproj");
     ConvertableToTypes.Add(".csproj");
 }