-
Notifications
You must be signed in to change notification settings - Fork 198
Building Tokenvator
Tokenvator development now only supports x64 builds
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"
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
Then select "Build Solution"
To build multiple targets at once in Visual Studio, open the Build Menu and select "Batch Build..."
Then select the targets to build and click build