Difference between revisions of "Nuget Package Repository"

From eVision
Jump to: navigation, search
m (Updated feed instructions.)
m
 
Line 18: Line 18:
 
* http://docs.nuget.org/docs/start-here/installing-nuget
 
* http://docs.nuget.org/docs/start-here/installing-nuget
 
* http://docs.nuget.org/docs/start-here/managing-nuget-packages-using-the-dialog
 
* http://docs.nuget.org/docs/start-here/managing-nuget-packages-using-the-dialog
 +
 +
 +
Back to [[Developer Page]]

Latest revision as of 15:07, 1 August 2016

eVision hosts an assortment of code libraries on our locally-hosted NuGet repository. While the packages within our repository were not specifically designed to be consumed by third-parties, we have purposely left them publicly-accessible so that our clients can leverage some of our internal tools in order to interact with the various systems that store and process their data.

It is worth noting that these resources are the exact packages that we use within our internal projects, so these packages get tested fairly thoroughly and are well supported by our internal applications. While most of the packages don't have any documentation, there are some that include some degree of documentation in the format of VS-compatible "xmlcomments", which provide some level of documentation by way of Intellisense within Visual Studio.

Prerequisites

Adding the eVision NuGet Server

In order to consume eVision's NuGet packages, you must add eVision's NuGet server to the list of NuGet package sources in Visual Studio. This will allow the eVision packages to show up in search results so that they can be added to your projects.

  1. Open Visual Studio and navigate to Tools > Options > NuGet Package Manager > Package Sources.
  2. Add a new package source by clicking the plus (+) button.
  3. Enter a name for the package source. For the location, enter http://nuget.evisionservices.com/nuget
  4. Click OK to save the changes.

Related Information


Back to Developer Page