C# 클래스 MsBuilderific.Core.VisualStudio.V2010.VisualStudio2010ProjectLoader

This class provides .csproj and .vbproj parsing capabilities
상속: IVisualStudioProjectLoader
파일 보기 프로젝트 열기: Vooban/vooban.msbuilderific

공개 메소드들

메소드 설명
CanParse ( string visualStudioProjectPath ) : bool

Parses the visual studio project and return the resulting

Parse ( string visualStudioProjectPath ) : VisualStudioProject

Parses the visual studio project and return the resulting

TryParse ( string visualStudioProjectPath, VisualStudioProject &result ) : bool

Parses the visual studio project and return the resulting

비공개 메소드들

메소드 설명
FindFileReferences ( System.Xml.Linq.XContainer xproject ) : IEnumerable

Finds file references in the current project

FindProjectReferences ( System.Xml.Linq.XContainer xproject ) : IEnumerable

Finds project references in the current project

GetProjectAsXDocument ( string visualStudioProjectPath ) : System.Xml.Linq.XDocument

Get the visual studio project as a XDocument instance, without xml namespaces

IsWebBuild ( System.Xml.Linq.XDocument xproject ) : bool

Check if the project contained in the XDocument is a web project

메소드 상세

CanParse() 공개 메소드

Parses the visual studio project and return the resulting
public CanParse ( string visualStudioProjectPath ) : bool
visualStudioProjectPath string Path to the Visual Studio Project to parse
리턴 bool

Parse() 공개 메소드

Parses the visual studio project and return the resulting
public Parse ( string visualStudioProjectPath ) : VisualStudioProject
visualStudioProjectPath string
리턴 VisualStudioProject

TryParse() 공개 메소드

Parses the visual studio project and return the resulting
public TryParse ( string visualStudioProjectPath, VisualStudioProject &result ) : bool
visualStudioProjectPath string Path to the Visual Studio Project to parse
result VisualStudioProject The parsed project if supported, null otherwise
리턴 bool