diff --git a/xml/Microsoft.Build.Globbing/MSBuildGlobWithGaps.xml b/xml/Microsoft.Build.Globbing/MSBuildGlobWithGaps.xml index 3bf3d66c82f..8f80c9e472d 100644 --- a/xml/Microsoft.Build.Globbing/MSBuildGlobWithGaps.xml +++ b/xml/Microsoft.Build.Globbing/MSBuildGlobWithGaps.xml @@ -19,9 +19,10 @@ - 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: - + 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: + + new MSBuildGlobWithGaps( MSBuildGlob.Parse("**/*.cs"), // matches all .cs files new CompositeGlob( // a composite glob to combine all the gaps @@ -29,7 +30,9 @@ MSBuildGlob.Parse("**/bin/**/*.cs") // matches .cs files under bin directories ) ) - + + + To be added.