-
Notifications
You must be signed in to change notification settings - Fork 0
Building and Testing the API
Dave Walker edited this page Mar 20, 2020
·
10 revisions
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.
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
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