Skip to content

Building Tokenvator

Alexander edited this page Apr 7, 2022 · 5 revisions

Tokenvator development now only supports x64 builds

MSBuild

The simplest way to build Tokenvator is via msbuild. This is included as part of the .Net Framework. Included in the repository is an MSBuild script which will by default build all solution targets.

On Windows 10 the project can be easily build with the following command:

C:\Users\badjuju\Documents\GitHub\Tokenvator>C:\Windows\Microsoft.NET\Framework64\v4.0.30319\msbuild.exe MSBuild.xml

It is also possible to selectively build a single target:

C:\Users\badjuju\Documents\GitHub\Tokenvator>C:\Windows\Microsoft.NET\Framework64\v4.0.30319\msbuild.exe Tokenvator/Tokenvator.csproj /p:Platform="x64" /p:Configuration="Release-Net45"

Visual Studio

Within Visual Studio there are several options for building the project.

First open either the .sln or .csproj file from the repository in Visual Studio.

To build a single target go to the drop down menu and select the target to build

Build Options

Then select "Build Solution"

Build Solution

To build multiple targets at once in Visual Studio, open the Build Menu and select "Batch Build..."

Batch Build 1

Then select the targets to build and click build

Batch Build 2

Clone this wiki locally