Delivery using the WorkspaceConsole utility
Creatio provides various tools for functionality delivery.
The delivery management tools are as follows:
- Creatio IDE
- WorkspaceConsole utility
This article covers supply management using the WorkspaceConsole utility.
WorkspaceConsole is a utility for operations with Creatio packages, schemas of configuration elements (client modules, objects, and source code (C#)), files.
The WorkspaceConsole utility provides the following solution transfer options:
- Transfer packages and configuration element schemas between environments and configurations
- Install new packages when updating or when exporting from a development environment.
- Transfer package-related data, such as the lookup content, new system settings, demo section records, etc.
- Transfer localizable resources.
- Create and transfer workspaces between environments.
- Migrate files between database and external file storages using FileMigrator utility. Learn more: Migrate files between database and external file storages (user documentation).
WorkspaceConsole on .NET Framework
Set up the WorkspaceConsole utility before using it.
Set up the WorkspaceConsole utility
- 
Find out the relevant connection string value. To do this, open the ..\Terrasoft.WebApp\DesktopBin\WorkspaceConsole\Terrasoft.Tools.WorkspaceConsole.exe.configfile. TheconnectionStringNameattribute of the<db>XML element contains the connection string.Terrasoft.Tools.WorkspaceConsole.exe.config file<terrasoft>
 ...
 <db>
 <general connectionStringName="db" securityEngineType="Terrasoft.DB.MSSql.MSSqlSecurityEngine, Terrasoft.DB.MSSql" ... />
 </db>
 ...
 </terrasoft>
- 
Edit the connection string. To do this, open the ConnectionStrings.configfile in the Creatio root directory. Thenameattribute of the<connectionStrings>XML element contains the connection string. The value of thenameattribute in theConnectionStrings.configfile must match the value of theconnectionStringNameattribute in theTerrasoft.Tools.WorkspaceConsole.exe.configfile.ConnectionStrings.configfile- MSSQL
- PostgreSQL
- Oracle
 <connectionStrings>
 <add name="db" connectionString="Data Source=YourDBServerName; Initial Catalog=YourDBName; Persist Security Info=True; MultipleActiveResultSets=True; Integrated Security = SSPI; Pooling = true; Max Pool Size = 100; Async = true" />
 </connectionStrings><connectionStrings>
 <add name="db" connectionString="Server=YourDBServerName;Port=YourDBServerPort;Database=YourDBName;User ID=YourPostgreUser;password=YourPostgreUserPassword;Timeout=500; CommandTimeout=400;MaxPoolSize=1024;" />
 </connectionStrings><connectionStrings>
 <add name="db" connectionString="Data Source=(DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = YourDBServerName)(PORT = 1521))) (CONNECT_DATA = (SERVICE_NAME = YourOracleServiceName) (SERVER = DEDICATED)));User Id=YourCreatioUser;Password=YourCreatioUserPassword; Statement Cache Size = 300" />
 </connectionStrings>To perform a one-time operation with WorkspaceConsole, run the utility with the -webApplicationPathparameter. Specify the path to the Creatio directory in this parameter. In this case, the utility independently determines all necessary database connection settings from theConnectionStrings.configfile. However, the connection parameters in theTerrasoft.Tools.WorkspaceConsole.exe.configfile are ignored.
- 
Enable downloading from remote sources. To do this, set the enabledattribute of theloadFromRemoteSourceselement in theTerrasoft.Tools.WorkspaceConsole.exe.configfile totrue.<loadFromRemoteSources enabled="true" />
- 
Install the WorkspaceConsole utility. To do this, run a preinstalled batch command file in the ..\Terrasoft.WebApp\DesktopBin\WorkspaceConsole\directory as an administrator. This is required to install the executable file version and libraries the utility uses.Batch files of the WorkspaceConsole utility commands: - For 32-bit operating systems, run the PrepareWorkspaceConsole.x86.batfile.
- For 64-bit operating systems, run the PrepareWorkspaceConsole.x64.batfile.
 
- For 32-bit operating systems, run the 
- 
Configure the utility to perform operations on the SVN repository (optional). To do this, copy the SharpPlink-x64.svnExe,SharpSvn.dll, andSharpSvn-DB44-20-x64.svnDllfiles from the appropriate directory to the...\Terrasoft.WebApp\DesktopBin\WorkspaceConsoledirectory.- For 32-bit operating systems, copy the files from the ...\Terrasoft.WebApp\DesktopBin\WorkspaceConsole\x86directory.
- For 64-bit operating systems, copy the files from the ...\Terrasoft.WebApp\DesktopBin\WorkspaceConsole\x64directory.
 
- For 32-bit operating systems, copy the files from the 
The Terrasoft.Tools.WorkspaceConsole.exe executable file of the utility is located in the ..\Terrasoft.WebApp\DesktopBin\WorkspaceConsole directory. The utility version matches the Creatio version.
The WorkspaceConsole utility version must match the Creatio version. For example, if the current Creatio version is 7.18.1.1794, and you need to update the packages to version 7.18.2.1658, use WorkspaceConsole version 7.18.2.1658. To obtain the relevant version of the utility, contact support.
WorkspaceConsole works directly with the Creatio database. Thus, specify the database information in the Terrasoft.Tools.WorkspaceConsole.exe.config utility configuration file to ensure the utility works properly. If you deploy Creatio in the cloud, only employees of the cloud service department can work with the utility. In this case, contact support to transfer the changes.
We recommend preparing the WorkspaceConsole commands in a batch file (*.bat or *.cmd) created in a text editor.
WorkspaceConsole utility lets you perform the following actions:
- Check data bindings.
- Back up the database.
- Export packages.
- Import packages.
- Change the feature status.
- Restore the configuration from the package backup.
- Update the configuration.
- Delete the packages.
Restart Creatio in IIS to apply the changes. This is required since the WorkspaceConsole utility makes changes directly in the database.
Check data bindings
Before exporting the package, check that the data is bound to the package correctly. Bound data includes lookup values, new system settings, demo section records, etc.
Back up the database
Before you implement the changes in Creatio using the WorkspaceConsole utility, back up the database. This lets you restore Creatio if the utility commands and parameters are used incorrectly.
Export packages
Use the WorkspaceConsole utility to export a package from the database or SVN repository.
Export packages from the database
- 
Create the command to export packages from the database. Run the command to export packages from the database at the command line interface (Windows command prompt). Structure the command as follows: [Path to WorkspaceConsole]\Terrasoft.Tools.WorkspaceConsole.exe -operation=SaveDBContent -contentTypes=Repository -workspaceName=[Workspace name] -destinationPath=[Path to a local directory] -webApplicationPath=[Path to the Creatio directory] -configurationPath=[Path to a local directory]WorkspaceConsole parameters for exporting packages Parameter Value Description -operationSaveDBContentSaves the database content to the file system. The -contentTypesparameter determines the content type. The-destinationPathparameter determines the content export path in the file system. Requires either the-webApplicationPathor-configurationPathparameter.-contentTypesRepositoryThe type of content exported from the database to the drive. If set to Repository, the utility exports the workspace specified in the-workspaceNameparameter to the directory specified in the-destinationPathparameter.-workspaceNameWorkspace name The name of the workspace (configuration) where the operation is performed. By default, all users work in the Defaultworkspace.-destinationPathPath to a local directory Path to a local directory. The utility exports the *.gz package archives to this directory. -webApplicationPathPath to a local directory Path to the Creatio installation directory. The utility follows this path to fetch the database connection information from the ConnectionStrings.configfile. If you omit this parameter, the utility connects to the database specified in the connection string in the utility’s configuration file.-configurationPathPath to a local directory Path to the ..\Terrasoft.WebApp\Terrasoft.Configurationdirectory. The utility exports the source code and resources of user-made package schemas to this directory in the file system development mode.
- 
Run the utility. 
The package export operation exports all packages of the workspace. The process might take several dozen minutes.
As a result, the utility will export the workspace package archives to the local directory.
Export packages from the SVN repository
- 
Create the command to export packages from SVN. Run the command to export packages from the SVN repository at the command line interface (Windows command prompt). Structure the command as follows: [Path to WorkspaceConsole]\Terrasoft.Tools.WorkspaceConsole.exe -operation=SaveVersionSvnContent -workspaceName=[Workspace name] -destinationPath=[Path to a local directory] -workingCopyPath=[Path to a local directory] -sourcePath=[Path to the SVN repository] -packageName=[Package name] -packageVersion=[Package version] -sourceControlLogin=[SVN username] -sourceControlPassword=[SVN user password] -cultureName=[Language culture] -excludeDependentPackages=true -logPath=[Path to a local directory]WorkspaceConsole parameters for exporting packages Parameter Value Description -operationSaveVersionSvnContentDownloads the package hierarchy as a set of *.zip archives. The -destinationPathparameter determines the content export path in the file system. The-sourcePathparameter determines the SVN repositories.-workspaceNameWorkspace name The name of the workspace (configuration) where the operation is performed. By default, all users work in the Defaultworkspace.-destinationPathPath to a local directory Path to a local directory. The utility will export the *.gz package archives to this directory. -workingCopyPathPath to a local directory The local directory for the working copies of packages stored in SVN. -sourcePathPath to the SVN repository The address of the SVN repository that stores the package structure and properties. Can accept multiple values separated by commas. -packageNamePackage name The name of the package from the source SVN repository. The utility downloads the packages on which the current package depends as well. -packageVersionPackage version The version of the package from the source SVN repository. -sourceControlLoginSVN username SVN user login. -sourceControlPasswordSVN user password SVN user password. -cultureNameLanguage culture Language culture code. For example, en-US.-excludeDependentPackagestrueorfalseThe flag that specifies whether to export packages on which the package listed in the -packageNameparameter depends.-logPathPath to a local directory The utility saves the operation log file to this directory. The file name consists of the operation start date and time. Optional. 
- 
Run the utility. 
As a result, the utility will export the workspace package archives to the local directory.
Import packages
- 
Create the command to import packages into the database. Run the command to import packages into the database at the command line interface (Windows command prompt). Structure the command as follows: [Path to WorkspaceConsole]\Terrasoft.Tools.WorkspaceConsole.exe -operation=InstallFromRepository -packageName=[Package name] -workspaceName=[Workspace name] -sourcePath=[Path to a local directory] -destinationPath=[Path to a local directory] -skipConstraints=false -skipValidateActions=true -regenerateSchemaSources=true -updateDBStructure=true -updateSystemDBStructure=true -installPackageSqlScript=true -installPackageData=true -continueIfError=true -webApplicationPath=[Path to a local directory] -confRuntimeParentDirectory=[Path to a local directory] -logPath=[Path to a local directory] -configurationPath=[Path to a local directory]WorkspaceConsole parameters for importing packages Parameter Value Description -operationInstallFromRepositoryImports the package content and properties from *.zip archives into the configuration. If needed, the utility runs bound SQL scripts, re-generates source code, and installs bound data. Works only with updated or new packages and their elements. Requires either the -webApplicationPathor-configurationPathparameter. Also requires the-confRuntimeParentDirectoryparameter.-packageNamePackage name In the -workspaceNameparameter, specify the package name in the configuration. The utility downloads the packages on which the current package depends as well. If you omit the parameter, the utility downloads all packages of the configuration.-workspaceNameWorkspace name The name of the workspace (configuration) where the operation is performed. By default, all users work in the Defaultworkspace.-sourcePathPath to a local directory Path to a local directory. The directory must contain the *.gz package archives to install. -destinationPathPath to a local directory Path to a temporary local directory. The utility unpacks the package archives specified in the -sourcePathparameter to this directory.-skipConstraintsfalseSkips the creation of foreign keys in database tables. Can be trueorfalse.-skipValidateActionstrueSkips checking if table indexes can be created when updating the database structure. Can be trueorfalse.-regenerateSchemaSourcestrueSpecifies whether to re-generate the source code after saving the packages to the database. Can be trueorfalse. The default value istrue.-updateDBStructuretrueSpecifies whether to update the database structure after saving the packages. Can be trueorfalse. The default value istrue.-updateSystemDBStructuretrueSpecifies whether to modify the structure of the system schema database before installing the packages. Also creates the missing indexes in the system tables. Can be trueorfalse.-installPackageSqlScripttrueSpecifies whether to run the SQL scripts before and after saving the packages. Can be trueorfalse. The default value istrue.-installPackageDatatrueSpecifies whether to install the bound package data after saving the packages. Can be trueorfalse. The default value istrue.-continueIfErrortrueSpecifies whether to abort the installation after encountering the first error. If set to true, the installation process goes through to the end. You will receive the list of the errors encountered. Can betrueorfalse. The default value isfalse.-webApplicationPathPath to a local directory Path to the Creatio installation directory. The utility follows this path to fetch the database connection information from the ConnectionStrings.configfile. If you omit this parameter, the utility connects to the database specified in the connection string in the utility’s configuration file.-confRuntimeParentDirectoryPath to a local directory Path to the parent directory of the ..\Terrasoft.WebApp\confdirectory.-logPathPath to a local directory The utility saves the operation log file to this directory. The file name consists of the operation start date and time. Optional. -configurationPathPath to a local directory Path to the ..\Terrasoft.WebApp\Terrasoft.Configurationdirectory. The utility exports the source code and resources of user-made package schemas to this directory in the file system development mode.-backupConfigurationtrueSpecifies whether to back up the configuration before package installation. Available in Creatio version 8.0.2 and later. The default value is true.
- 
Run the utility. 
- 
Create the command to generate the static content in the file system. Run the command to generate the static content in the file system at the command line interface (Windows command prompt). Structure the command as follows: [Path to WorkspaceConsole]\Terrasoft.Tools.WorkspaceConsole.exe -operation=BuildConfiguration -workspaceName=[Workspace name] -destinationPath=[Path to a local directory] -webApplicationPath=[Path to a local directory] -confRuntimeParentDirectory=[Path to a local directory] -logPath=[Path to a local directory] -configurationPath=[Path to a local directory]WorkspaceConsole parameters for generating the static content Parameter Value Description -operationBuildConfigurationGenerates the static content in the file system. Requires either the -webApplicationPathor-configurationPathparameter.-workspaceNameWorkspace name The name of the workspace (configuration) where the exported packages are specified. By default, all users work in the Defaultworkspace.-destinationPathPath to a local directory Path to a local directory. The utility will export the *.gz package archives specified in the -sourcePathparameter to this directory.-webApplicationPathPath to a local directory Path to the Creatio installation directory. The utility follows this path to fetch the database connection information from the ConnectionStrings.configfile. If you omit this parameter, the utility connects to the database specified in the connection string in the utility’s configuration file.-confRuntimeParentDirectoryPath to a local directory Path to the parent directory of the ..\Terrasoft.WebApp\confdirectory.-logPathPath to a local directory The utility saves the operation log file to this directory. The file name consists of the operation start date and time. Optional. -forcetrueorfalseSets the conditions of the file content generation If set to true, the utility generates the file content for all schemas. If set tofalse, the utility generates the file content for updated schemas. The default value isfalse. Requires either the-webApplicationPathor-configurationPathparameter.-configurationPathPath to a local directory Path to the ..\Terrasoft.WebApp\Terrasoft.Configurationdirectory. The utility exports the source code and resources of user-made package schemas to this directory in the file system development mode.
- 
Run the utility. 
Creatio considers packages imported using the WorkspaceConsole as preinstalled. You cannot modify them.
We do not recommend using the WorkspaceConsole utility for importing packages into the database if the file system development mode is enabled. If you use the utility, it modifies the schema source code in the database but not in the file system. As such, if you open the configuration element schema in Creatio IDE, the schema will contain unmodified code from the file system. However, the modification date of the configuration element schema will be updated. This will make the schema falsely appear to have transferred correctly.
To import packages into the database when the file system development mode is enabled:
- Use the WorkspaceConsole utility to import packages into the database. To do this, follow this guide: Import packages.
- Select Download packages to the file system in the File system development mode action group on the toolbar.
/scr_download_to_fs.png)
As a result, Creatio will download all packages to the ..\Terrasoft.WebApp\Terrasoft.Configuration\Pkg path as a set of directories that match package names.
Change the feature status
Learn more about feature in a separate article: Manage existing feature.
Since version 8.0.4, Creatio lets you manage the feature status using the WorkspaceConsole utility.
To change the feature status:
- 
Create the command to change the feature status. Run the command to change the feature status at the command line interface (Windows command prompt). Structure the command as follows: [Path to WorkspaceConsolee]\Terrasoft.Tools.WorkspaceConsole.exe -operation=ChangeFeatureState -featureCode=[Feature code] -featureState=[Feature status] -adminUnitName=[User name] -workspaceName=[Workspace name] -confRuntimeParentDirectory=[Path to a local directory] -logPath=[Path to a local directory] -autoExit=trueWorkspaceConsole parameters for changing feature status Parameter Value Description -operationChangeFeatureStateChanges the feature status. Requires either the -featureCode,-featureStateor-adminUnitNameparameters.-featureCodeFeature code The code of the additional feature. If you change the feature absent from the database, the utitily adds the corresponding record to the database table automatically. -featureStateFeature status The status of the additional feature ( true– turned on,false– turned off).-adminUnitNameUser name The name of the user (the [Name]column value in the[SysAdminUnit]database table) that changes the feature status. If you specify the parameter, the utility modifies the corresponding record in the[AdminUnitFeatureState]database table. If you omit the parameter, the utility sets the default value for the feature (the[DefaultState]column value in the[Feature]database table).-workspaceNameWorkspace name The name of the workspace (configuration) where the deleted packages are specified. By default, all users work in the Defaultworkspace.-confRuntimeParentDirectoryPath to a local directory Path to the parent directory of the ..\Terrasoft.WebApp\confdirectory.-logPathPath to a local directory The utility saves the operation log file to this directory. The file name consists of the operation start date and time. Optional. -autoExittrueorfalseSpecifies whether to finish the utility process automatically after performing the operation. Can be trueorfalse. The default value isfalse.
- 
Run the utility. 
As a result, Creatio will change the status of the additional feature.
Restore the configuration from the package backups
Take this step if package import results in an error. Since version 8.0.2, Creatio lets you restore the configuration from the package backups using the WorkspaceConsole utility. The mechanism works similarly to the functionality that restores the configuration from backup available when installing apps or packages using custom means.
To restore the configuration from the package backups:
- 
Create the command to restore the configuration from the package backups. Run the command to restore the configuration from the package backups at the command line interface (Windows command prompt). Structure the command as follows: [Path to WorkspaceConsole]\Terrasoft.Tools.WorkspaceConsole.exe -operation=RestoreConfiguration -backupPath=[Path to a local directory] -confRuntimeParentDirectory=[Path to a local directory] -configurationPath=[Path to a local directory] -logPath=[Path to a local directory]WorkspaceConsole parameters for restoring the configuration from the package backups Parameter Value Description -operationRestoreConfigurationRestores the configuration from the package backups. Requires the BackupConfigurationoperation to be performed. Requires the-backupPathparameter.-backupPathPath to a local directory Path to a local directory that contains the *.gz archives of package backups. The value of the current parameter must match the value of the -backupPathparameter when backing up packages.-confRuntimeParentDirectoryPath to a local directory Path to the parent directory of the ..\Terrasoft.WebApp\confdirectory.-configurationPathPath to a local directory Path to the ..\Terrasoft.WebApp\Terrasoft.Configurationdirectory. The utility exports the source code and resources of user-made package schemas to this directory in the file system development mode.-logPathPath to a local directory The utility saves the operation log file to this directory. The file name consists of the operation start date and time. Optional. 
- 
Run the utility. 
As a result, Creatio will restore the configuration from the package backups.
Update the configuration
Since version 8.0.4, Creatio lets you update the configuration using the WorkspaceConsole utility. You can install and delete packages as part of an update. If you update the configuration, Creatio backs up the installed and deleted packages.
You can perform the following actions as part of a configuration update:
- Roll back to the previous state of the installed packages.
- Restore the packages that were deleted as part of the configuration update.
To update the configuration:
- 
Create the command to update the configuration. Run the command to update the configuration at the command line interface (Windows command prompt). Structure the command as follows: [Path to WorkspaceConsole]\Terrasoft.Tools.WorkspaceConsole.exe -operation=UpdateConfiguration -packageName=[Package name] -workspaceName=[Workspace name] -sourcePath=[Path to a local directory] -destinationPath=[Path to a local directory] -skipConstraints=false -skipValidateActions=true -regenerateSchemaSources=true -updateDBStructure=true -updateSystemDBStructure=true -installPackageSqlScript=true -installPackageData=true -packagesToDelete=[Packages to be deleted] -continueIfError=true -webApplicationPath=[Path to a local directory] -confRuntimeParentDirectory=[Path to a local directory] -logPath=[Path to a local directory] -configurationPath=[Path to a local directory]WorkspaceConsole parameters for updating the configuration Parameter Value Description -operationUpdateConfigurationUpdates the configuration. -packageNamePackage name In the -workspaceNameparameter, specify the package name in the configuration. The utility downloads the packages on which the current package depends as well. If you omit the parameter, the utility downloads all packages of the configuration.-workspaceNameWorkspace name The name of the workspace (configuration). By default, all users work in the Defaultworkspace.-sourcePathPath to a local directory Path to a local directory. The directory must contain the *.gz package archives to install. -destinationPathPath to a local directory Path to a local directory. The utility will export the *.gz package archives specified in the -sourcePathparameter to this directory.-skipConstraintsfalseSkips the creation of foreign keys in database tables. Can be trueorfalse.-skipValidateActionstrueSkips checking if table indexes can be created when updating the database structure. Can be trueorfalse.-regenerateSchemaSourcestrueSpecifies whether to re-generate the source code after saving the packages to the database. Can be trueorfalse. The default value istrue.-updateDBStructuretrueSpecifies whether to update the database structure after saving the packages. Can be trueorfalse. The default value istrue.-updateSystemDBStructuretrueSpecifies whether to modify the structure of the system schema database before installing the packages. Also creates the missing indexes in the system tables. Can be trueorfalse.-installPackageSqlScripttrueSpecifies whether to run the SQL scripts before and after saving the packages. Can be trueorfalse. The default value istrue.-installPackageDatatrueSpecifies whether to install the bound package data after saving the packages. Can be trueorfalse. The default value istrue.-packagesToDeletePackages to be deleted The name of packages to delete. Can take multiple values separated by commas. Specify whether to delete the package as part of the configuration update. -continueIfErrortrueSpecifies whether to abort the installation after encountering the first error. If set to true, the installation process goes through to the end. You will receive the list of the errors encountered. Can betrueorfalse. The default value isfalse.-webApplicationPathPath to a local directory Path to the Creatio installation directory. The utility follows this path to fetch the database connection information from the ConnectionStrings.configfile. If you omit this parameter, the utility connects to the database specified in the connection string in the utility’s configuration file.-confRuntimeParentDirectoryPath to a local directory Path to the parent directory of the ..\Terrasoft.WebApp\confdirectory.-logPathPath to a local directory The utility saves the operation log file to this directory. The file name consists of the operation start date and time. Optional. -configurationPathPath to a local directory Path to the ..\Terrasoft.WebApp\Terrasoft.Configurationdirectory. The utility exports the source code and resources of user-made package schemas to this directory in the file system development mode.
- 
Run the utility. 
As a result, Creatio will update the configuration.
Delete the packages
Since version 8.0.4, Creatio lets you delete one or more packages using the WorkspaceConsole utility.
To delete the packages:
- 
Create the command to delete the packages. Run the command to delete the packages at the command line interface (Windows command prompt). Structure the command as follows: [Path to WorkspaceConsole]\Terrasoft.Tools.WorkspaceConsole.exe -operation=DeletePackages -workspaceName=[Workspace name] -packagesToDelete=[Packages to be deleted] -continueIfError=true -webApplicationPath=[Path to a local directory] -confRuntimeParentDirectory=[Path to a local directory] -logPath=[Path to a local directory]WorkspaceConsole parameters for deleting packages Parameter Value Description -operationDeletePackagesDeletes the packages from the configuration. Requires either the -packagesToDeleteparameter.-workspaceNameWorkspace name The name of the workspace (configuration). By default, all users work in the Defaultworkspace.-packagesToDeletePackages to be deleted The name of packages to delete. Can take multiple values separated by commas. Specify whether to delete the package as part of the configuration update. -continueIfErrortrueSpecifies whether to abort the installation after encountering the first error. If set to true, the installation process goes through to the end. You will receive the list of the errors encountered. Can betrueorfalse. The default value isfalse.-webApplicationPathPath to a local directory Path to the Creatio installation directory. The utility follows this path to fetch the database connection information from the ConnectionStrings.configfile. If you omit this parameter, the utility connects to the database specified in the connection string in the utility’s configuration file.-confRuntimeParentDirectoryPath to a local directory Path to the parent directory of the ..\Terrasoft.WebApp\confdirectory.-logPathPath to a local directory The utility saves the operation log file to this directory. The file name consists of the operation start date and time. Optional. 
- 
Run the utility. 
As a result, Creatio will delete the specified packages from the configuration.
WorkspaceConsole on .NET Core and .NET 6
You can use the WorkspaceConsole utility to generate and compile Creatio .NET Core or .NET 6.
To generate and compile Creatio .NET Core or .NET 6:
- 
Edit the connection string. To do this, open the Terrasoft.Tools.WorkspaceConsole.dll.configfile in the..\WorkspaceConsoledirectory. Thenameattribute of the<connectionStrings>XML element contains the connection string. The"db"string in theTerrasoft.Tools.WorkspaceConsole.dll.configfile must match the corresponding string in theConnectionStrings.configfile.Terrasoft.Tools.WorkspaceConsole.dll.config file<connectionStrings>
 ...
 <add name="db" connectionString="Pooling=true; Database=7.18.4(netcore); Host=; Port=5432; Integrated Security=true; Username=; Timeout=5; CommandTimeout=400" />
 ...
 </connectionStrings>"db"string is required to connect to the Microsoft SQL Server database.
- 
Open the command line and go to the ..\WorkspaceConsoledirectory. To do this, run the command below.cd [Path to the WorkspaceConsole directory]
- 
Configure commands to generate and compile Creatio .NET Core or .NET 6. Run commands to generate and compile Creatio .NET Core or .NET 6 at the command interpreter (console) sequentially. Structure the commands as follows: dotnet Terrasoft.Tools.WorkspaceConsole.dll - operation = RegenerateSchemaSources - workspaceName = Default - configurationPath = [Path to a local directory] - confRuntimeParentDirectory = [Path to a local directory] - logPath = [Path to a local directory]
 dotnet Terrasoft.Tools.WorkspaceConsole.dll - operation = RebuildWorkspace - workspaceName = Default - configurationPath = [Path to a local directory] - webApplicationPath = [Path to a local directory] - confRuntimeParentDirectory = [Path to a local directory] - logPath = [Path to a local directory]
 dotnet Terrasoft.Tools.WorkspaceConsole.dll - operation = BuildConfiguration - force = True - workspaceName = Default - configurationPath = [Path to a local directory] - destinationPath = [Path to a local directory] - confRuntimeParentDirectory = [Path to a local directory] - logPath = [Path to a local directory]WorkspaceConsole parameters for generating and compiling Creatio .NET Core or .NET 6 Parameter Value Description -operationRegenerateSchemaSourcesRe-generates the source code and compiles it. Requires the -confRuntimeParentDirectoryparameter.ReBuildWorkspaceRecompiles the workspace (configuration). Use when developing schemas in Visual Studio. Requires the -confRuntimeParentDirectoryparameter.BuildConfigurationGenerates the static content in the file system. Requires either the -webApplicationPathor-configurationPathparameter.-workspaceNameWorkspace name The name of the workspace (configuration). By default, all users work in the Defaultworkspace.-configurationPathPath to a local directory Path to the ..\Terrasoft.Configurationdirectory. The utility exports the source code and resources of user-made package schemas to this directory in the file system development mode.-confRuntimeParentDirectoryPath to a local directory Path to the Creatio parent directory. -logPathPath to a local directory The utility saves the operation log file to this directory. Optional. -webApplicationPathPath to a local directory Path to the Creatio installation directory. The utility follows this path to fetch the database connection information from the ConnectionStrings.configfile. If you omit this parameter, the utility connects to the database specified in the connection string in the utility’s configuration file.-forceTrueorFalseSets the conditions of the file content generation. If set to True, the utility generates and compiles the source code for all schemas. If set toFalse, the utility generates and compiles the source code for updated schemas. Requires either the-webApplicationPathor-configurationPathparameter.-destinationPathPath to a local directory Path to a local directory. The utility exports the *.gz package archives to this directory. 
See also
Migrate files between database and external file storages (user documentation)