Skip to content

Enhance --files option#533

Merged
JoeRobich merged 2 commits into
dotnet:masterfrom
JoeRobich:enhanced-files-option
Feb 12, 2020
Merged

Enhance --files option#533
JoeRobich merged 2 commits into
dotnet:masterfrom
JoeRobich:enhanced-files-option

Conversation

@JoeRobich

Copy link
Copy Markdown
Member
  • Allow folder paths to be specified for inclusion via the --files option
  • Add --include alias for --files option

@JoeRobich JoeRobich changed the title Enhanced files option Enhance --files option Feb 12, 2020
@JoeRobich JoeRobich requested a review from jmarolf February 12, 2020 04:49
filePaths = filesToInclude.Where(
filePath => filePath.EndsWith(fileExtension) && File.Exists(filePath)).ToArray();
filePaths = filePaths.Where(filePath =>
pathsToInclude.Any(path => filePath.StartsWith(path, StringComparison.OrdinalIgnoreCase))).ToArray();

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there a .NET api to compare file paths that works if the file system is case-sensitive (like most linux file systems are?). Not a blocker jsut curious

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not that I can find. Nothing off Path at least. Could roll our own getting FileInfo and using its FullPath which I would hope to be cased properly.

@jmarolf jmarolf left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:shipit:

@JoeRobich JoeRobich merged commit d8378a4 into dotnet:master Feb 12, 2020
@JoeRobich JoeRobich mentioned this pull request Feb 13, 2020
@JoeRobich JoeRobich deleted the enhanced-files-option branch March 5, 2021 21:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants