I am working with WindowsAPICodePack and moving to .Net Standard 2.1. Is there a way to convertTypeLibType to .Net Standard?
It currently requires Microsoft.NetFX20.
using System;
using System.Collections;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
namespace Microsoft.WindowsAPICodePack.Net
{
[ComImport]
[TypeLibType(0x1040)]
[Guid("DCB00002-570F-4A9B-8D69-199FDBA5723B")]
internal interface INetwork
{ }
}
I am working with
WindowsAPICodePack
and moving to .Net Standard 2.1. Is there a way to convertTypeLibType
to .Net Standard?It currently requires
Microsoft.NetFX20
.