Building Your Application
Project Build Process
Before distributing your application to users, it needs to be properly built. To create an application executable do the following:
-
On the Projects tab of the SDK Browser switch Engine version for your project to Release: choose Other Actions → Configure, select Release in the Engine dropdown, and click Update Configuration at the bottom of the configuration window.
-
Open your project in an IDE by clicking Open Code IDE on your project's card.
-
The default configuration in Visual Studio is set to Debug, switch it to Release to build the final version to be distributed.
-
Choose Build → Build Solution to compile your code and create an application executable.
-
If the build is successful, you're ready to proceed with packing files and configuring the application launcher, in case you have any errors, check the Console for details and fix them.
So, the application is successfully built and we can start packing it!