Search Results for

    Show / Hide Table of Contents

    Downloading

    Normally you would install NUnit following the guidelines for installation.

    However, sometimes you need just the little extra!

    Release versions

    You can find the latest release package at NuGet. There you will also find earlier versions and instructions on how to install using different tools.

    This is our latest release Release date, NuGet Version. And it has a high number of Downloads.

    You can also find the release package at the Release section in our github repo.

    The repo is also where you can raise issues, download code, join discussion or just look around.

    Developer versions

    We also release developer versions, they are called alpha versions, and you find them at our place at MyGet.

    A new developer version is created every time we merge a new Pull Request into our main branch.

    The easiest way to get the developer versions, is to add it to your nuget.config file, or if you don't have it, just create one.

    The code snippet below is the full content of a nuget.config file which includes the MyGet feed.

    <?xml version="1.0" encoding="utf-8"?>
    <configuration>
      <packageSources>
        <add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
        <add key="myget" value="https://www.myget.org/F/nunit/api/v3/index.json" />
      </packageSources>
    </configuration>
    

    Note that if you use Central Package Management you will get a NU1507 warning about having two feeds and not having package source mapping. You can just ignore this warning if you're just going to test it, but if you like to use it over time, you should add it like shown below.

    <?xml version="1.0" encoding="utf-8"?>
    <configuration>
      <packageSources>
        <add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
        <add key="myget" value="https://www.myget.org/F/nunit/api/v3/index.json" />
      </packageSources>
      <packageSourceMapping>
        <packageSource key="nuget.org">
          <package pattern="*" />
        </packageSource>
        <packageSource key="myget">
          <package pattern="NUnit" />
        </packageSource>
      </packageSourceMapping>
    </configuration>
    
    • Edit this page
    In this article
    Back to top Generated by DocFX | Copyright (c) 2018- The NUnit Project - Licensed under CC BY-NC-SA 4.0