21 references to Parse
Microsoft.Build (4)
BackEnd\Shared\BuildRequestConfiguration.cs (1)
845.Select(s => MSBuildGlob.Parse(Project.Directory, s)));
Evaluation\ItemSpec.cs (1)
496return MSBuildGlob.Parse(ProjectDirectory, EscapingUtilities.UnescapeAll(TextFragment));
Globbing\MSBuildGlob.cs (2)
245/// See <see cref="Parse(string,string)" />. 252return Parse(string.Empty, fileSpec);
Microsoft.Build.Engine.UnitTests (17)
Globbing\MSBuildGlob_Tests.cs (17)
31var glob = MSBuildGlob.Parse(globRoot, "*"); 40var glob = MSBuildGlob.Parse(globRoot, "*"); 49var glob = MSBuildGlob.Parse(string.Empty, "*"); 57Assert.Throws<ArgumentNullException>(() => MSBuildGlob.Parse(null, "*")); 64var glob = MSBuildGlob.Parse(globRoot, "*"); 77Assert.Throws<ArgumentException>(() => MSBuildGlob.Parse(((char)i).ToString(), "*")); 97var glob = MSBuildGlob.Parse(globRoot, filespec); 117var glob = MSBuildGlob.Parse(globRoot, fileSpec); 138var glob = MSBuildGlob.Parse(globRoot, illegalFileSpec); 158var glob1 = MSBuildGlob.Parse(globRoot, fileSpec); 159var glob2 = MSBuildGlob.Parse(globRoot, fileSpec); 261var glob = MSBuildGlob.Parse(globRoot, string.Empty); 271var glob = MSBuildGlob.Parse(globRoot, "*"); 281var glob = MSBuildGlob.Parse(globRoot, "*a*"); 304var glob = MSBuildGlob.Parse(globRoot, fileSpec); 324var glob = MSBuildGlob.Parse("u/x", "../../u/x/d11/d21/../d22/../../d12/a.cs"); 349var glob = MSBuildGlob.Parse(globRoot, fileSpec);