-
Notifications
You must be signed in to change notification settings - Fork 481
Project has compile-time dependencies despite 'no dependency' promise in README? #251
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
confirming that 1.9.71.2 was last release to comply with no external implementation depends. just fyi thx again |
Hi @pracplayopen, the creator of the library pretty much rewrote this library for version 2.0 prior to us becoming maintainers, and I assume he intentionally added all of those dependencies. Recently I believe we did make the dependency on F# optional, but even then I believe the spirit of the line "Doesn't depend on other packages" was written with the Nuget package in mind, not the That said, if you see any non-base library dependencies being pulled in by the NuGet package (.NET Core added a few NuGet deps due to modularization, but all of them are dependencies from the BCL), please let me know. Hope this answers your question. |
thanks for fast reply. totally understand the test dependencies being external. sorry if it wasn't very clear from first post. the last two dependencies are being pulled from outside and are not just used by tests but are used by the core in a number of places. it did not seem easy to remove them, just fell back to 1.9 instead.
|
Yes, you're right about those two - 'Maybe' from the Thank you for reporting this. |
Ok I'll weigh in on this briefly. "Doesn't depend on other packages (No dependencies beyond standard base libraries)" This is implying that the core commandline Nuget package doesn't require any additional dependencies. We created an additional commandline.FSharp support package that does require only one additional dependency: the FSharp core package. This package dependency assertion does not imply that there's no other building and testing and source code dependencies. In fact, we're doing as much as possible to prevent Nuget package dependencies to have the Nuget package as dependency-free as possible. The only real assertion of "Doesnt depend on other packages" is for the Nuget package itself. |
going to step away just wanted to point out this is not a criticism in any way, just an observation of how the codebase changed in 2.x and it was materially different w/respect to that line in readme. obviously no issue with using any lib you want. to me there aren't too many people that say "we could use any library in nuget and still say it's not dependent on 3rd party libs." my .02 there. the easiest thing to do in that event is to remove that line from readme. not my place so i bow out. anyways, great project and thanks for responding. |
checking out commandline-2.2.1 release, it contains dependencies on:
While some of these are test only, some (csharpx and railwaysharp) seem to be required in implementation.
Mentioning because in your project README, it states command-line features as:
"Doesn't depend on other packages (No dependencies beyond standard base libraries)"
Is the inclusion of these dependencies in 'src' a mistake or a project error?
I notice older versions did not depend on 3rd party libraries for example.
Thanks for creating this library, just wanted to make sure you were aware of this discrepency.
Going to try to use an older version.
The text was updated successfully, but these errors were encountered: