ProjectFileFormat

ProjectFileInfo.ProjectFileFormat property

Gets project file format.

public FileFormat ProjectFileFormat { get; }

Examples

Shows how to read project file info.

var info = Project.GetProjectFileInfo(DataDir + "Project.xml");
Console.WriteLine("CanRead: " + info.CanRead);
Console.WriteLine("ProjectApplicationInfo: " + info.ProjectApplicationInfo);
Console.WriteLine("ProjectFileFormat: " + info.ProjectFileFormat);

See Also