Help me to build 32bit Binary file

Play Now

MirEI

Banned
Banned
Loyal Member
Dec 19, 2016
23
1
15
Hello!
Who can help me to build 32bit binary Zircon file.
I went to run it on my win7 x32 system,because there‘s no Visual Studio on my OS.
Thandks!
 

MirEI

Banned
Banned
Loyal Member
Dec 19, 2016
23
1
15
Thank you Violent.
But i just want some Server and client' .EXE files,don't want to install VS on my computer,because its too big.
 

Pete107

🐑[E]dens-[E]lite🐑
Developer
Dec 10, 2003
2,905
395
355
Todmorden, West Yorkshire
Thank you Violent.
But i just want some Server and client' .EXE files,don't want to install VS on my computer,because its too big.

Have you tried the lighter version of VS? (Visual Code I think it is) and use Powershell to build the projects.

EDIT:

Take a look at this.

To build without loading/having the whole IDE use the following from PowerShell
You may have to find your way to the path of MSBuild.exe (for me it's in )
Code:
cd "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin"

.\MSBuild "C:\Your Build Path.sln" /t:Rebuild /p:Configuration=Debug /p:Platform="Any CPU"

You may not need to go-to the directory of the MSBuild.exe, I do for some strange reason.
 
Last edited:

MirEI

Banned
Banned
Loyal Member
Dec 19, 2016
23
1
15
Have you tried the lighter version of VS? (Visual Code I think it is) and use Powershell to build the projects.

EDIT:

Take a look at this.

To build without loading/having the whole IDE use the following from PowerShell
You may have to find your way to the path of MSBuild.exe (for me it's in )
Code:
cd "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin"

.\MSBuild "C:\Your Build Path.sln" /t:Rebuild /p:Configuration=Debug /p:Platform="Any CPU"

You may not need to go-to the directory of the MSBuild.exe, I do for some strange reason.

Very good,thankyou.