This page provides information on how to create simple builds.

**A build is a file that let you define the packaging of your objects and perform compiling, linking and packaging the compiled code into a NuGet package.**

## Create build

Open your VS Code and go to your workspace. Select "New Build" and give it the name "MyBuild." _Note: by default the build will be version 1.0.0._

415

624


Select the build to configure as the "default build." _You can change the default build at any time._

390


Go to your object "Gender" (create previous) and select "Add to Build."

395


Open your build file and find the following parametrization:



## Execute Build

On your build file ("MyBuild") select "Build."

385


Check the Terminal of VS Code for the build information if there is any error.

624


## Download Nuget Package

On your build file ("MyBuild") select "Download" (choosing the directory where you want to download the files).

395


In the directory where you download the files, you will find two NuGet Packages

  • DocDigitizer.SemanticObjects.MyObjects.MyBuild.1.0.0.nupkg

  • DocDigitizer.ServiceAPI.1.0.4.nupkg => this contains functionalities that handles with the of DocDigitizer Powercapture core services _Note: DocDigitizer.ServiceAPI.1.0.4.nupkg is the version at the time that this tutorial was made._