Skip to the content.

C# Build Manual

Prerequisites

.NET Core version

We’re using .NET Core 3.1 and the dotnet CLI.

IDEs

We’re using Rider, but you can choose any IDE that supports building .NET Core!

Build and Run

The process is very easy using the dotnet CLI.

From the chsarp directory, run:

> cd Application
> dotnet run 

This should restore the required NuGet packages, compile and run the App.

The following output should be generated:

****************************************************
*****************Application Report*****************
****************************************************

The total number of books sold is: 16
The total number of issued invoices is: 6
The total amount of all invoices in USD is: 424,57

****************************************************
****************************************************