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) 2738&& GetFormat(inFile) != Format.Assembly 2740&& GetFormat(outFileOrDir) != Format.Assembly) 2761if (GetFormat(currentOutputFile) != Format.Assembly) 2902private Format GetFormat(string filename) 2912return Format.Error; 2918return Format.Text; 2923return Format.XML; 2929return Format.Assembly; 2933return Format.Binary; 2938return Format.Error; 2966Format format = GetFormat(filename); 2968if (format == Format.Assembly) // Multiple input .resources files within one assembly 2982case Format.Text: 2986case Format.XML: 3028case Format.Binary: 3308Format format = GetFormat(filename); 3311case Format.Text: 3315case Format.XML: 3323case Format.Assembly: 3327case Format.Binary: