Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3
Panel

Update: We added support for VS2013 in the March 2014 Release of gmStudio.

...

Panel
titleIf you need Interop Assemblies...

We rarely use interop for migrations, opting instead to configure the tool to replace COM dependencies with .NET classes. However, if you decide to use interop in your upgraded project, gmStudio can help you produce interop assemblies. The feature works as follows: First gmStudio generates a csproj file that references the COM binaries referenced in your VB6/ASP code. Then gmStudio runs a batch build of this csproj. The .NET SDK tools do the actual interop assembly generation. The csproj file is tool version and .NET framework version dependent and these should be consistent with the interop assemblies.

               VS2005: tool\framework Version = "2.0, v2.0"
               VS2008: tool\framework Version = "2.0, v3.5"
               VS2010: tool\framework Version = "4.0, v4.0"
               VS2012: tool\framework Version = "4.0, v4.5"

At present these defaults are hard coded in gmStudio. This logic was modified to support VS2012.

...