Home

Anybody has a copy MS Dynamics CRM .lpx Driver - pre 1.5?

Does anybody have a copy of a previous version of CRM WebAPI driver (.lpx file)?
The latest (1.5) started giving me error recently, regardless of dCRM version (8.2, 9.0)
I tried to compile the driver myself, but ran into a series of issues (last one - it wants Microsoft.OData.Edm.Annotations and a few other Microsoft.OData.Edm.* namespaces, which I can't find anywhere), so I'm stuck.

Comments

  • Those namespaces are available from `Microsoft.OData.Edm.dll`.

    You can get this DLL via NuGet: https://www.nuget.org/packages/Microsoft.OData.Edm/

    To see the namespaces available in a given DLL, run the below code (amending the path to the DLL as required):

    void Main()
    {
    var assembly = Assembly.LoadFile(@c:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\IDE\CommonExtensions\Microsoft\SSIS\140\Extensions\ODataSource\References\Microsoft.OData.Edm.dll);
    var namespaces = assembly.GetTypes()
    .Select(t => t.Namespace)
    .Distinct()
    .OrderBy(t => t);
    foreach (var n in namespaces) {
    Console.WriteLine(n);
    }
    }

    For Microsoft.OData.Edm.dll we get:

    Microsoft.OData.Edm
    Microsoft.OData.Edm.Annotations
    Microsoft.OData.Edm.Csdl
    Microsoft.OData.Edm.Csdl.CsdlSemantics
    Microsoft.OData.Edm.Csdl.Parsing
    Microsoft.OData.Edm.Csdl.Parsing.Ast
    Microsoft.OData.Edm.Csdl.Parsing.Common
    Microsoft.OData.Edm.Csdl.Serialization
    Microsoft.OData.Edm.EdmToClrConversion
    Microsoft.OData.Edm.Evaluation
    Microsoft.OData.Edm.Expressions
    Microsoft.OData.Edm.Library
    Microsoft.OData.Edm.Library.Annotations
    Microsoft.OData.Edm.Library.Expressions
    Microsoft.OData.Edm.Library.Values
    Microsoft.OData.Edm.PrimitiveValueConverters
    Microsoft.OData.Edm.Validation
    Microsoft.OData.Edm.Validation.Internal
    Microsoft.OData.Edm.Values
    Microsoft.OData.Edm.Vocabularies.Community.V1
    Microsoft.OData.Edm.Vocabularies.V1
    Microsoft.OData.Edm.Vocabularis
    System.Reflection
Sign In or Register to comment.