Skip to content

CI Builds

Artiom Chilaru edited this page Feb 23, 2018 · 1 revision

For the very latest builds, you can access our CI builds published on MyGet. To do this you'll have to add the address of my MyGet repository to your Visual Studio settings.

Alternatively, you can add a nuget.config file to the root of your project's repository. For example:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <packageSources>
    <clear />
    <add key="NuGet" value="https://api.nuget.org/v3/index.json" />
    <add key="ArtiomChi MyGet" value="https://www.myget.org/F/artiomchi/api/v3/index.json" />
  </packageSources>
</configuration>
Clone this wiki locally