how do I bypass microsoft nuget? [closed]
开发者_如何学编程
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this questionIf I want to avoid using the Microsoft NuGet, how do I get the stuff that the NuGet would suck into my machine?
Just go to the 3rd party library maker's site and download it yourself.
Find out however it was distributed before NuGet was around, and see if they still provide that mechanism.
There's no general answer, because different projects distribute their stuff in different ways.
Update: Since it appears that you're trying to avoid the NuGet executable code rather than the NuGet infrastructure, you could look at the source of NuGet itself, at http://nuget.codeplex.com/ to see how it works. I have a feeling it's built as a 'core' class library and then has thin wrappers around that to invoke its functions, so you might be able to reuse the core with your own wrapper.
精彩评论