Closed null511 closed 6 years ago
This is not currently implemented. The goal is to support a syntax similar to NuGet's nuspec files:
**
*
Ex: The filter bin\Debug\**\*.dll should match all *.dll files in any directory under bin\Debug
bin\Debug\**\*.dll
*.dll
bin\Debug
Target Code Location: https://github.com/null511/Photon/blob/master/Photon.Framework/Packages/FilePatternMatching.cs#L33
Implemented in PR #17.
This is not currently implemented. The goal is to support a syntax similar to NuGet's nuspec files:
**
- Match any directory name.*
- Match any range of filename characters.Ex: The filter
bin\Debug\**\*.dll
should match all*.dll
files in any directory underbin\Debug