Skip to content

Server API Library Resources

Lorenzo Bruni edited this page Feb 26, 2020 · 6 revisions

Home / Resources

The Server API Library Solution need contain libraries references listed as below:

\src\API.Library\packages.config

The packages.config is the NuGet Package Manager file that maintains a flat list of all dependencies in the project, including the dependencies of other installed packages. Installed or restored packages are stored in a packages folder.

N.B. Bare in mind to run intensive tests when upgrading any package.

<?xml version="1.0" encoding="utf-8"?>
<packages>
  <package id="EnyimMemcached" version="2.16.0" targetFramework="net472" />
  <package id="FluentValidation" version="8.4.0" targetFramework="net472" />
  <package id="log4net" version="2.0.8" targetFramework="net472" />
  <package id="Newtonsoft.Json" version="12.0.2" targetFramework="net472" />
  <package id="System.Collections.Concurrent" version="4.3.0" targetFramework="net472" />
  <package id="System.ComponentModel.Annotations" version="4.5.0" targetFramework="net472" />
  <package id="System.ComponentModel.Primitives" version="4.3.0" targetFramework="net472" />
  <package id="System.ValueTuple" version="4.5.0" targetFramework="net472" />
</packages>

NuGet Package Manager RequiredOK

NuGet is the package manager for .NET and it provides the ability to produce and consume packages. The NuGet Gallery is the central package repository used by all package authors and consumers.

Clone this wiki locally