Welcome Guest! You need to login or register to make posts.

Notification

Icon
Error

Options
Go to last post Go to first unread
Tamila  
#1 Posted : Thursday, January 14, 2010 3:22:15 AM(UTC)
Tamila

Rank: Advanced Member

Groups:
Joined: 3/9/2008(UTC)
Posts: 554

Was thanked: 1 time(s) in 1 post(s)
I try to migrate 32-bit WinForm application to 64-bit, but I have problem with license.licx file when compile my 64-bit application.

Unfortunately it caused by a bug in Visual Studio 2010 arising when it starts building a 64-bit application on a 64-bit system. Visual Studio 2010 uses 32-bit version of license compiler when build configuration of the project is set to x64 and it leads to this issue.

Resolution

To workaround this issue you need to modify your Visual Studio project file in a text editor. Add the highlighted line shown below to all of your 64-bit configurations:

Quote:
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">

<DebugSymbols>true</DebugSymbols>

<OutputPath>bin\x64\Debug\</OutputPath>

<DefineConstants>DEBUG;TRACE</DefineConstants>

<DebugType>full</DebugType>

<PlatformTarget>x64</PlatformTarget>

<CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>

<CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>

<ErrorReport>prompt</ErrorReport>

<LCToolPath>C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin\NETFX 4.0 Tools\x64</LCToolPath>

</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">

<OutputPath>bin\x64\Release\</OutputPath>

<DefineConstants>TRACE</DefineConstants>

<Optimize>true</Optimize>

<DebugType>pdbonly</DebugType>

<PlatformTarget>x64</PlatformTarget>

<CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>

<CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>

<ErrorReport>prompt</ErrorReport>

<LCToolPath>C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin\NETFX 4.0 Tools\x64</LCToolPath>

</PropertyGroup>

Edited by moderator Tuesday, May 29, 2012 2:32:27 AM(UTC)  | Reason: Not specified

Aurigma Support Team

UserPostedImage Follow Aurigma on Twitter!

Users browsing this topic
Guest
Similar Topics
PRB: License Compiler Exception 0x80131621 (FAQ – Graphics Mill)
by Dmitry.Obukhov 11/9/2010 2:45:08 AM(UTC)
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.