-
Notifications
You must be signed in to change notification settings - Fork 80
Open
Milestone
Description
In order to add support for extracting the "stem" of a globbing match (see aspnet/FileSystem#120), a breaking change was added to the FileSystemGlobbing package (Microsoft.Framework.FileSystemGlobbing
). Previously, the result of running Matcher.Execute
was a list of string
s. Now, it is a list of FilePatternMatch
objects which contain both the full path to the match in the Path
property and the "stem" (or the part matched by the globs) of the match in the Stem
property.
As a result, any consumers of this code will need to update to adjust for this change in method signature. In almost all cases, it should just be a matter of changing types and appending .Path
calls. See aspnet/Mvc#3052 for a sample change reacting to this one.