feat(core): support for workspace solution files#254
Merged
AgentEnder merged 3 commits intomasterfrom Nov 29, 2021
Merged
Conversation
c0f1f2f to
121bd76
Compare
Nx Cloud ReportCI ran the following commands for commit 650c21d. Click to see the status, the terminal output, and the build insights. 📂 See all runs for this branch Sent with 💌 from NxCloud. |
121bd76 to
a8a1c24
Compare
a8a1c24 to
7ff606b
Compare
benjcallaghan
approved these changes
Nov 28, 2021
|
LGTM. I especially like the e2e tests, which helped me understand what it was doing better than the documentation did. |
91aaeca to
894374a
Compare
chore(repo): update e2e script and add sandbox command
894374a to
650c21d
Compare
|
Kudos, SonarCloud Quality Gate passed!
|
github-actions bot
pushed a commit
that referenced
this pull request
Nov 29, 2021
# [1.7.0](v1.6.0...v1.7.0) (2021-11-29) ### Features * **core:** support for workspace solution files ([#254](#254)) ([ec342ae](ec342ae)) Nov 29, 2021, 3:07 PM
Contributor
|
🎉 This PR is included in version 1.7.0 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
Contributor
|
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
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
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.








Supports passing
--solution {path}, or--solutionto add a project to a specific or default solution file in the workspace. To use this behavior for all projects in the workspace, add a section to nx.json like{ //... generators: { //... "@nx-dotnet/core:app": { "solutionFile": true // or "MySolutionFile.sln" etc } } }Closes #241