23

A quote from ImageProcessor repo

We already have a MyGet package repository - for bleeding-edge / development NuGet releases.

The link points to some json file.

I used to install NuGet packages by id. What should I do with json?

user2136963
  • 2,526
  • 3
  • 22
  • 41

1 Answers1

25

If you are using Visual Studio you will need to open the Package Manager Settings and create a new package source with the MyGet url. There are two URLs, one if you are using NuGet 2, which is for Visual Studio 2013 and older, or another url for Visual Studio 2015 and NuGet 3.

Note that you can use the NuGet v2 url in Visual Studio 2015, it still works there.

From the Tools menu, select NuGet Package Manager, Package Manager Settings. Select Package Sources. Then click the plus button to add a new package source. Give it a name and use one of the above feed urls.

Then open the NuGet package manager itself and select the new package source you added. Note that you will need Include prerelease checked to see any NuGet packages for the image processor feed.

If you are using MonoDevelop or Xamarin Studio then use the NuGet v2 Feed url.

Matt Ward
  • 47,057
  • 5
  • 93
  • 94
  • 1
    "Then open the NuGet package manager itself " You mean, package manager console? Or does it have some other interface? – user2136963 Feb 16 '16 at 17:48
  • I see. Tools -> NuGet Package Manager -> Manage NuGet Packages for Solution in VS 2015 – user2136963 Feb 16 '16 at 17:51
  • 1
    This is not the answer at al... The question was how to install **MyGet** packages, not NuGet packages. – kipusoep Mar 06 '17 at 15:32
  • 1
    @kipusoep - MyGet hosts NuGet packages. The original question is about how to install the NuGet packages from the ImageProcessor MyGet feed. – Matt Ward Mar 06 '17 at 16:17