Failed to license after upgrade to VS2015

Discussion of open issues, suggestions and bugs regarding ADO.NET provider for Oracle
Post Reply
michytang
Posts: 9
Joined: Fri 07 Jul 2017 09:26

Failed to license after upgrade to VS2015

Post by michytang » Fri 07 Jul 2017 09:43

Recently, my project is upgraded from VS2008&.net3.5 to VS2015&.NET 4.6.1, then I have license a issue. the application runs well in vs2008, but in vs2015, I keep encountering "Assembly (ProjectName) is not licensed to use dotConnect for Oracle."

I am using licenses.licx as a embedded resource in my VB project.
<EmbeddedResource Include="My Project\licenses.licx" />

Content:
Devart.Data.Oracle.OracleConnection, Devart.Data.Oracle, Version=6.60.268.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx

Kindly help if you have any idea about this.

Pinturiccio
Devart Team
Posts: 2420
Joined: Wed 02 Nov 2011 09:44

Re: Failed to license after upgrade to VS2015

Post by Pinturiccio » Mon 10 Jul 2017 14:09

Visual Studio 2015 passes parameters to lc.exe differently than older Visual Studio versions. We have supported Visual Studio 2015 Release Candidate in dotConnect for Oracle 8.4.422. Starting from this version, we have taken these differences into account and correctly process parameters, passed by Visual Studio 2015. For more information, please refer to https://www.devart.com/dotconnect/oracl ... story.html

With Visual Studio 2015, you need to use dotConnect for Oracle 8.4.422 or higher. However, you can use Visual Studio 2015 even with dotConnect for Oracle of a version older than 8.4.422. In this case you have to compile license resources manually.

The license resource can be compiled in the following way:
1) Create a text file named licenses.licx and enter the following text inside the licenses.licx file:
Devart.Data.Oracle.OracleConnection, Devart.Data.Oracle

2) Generate the license resource file using the following command line:
"%Compiler Path%\lc.exe /target:MyApplication.exe /complist:licenses.licx /i:"%Assembly Path%\Devart.Data.Oracle.dll"
Where:

- %Compiler Path% is the path to the appropriate lc.exe file (for example, C:\Program Files\Microsoft.NET\SDK\v2.0\Bin);
- MyApplication.exe is the name of your target executable file. If you want to compile a license resource for a class library project, specify MyApplication.dll instead of MyApplication.exe, where MyApplication.dll is the name of the class library.
- licenses.licx is your licenses.licx file. Place licenses.config file in the same folder as the licenses.licx file for a class library project;
- %Assembly Path% is the Devart.Data.Oracle.dll assembly location.

3) The License compiler will generate the 'MyApplication.exe.licenses' ('MyApplication.dll.licenses' for class library project) resource file;

4) Add this file to your project as an embedded resource.

For more information, please refer to https://www.devart.com/dotconnect/oracl ... ml#compile

Post Reply