BuildContributorContext.ExtensionFiles Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets an array of ITaskItem representing Files from the project system which influence the build contributors.
Input configuration files can be defined in a .sqlproj file as part of the MSBuild process. Inside a .sqproj file, Build Configuration files are specified as follows:
<ItemGroup> <BuildExtensionConfiguration Include="MyContributorName.MyFileName1.sql" /> <BuildExtensionConfiguration Include="MyContributorName.MyFileName2.sql" /> </ItemGroup>
Note that configuration files are accessible to all contributors. Contributors may employ a file naming pattern to identify which input files related to that contributor.
public System.Collections.Generic.IList<Microsoft.Build.Framework.ITaskItem> ExtensionFiles { get; }
member this.ExtensionFiles : System.Collections.Generic.IList<Microsoft.Build.Framework.ITaskItem>
Public ReadOnly Property ExtensionFiles As IList(Of ITaskItem)