Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 559 Bytes

BUILD.md

File metadata and controls

39 lines (27 loc) · 559 Bytes

Build How-to

Pre-requisites

.NET:

Commandline

Run these commands in the ApplicationInspector directory.

Building a Debug version

Windows

dotnet build

Linux/Mac

dotnet build

Building a Release version

Platform Targeted Portable

dotnet publish -c Release -r win10-x64
dotnet publish -c Release -r win-x86
dotnet publish -c Release -r linux-x64
dotnet publish -c Release -r osx-x64

Framework Dependent

  dotnet build -c Release