This repository was archived by the owner on Jan 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 173
Q# Command Line Process Multiple Files and Directories #1156
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Contributor
swernli
approved these changes
Sep 29, 2021
Contributor
swernli
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Signed off with minor comments
Contributor
Author
Thanks, that's what I get for trying to do a last minute change, haha. It is fixed now. |
swernli
added a commit
that referenced
this pull request
Oct 4, 2021
* QIR generation bug fixes (#1153) * Allow ProjectReference as Target Package (#1166) Previously only a `PackageReference` would be recognized as a target package. This allows `ProjectReference` to be used as a target package, and still enforces that only one such reference exists. * Make signature for slicing compiliant with spec (#1167) * update packages for component governance (#1168) * Q# Command Line Process Multiple Files and Directories (#1156) * Force use of LLVM 11 in build pipeline (#1177) * Formatter - Output to Files (#1165) * Only re-indent if closing brace occurs in indentation region (#1174) * Only re-indent if closing brace occurs in indentation region * Use char.IsWhiteSpace * Blank line Co-authored-by: bettinaheim <34236215+bettinaheim@users.noreply.github.com> Co-authored-by: Angela Burton <anjbur@users.noreply.github.com> Co-authored-by: Scott Carda <55811729+ScottCarda-MS@users.noreply.github.com> Co-authored-by: Sarah Marshall <33814365+samarsha@users.noreply.github.com>
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Allows multiple inputs to be passed to the CLI. Inputs can be any mix of files, folders, and the
-for specifying standard input. Folders are resolved to all the.qsfiles directly under them. The--recurseor-rflag can be specified to resolve folders recursively, processing all of their sub-directories and their sub-directories and so on.Addresses #1154 and #1155.