Microsoft NuGet の使用を避けたい場合、NuGet がマシンに吸い込むものを取得するにはどうすればよいですか?
2 に答える
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.