/
Support Statement: Setting Platform for builds
Support Statement: Setting Platform for builds
By default gmStudio authors .NET project files (eg. .csproj) to build for Platform=AnyCPU. You may easily alter this using an Author/Fix in your translation script:
... <Author> <Fix name="PostEdit"> <Replace name="Force Set Debug Configuration to PlatformTarget=x86" lang="csproj"> <OldBlock><![CDATA[ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> ]]></OldBlock> <NewBlock><![CDATA[ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <PlatformTarget>x86</PlatformTarget> ]]></NewBlock> </Replace> </Fix> </Author>
Most of the default structure and other "boiler plate" content in .NET project files is defined by gmSL logic in the system configuration file, AuthorText.gmsl. An alternative to the above fix is to use a project-specific version of AuthorText.gmsl. The instructions for doing this are discussed in this article on Custom VB6 Language Replacement.
, multiple selections available,
Related content
Support Statement: Override a routine in authortext.gmsl
Support Statement: Override a routine in authortext.gmsl
More like this
Support Statement: Partial Translations
Support Statement: Partial Translations
More like this
Custom VB6 Language Replacement
Custom VB6 Language Replacement
More like this
Utility Reports
Utility Reports
More like this
gmStudio Release News: Monday, 22-April-2024
gmStudio Release News: Monday, 22-April-2024
More like this
Support Statement: Building gmStudio Extensions using gmAPI and .NET
Support Statement: Building gmStudio Extensions using gmAPI and .NET
More like this