27 references to Format
Microsoft.Build.Tasks.Core (27)
GenerateResource.cs (27)
2563Format inFileFormat = GetFormat(inFile); 2564if (inFileFormat == Format.Error) 2569if (inFileFormat != Format.Assembly) // outFileOrDir is a directory when the input file is an assembly 2571Format outFileFormat = GetFormat(outFileOrDir); 2572if (outFileFormat == Format.Assembly) 2577else if (outFileFormat == Format.Error) 2664if (GetFormat(inFile) == Format.Assembly) 2745&& GetFormat(inFile) != Format.Assembly 2747&& GetFormat(outFileOrDir) != Format.Assembly) 2768if (GetFormat(currentOutputFile) != Format.Assembly) 2909private Format GetFormat(string filename) 2919return Format.Error; 2925return Format.Text; 2930return Format.XML; 2936return Format.Assembly; 2940return Format.Binary; 2945return Format.Error; 2973Format format = GetFormat(filename); 2975if (format == Format.Assembly) // Multiple input .resources files within one assembly 2989case Format.Text: 2993case Format.XML: 3035case Format.Binary: 3315Format format = GetFormat(filename); 3318case Format.Text: 3322case Format.XML: 3330case Format.Assembly: 3334case Format.Binary: