27 references to Format
Microsoft.Build.Tasks.Core (27)
GenerateResource.cs (27)
2565Format inFileFormat = GetFormat(inFile); 2566if (inFileFormat == Format.Error) 2571if (inFileFormat != Format.Assembly) // outFileOrDir is a directory when the input file is an assembly 2573Format outFileFormat = GetFormat(outFileOrDir); 2574if (outFileFormat == Format.Assembly) 2579else if (outFileFormat == Format.Error) 2666if (GetFormat(inFile) == Format.Assembly) 2747&& GetFormat(inFile) != Format.Assembly 2749&& GetFormat(outFileOrDir) != Format.Assembly) 2770if (GetFormat(currentOutputFile) != Format.Assembly) 2911private Format GetFormat(string filename) 2921return Format.Error; 2927return Format.Text; 2932return Format.XML; 2938return Format.Assembly; 2942return Format.Binary; 2947return Format.Error; 2975Format format = GetFormat(filename); 2977if (format == Format.Assembly) // Multiple input .resources files within one assembly 2991case Format.Text: 2995case Format.XML: 3037case Format.Binary: 3317Format format = GetFormat(filename); 3320case Format.Text: 3324case Format.XML: 3332case Format.Assembly: 3336case Format.Binary: