Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 592 Bytes

File metadata and controls

24 lines (16 loc) · 592 Bytes

Contributing

Contributions are welcome. Submit a pull request or open an issue as necessary.

Developer Prerequisites

Build and Test

All commands are run from the src/ directory:

dotnet restore
dotnet build -c Release --no-restore
dotnet test --no-restore -v normal -c Release

To run a single test class:

dotnet test --no-restore --filter "ClassName=Valleysoft.Dredge.Tests.CompareLayersCommandTests"