Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The deploy tool is actually a command processor that can remove and create folders, and execute external programs. For example, the deploy.exe utility is used to deploy and build to binary (by running MSBuild) all the prototype assemblies generated in a prototype translation. 

Performing a Deployment with gmStudio

Deployment is a standard operation in the batch upgrade process, however if you want to deploy your migration files on demand, perform the following steps:

  1. Select [Open .NET Project Folder] on the migration unit context menu open the deployment folder for that unit.
  2. Select [View\Deploy Folder] to open the deploy folder for your migration project.

Default VB6 Deployment

Translating a VB6 migration unit produces a set of files that correspond to the ones referenced by the source VBP:
 

...

   [WorkspaceRoot]\[MigName]\deploy\[TaskName]_[TaskTag]_[Lang]

where:

   [WorkspaceRoot] is the workspace root folder

   [MigName] is the migration project name

   [TaskName] is the original VBP file

   [TaskTag] is the task tag assigned to the task when it was added

   [Lang] is 'csh' or 'vbn' if the target language is C# or VB.Net respectively.

 

...

Select [Open .NET Project Folder] on the migration unit context menu open the deployment folder for that unit.

...

.

Example VB6 Deployment

The ScanTool sample has the following settings

...