This is the development branch of DiffSharp 1.0.0.
You can clone this repository to your machine as follows:
git clone --branch dev https://github.com/DiffSharp/DiffSharp.git
cd DiffSharp
Required:
- Install .NET Core SDK for your system
Use the following command in the root directory of this repository:
dotnet test
Required:
- Install Docker for your system
Build a Docker image called diffsharp
. This will work without any local .NET Core installation and build DiffSharp inside the image.
docker build -t diffsharp .
Use the following to instantiate a Docker container from the diffsharp
image and run the tests inside:
docker run --rm diffsharp dotnet test