Skip to content

How to build OpenTaiko without using Visual Studio (on Windows)

L1m0n3 edited this page Feb 16, 2022 · 4 revisions

First of all, download BuildTools and execute vs_BuildTools.exe.

After Visual Studio Installer is installed and launched, click Individual components and type 4.6.1 in search box.
Then check .NET Framework 4.6.1 Targeting Pack and click Install at the bottom right of the screen.

image

After the installation of the buildtools is completed, you need to get the source code of OpenTaiko.

You can get the source code from main page of the repository on GitHub (Click "Code" -> "Download ZIP"),
But it is highly recommended to install git and use clone command to download as it makes it easier to update to the latest commit.

You can download git installer from here. Follow the instructions to install.
(Note: Do NOT select Use Git from Git Bash only option in the setup.)

After git is installed, open up command prompt and run following commands.
(Replace {Path} with the path of the destination folder where you want to download.)

cd "{Path}" && git clone https://github.com/0auBSQ/OpenTaiko.git

Now you can finally build OpenTaiko!
All you need to do is just run build.bat. And you can play OpenTaiko immediately by executing OpenTaiko.exe in Test folder!

That's all :D

Clone this wiki locally