27 references to Format
Microsoft.Build.Tasks.Core (27)
GenerateResource.cs (27)
2558Format inFileFormat = GetFormat(inFile); 2559if (inFileFormat == Format.Error) 2564if (inFileFormat != Format.Assembly) // outFileOrDir is a directory when the input file is an assembly 2566Format outFileFormat = GetFormat(outFileOrDir); 2567if (outFileFormat == Format.Assembly) 2572else if (outFileFormat == Format.Error) 2659if (GetFormat(inFile) == Format.Assembly) 2740&& GetFormat(inFile) != Format.Assembly 2742&& GetFormat(outFileOrDir) != Format.Assembly) 2763if (GetFormat(currentOutputFile) != Format.Assembly) 2904private Format GetFormat(string filename) 2914return Format.Error; 2920return Format.Text; 2925return Format.XML; 2931return Format.Assembly; 2935return Format.Binary; 2940return Format.Error; 2968Format format = GetFormat(filename); 2970if (format == Format.Assembly) // Multiple input .resources files within one assembly 2984case Format.Text: 2988case Format.XML: 3030case Format.Binary: 3310Format format = GetFormat(filename); 3313case Format.Text: 3317case Format.XML: 3325case Format.Assembly: 3329case Format.Binary: