-
Notifications
You must be signed in to change notification settings - Fork 252
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
Make NuGet.PackageManagement available as a .NET Standard package #6150
Comments
That is the main blocker. Could you provide some reasons for making this package support netstandard, are you using this cross platform? |
I work on Xamarin Workbooks, and we use the NuGet client libraries (including this one) on Mac and Windows. We're interested in creating some cross-platform .NET Core apps, and |
So this would be for installing/uninstalling packages and other things that the VS UI handles? |
@emgarten yes, ultimately we need to provide a VS-like package management experience on .NET Core. |
The package I published also seems to be used by Cake Build, so there's definitely a need for this. |
👍 About to bump @aelij's package to 4.6.0 (currently at 4.3.0) Yep! There's definitely a need for this. I'd think @daveaglick also would be interested in this for Wyam. |
I'm currently using it with Unity, I have recompiled it for .NET Standard 2.0 but I would want to see it supported officially. I also encountered other problems like this: You can see that it's using "some" classes from old Microsoft.Extensions.* packages. It should reference the entire package because in my case I got collisions regarding one script defined multiple times (one from Nuget.Commands.dll and another one from the real Microsoft.Extensions dll) and son on. In my case I removed that class references and add the entire package reference from nuget. |
Hello guys, would be very nice to have this lib for .net core. Any ETA for this migration? thanks |
We're building a ASP.Net Core app that runs some PowerShell scripts from C# to do some of the work. It dies when trying to run |
It seems that
NuGet.PackageManagement
is the only package in the client libraries that does not have .NET Standard support. It would be great to be able to use this package in other .NET Standard libraries, or in .NET Core apps, etc.I notice that this package has a dependency on
Microsoft.Web.Xdt
. Is that the only thing blocking this from happening?The text was updated successfully, but these errors were encountered: