NUnit is a unit-testing framework for all .Net languages. The NUnit Portable Agent provides an interface that allows test runners to load the NUnit Framework and run tests in an assembly without taking a dependency on a specific version of the framework.
Install .NET Core and make sure it is working.
# Restore NuGet Packages
dotnet restore
# Build All
dotnet build -c Release test/NUnit.Portable.Agent.Tests
# Run Tests
dotnet run -c Release -p test/NUnit.Portable.Agent.Tests
# Package NuGet
dotnet pack -c Release src/NUnit.Portable.Agent
NUnit is Open Source software released under the MIT license.