Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 665 Bytes

BUILD.md

File metadata and controls

37 lines (26 loc) · 665 Bytes

Build How-to

Pre-requisites

All Components:

GUI:

  • Make sure to select ASP.NET Components in Visual Studio (You will otherwise receive an error opening this project)

Building

Run these commands in the appropriate project directory. For example, Cli for the Cli and Gui.

Building a Debug version

dotnet build

Building a Release version

Windows

dotnet publish -c Release -r win-x86

Linux

dotnet publish -c Release -r linux-x64

Mac

dotnet publish -c Release -r osx-x64