Versions Compared

Key

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

Overview

Utility reports provide auditing and code generation facilities for the gmStudio application:

...

Produces a Visual Studio 2013 solution file for all of the .NET projects in your workspace's deploy folder.your  deploy folder or based on your projects's GenerateSolution.txt file. 

1) The SLN file is named MigName.sln and saved in the workspace deploy folder.

...

3) The project files are modified so that assembly references are replaced with project file references.  In order to take advantage of this, you must configure gmStudio to set the project GUID in each .NET project file using a Registry command in your translation script.  See the fmStocks sample for an example of how this is done.

4) The process also generates a GenerateSolution.txt file if one does not already exist.  If present, this file will lists control the content of the Solution . Note, the first project in the list will become the startup project.

Code Block
titleSample GenerateSolution.txt file
%DeployFolder%\Project1\Project1.csproj
%DeployFolder%\Project1\Project2.csproj
...

You may edit this file to add or remove projects that will be in the solution or you may delete it to generate a solution for .NET projects in your  deploy folder.

This feature can also be initiated from the batch control menu.  The SLN file is opened in Visual Studio if you initiate it from the Reports menu.

...