dSPACE.Runtime.InteropServices 0.8.1

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package dSPACE.Runtime.InteropServices --version 0.8.1
NuGet\Install-Package dSPACE.Runtime.InteropServices -Version 0.8.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="dSPACE.Runtime.InteropServices" Version="0.8.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add dSPACE.Runtime.InteropServices --version 0.8.1
#r "nuget: dSPACE.Runtime.InteropServices, 0.8.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install dSPACE.Runtime.InteropServices as a Cake Addin
#addin nuget:?package=dSPACE.Runtime.InteropServices&version=0.8.1

// Install dSPACE.Runtime.InteropServices as a Cake Tool
#tool nuget:?package=dSPACE.Runtime.InteropServices&version=0.8.1

dSPACE COM tools

Nuget:Cli Nuget:Lib Build Release License dSPACE

dscom is a replacement for tlbexp.exe and TypeLibConverter.ConvertAssemblyToTypeLib.
The tool consists of a library and a command line tool. The library can be used in net6.0 or in net48 projects.

Fortunately, .NET still supports COM, but there is no support for generating TLBs.
From the Microsoft documentation:

Unlike in .NET Framework, there is no support in .NET Core or .NET 5+ for generating a COM Type Library (TLB) from a .NET assembly.

https://docs.microsoft.com/en-us/dotnet/core/native-interop/expose-components-to-com

One main goal is to make dscom behave like tlbexp.exe.

Happy IUnknowing and IDispatching 😉

Command Line Client

The command-line interface (CLI) tool dscom is a replacement for tlbexp.exe and OleView (View TypeLib).

It supports the following features:

  • Convert an assembly to a type library
  • Convert a type library to YAML file
  • Register a type library
  • Unregister a type library

Installation

The installation is quite simple. You can use dotnet tool to install the dscom binary.

c:\> dotnet tool install --global dscom

Here you can find all available versions:
https://www.nuget.org/packages/dscom/

Usage

c:\> dscom --help
Description:
  dSPACE COM tools

Usage:
  dscom [command] [options]

Options:
  --version       Show version information
  -?, -h, --help  Show help and usage information

Commands:
  tlbexport <Assembly>         Export the assembly to the specified type library
  tlbdump <TypeLibrary>        Dump a type library
  tlbregister <TypeLibrary>    Register a type library
  tlbunregister <TypeLibrary>  Unregister a type library

dSPACE.Runtime.InteropServices library

If you miss the TypeLibConverter class and the ConvertAssemblyToTypeLib method in .NET, then the dSPACE.Runtime.InteropServices might help you. This method should behave compatible to the .NET Framework method.

public object? ConvertAssemblyToTypeLib(
  Assembly assembly,
  string tlbFilePath,
  ITypeLibExporterNotifySink? notifySink)

https://www.nuget.org/packages/dSPACE.Runtime.InteropServices/

Example:

using dSPACE.Runtime.InteropServices;

// The assembly to convert
var assembly = typeof(Program).Assembly;

// Convert to assembly
var typeLibConverter = new TypeLibConverter();
var callback = new TypeLibConverterCallback();
var result = typeLibConverter.ConvertAssemblyToTypeLib(assembly, "MyTypeLib.tlb", callback);

// Get the name of the type library
var typeLib2 = result as System.Runtime.InteropServices.ComTypes.ITypeLib2;
if (typeLib2 != null)
{
    typeLib2.GetDocumentation(-1, out string name, out _, out _, out _);
    Console.WriteLine($"TypeLib name: {name}");
}

// The callback to load additional type libraries, if necessary
public class TypeLibConverterCallback : ITypeLibExporterNotifySink
{
    public void ReportEvent(ExporterEventKind eventKind, int eventCode, string eventMsg)
    {
        Console.WriteLine($"{eventCode}: {eventMsg}");
    }

    public object? ResolveRef(System.Reflection.Assembly assembly)
    {
        // Returns additional type libraries
        return null;
    }
}

Migration notes (mscorelib vs System.Private.CoreLib)

Both assemblies are ComVisible=false but lot of .NET Framework types are ComVisible=true. But this is not the case for .NET (.NET Core and .NET >= 5).
Unlike mscorelib (the good old .NET Framework), no tlb is shipped for .NET.

As example the System.Exception class:

In case of mscorelib the System.Exception class is ComVisible=true:

[Serializable]
[ClassInterface(ClassInterfaceType.None)]
[ComDefaultInterface(typeof(_Exception))]
[ComVisible(true)]
public class Exception : ISerializable, _Exception

In case of System.Private.CoreLib (.NET Core and .NET >=5), the Exception class is ComVisible=false

[Serializable]
[TypeForwardedFrom("mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
public class Exception : ISerializable
{

The _Exception class interface (default interface in this case) is not available in .NET (.NET Core and .NET >=5).

Why can I load a .NET Framework library into a .NET application?

The magic is in TypeForwardedFromAttribute.
If you try to load an .NET Framework assembly inside a .NET (.NET Core and .NET >=5) application, the runtime will forward the original type to a type defined in the System.Private.CoreLib assembly.

classextern forwarder System.Exception
{
    .assemblyextern System.Private.CoreLib
}

Therefore you should make sure that you do not use any types from the mscorelib typelib in your .NET Framework project if you plan to migrate to .NET 5+

Limitations

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Framework net48 is compatible.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.8

    • No dependencies.
  • net6.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.10.0 0 4/30/2024
1.9.0 69 4/19/2024
1.8.0 99 4/15/2024
1.7.4 162 3/4/2024
1.7.3 163 1/9/2024
1.7.2 82 1/8/2024
1.7.1 152 12/12/2023
1.7.0 131 12/1/2023
1.6.0 215 11/20/2023
1.5.0 97 11/16/2023
1.4.0 92 11/15/2023
1.3.0 136 10/16/2023
1.2.0 278 9/18/2023
1.1.3 166 8/31/2023
1.1.2 150 8/10/2023
1.1.1 303 7/16/2023
1.1.0 142 6/20/2023
0.23.5 148 6/12/2023
0.23.4 151 5/8/2023
0.23.3 239 3/22/2023
0.23.1 273 3/17/2023
0.23.0 227 3/10/2023
0.22.1 252 2/24/2023
0.22.0 284 2/20/2023
0.21.0 311 2/16/2023
0.20.0 356 2/7/2023
0.19.1 365 1/19/2023
0.19.0 332 1/18/2023
0.18.3 370 1/5/2023
0.18.2 358 12/19/2022
0.18.1 367 12/19/2022
0.18.0 411 12/15/2022
0.17.0 402 11/29/2022
0.16.3 296 11/9/2022
0.16.2 314 11/3/2022
0.16.1 379 10/24/2022
0.16.0 415 9/20/2022
0.15.1 403 9/6/2022
0.15.0 427 7/29/2022
0.14.0 363 7/28/2022
0.13.0 411 7/18/2022
0.12.0 409 7/18/2022
0.11.0 436 7/18/2022
0.10.0 432 5/11/2022
0.9.0 438 4/5/2022
0.8.1 426 3/15/2022
0.8.0 444 3/15/2022
0.7.2 420 3/13/2022
0.7.1 421 3/13/2022
0.7.0 409 3/11/2022
0.6.0 428 3/10/2022
0.5.0 421 3/8/2022
0.4.0 429 3/7/2022
0.3.1 412 3/6/2022
0.3.0 395 3/4/2022
0.2.0 407 3/4/2022
0.1.0 452 3/3/2022