Share via


IDatabaseProjectNode.GetBuildFilesInProjectFileOrder Method

Returns all files with a build action of Build in a dictionary.

Namespace:  Microsoft.VisualStudio.Data.Schema.Package.Project
Assembly:  Microsoft.VisualStudio.Data.Schema.Package (in Microsoft.VisualStudio.Data.Schema.Package.dll)

Syntax

'Declaration
Sub GetBuildFilesInProjectFileOrder ( _
    forceAbsolutePath As Boolean, _
    <OutAttribute> ByRef files As IList(Of String) _
)
void GetBuildFilesInProjectFileOrder(
    bool forceAbsolutePath,
    out IList<string> files
)
void GetBuildFilesInProjectFileOrder(
    bool forceAbsolutePath, 
    [OutAttribute] IList<String^>^% files
)
abstract GetBuildFilesInProjectFileOrder : 
        forceAbsolutePath:bool * 
        files:IList<string> byref -> unit 
function GetBuildFilesInProjectFileOrder(
    forceAbsolutePath : boolean, 
    files : IList<String>
)

Parameters

  • forceAbsolutePath
    Type: System.Boolean
    If forceAbsolutePath is false, the list of files is returned as they are represented in the MSBuild file. For most files this will be relative to the project folder. In the case of linked files, an absolute path may be returned. If forceAbsolutePath is true, all paths will be absolute.

Remarks

The values in the dictionary represent the order in which the files appear in the project file.

.NET Framework Security

See Also

Reference

IDatabaseProjectNode Interface

Microsoft.VisualStudio.Data.Schema.Package.Project Namespace