Skip to content

Building and Testing the API

Dave Walker edited this page Mar 20, 2020 · 10 revisions

Prerequisites

You will need .NET Core 3.1 installed to build and run the API and test applications. Instructions for downloading and installing are on the .NET website:

https://dotnet.microsoft.com/download

This documentation demonstrates use of the .NET command line, rather than an IDE, for building, testing and running the API and test applications.

Building the Projects

To build the API and test applications, open a terminal window, change to the "src" folder of your working copy and run the following:

dotnet build TelloCommander.sln

Running the Unit Tests

To run the unit tests, open a terminal window, change to the "src" folder of your working copy and run the following:

dotnet test TelloCommander.sln