27 references to Format
Microsoft.Build.Tasks.Core (27)
GenerateResource.cs (27)
2635Format inFileFormat = GetFormat(inFile); 2636if (inFileFormat == Format.Error) 2641if (inFileFormat != Format.Assembly) // outFileOrDir is a directory when the input file is an assembly 2643Format outFileFormat = GetFormat(outFileOrDir); 2644if (outFileFormat == Format.Assembly) 2649else if (outFileFormat == Format.Error) 2736if (GetFormat(inFile) == Format.Assembly) 2813&& GetFormat(inFile) != Format.Assembly 2815&& GetFormat(outFileOrDir) != Format.Assembly) 2836if (GetFormat(currentOutputFile) != Format.Assembly) 2977private Format GetFormat(string filename) 2987return Format.Error; 2993return Format.Text; 2998return Format.XML; 3004return Format.Assembly; 3008return Format.Binary; 3013return Format.Error; 3041Format format = GetFormat(filename); 3043if (format == Format.Assembly) // Multiple input .resources files within one assembly 3057case Format.Text: 3061case Format.XML: 3103case Format.Binary: 3383Format format = GetFormat(filename); 3386case Format.Text: 3390case Format.XML: 3398case Format.Assembly: 3402case Format.Binary: