Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions xml/Microsoft.Build.Globbing/MSBuildGlobWithGaps.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,20 @@
</Interfaces>
<Docs>
<summary>
A glob with gaps. The gaps are represented as other globs.
For example, to express a glob that matches all .cs files except the ones containing "foo" and the ones under bin directories, one can use:
<code>
A glob with gaps. The gaps are represented as other globs.
For example, to express a glob that matches all .cs files except the ones containing "foo" and the ones under bin directories, one can use:
<example>
<code>
new MSBuildGlobWithGaps(
MSBuildGlob.Parse("**/*.cs"), // matches all .cs files
new CompositeGlob( // a composite glob to combine all the gaps
MSBuildGlob.Parse("**/*foo*.cs"), // matches .cs files containing "foo"
MSBuildGlob.Parse("**/bin/**/*.cs") // matches .cs files under bin directories
)
)
</code></summary>
</code>
</example>
</summary>
<remarks>To be added.</remarks>
</Docs>
<Members>
Expand Down