Skip to content

Unhelpful/misleading error message when inporting fails due to missing dependency #1859

@LeeReid1

Description

@LeeReid1

Prerequisites

  • Are you running the latest version?
  • Are you reporting to the correct repository?
  • Did you perform a cursory search?

Description

Importing fails in scenarios where a base class exposes a virtual properties that is in a nuget package and the library was built but not published.

This occurs even if that property is marked [CLSCompliant(false)].

The class that exposes that property often will import just fine, and some but not all classes that derive from it will import successfully. I've yet to decipher the pattern.

The main issue is that the error message does not identify with useful information what is wrong. It simply cannot import the type exposing the property.

Steps to Reproduce

  1. In C#, create a (generic?) class that exposes a public virtual property with type that comes from a nuget package.
  2. Derive from this class a (non-generic?) child class
  3. Build your solution
  4. Link IronPython to the resulting DLL
  5. Try to import the type in IronPython

Expected behavior:

  1. ipy identifies the dependency on a nuget package (potentially not technically possible) OR
  2. ipy produces a meaningful error that states the type exposed by the property cannot be found

Actual behavior:

A non-helpful error message that it cannot import one or more classes deriving from the base class that exposes the property

Work around / Solution

Publish the C# DLL, don't just build it. This should have been done in the first place - my error - but ipy gives such an unhelpful error message that it has cost a lot of development time to discover the issue.

Version Information

IronPython 3.4.2 (3.4.2.1000)
[.NETCoreApp,Version=v8.0 on .NET 8.0.11 (64-bit)]

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions