You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We consume this library in a .NET Framework project, to make it useable we've had to create our own container project that references this project as a git submodule.
This container project calls cmake (to generate/build native assemblies), dotnet build (on the .NET wrapper project which uses P/Invoke), nuget pack, then finally nuget publish to our internal Nuget gallery. The published package contains the .NET framework wrapper assembly, the native assemblies (for both x86 and x64), aswell as our own .targets/.props file to handle copying these native assemblies to the bin folder.
It would be far easier if this Nuget package was published to the public gallery (it may increase adoption of this library, lowering the barrier of entry). Is this something which could be considered?
We noticed there's two separate .csproj files for the .NET wrapper projects, IEC61850.NET.core.2.0.csproj (targeting .NET standard 2.0) and IEC61850.NET.csproj (targeting .NET framework v4). Could these be consolidated into a single .csproj (using SDK format) that multitargets?
For inspiration I recommend looking at this project https://github.com/confluentinc/confluent-kafka-dotnet/blob/master/src/Confluent.Kafka/Confluent.Kafka.csproj
The text was updated successfully, but these errors were encountered:
We consume this library in a .NET Framework project, to make it useable we've had to create our own container project that references this project as a git submodule.
This container project calls cmake (to generate/build native assemblies), dotnet build (on the .NET wrapper project which uses P/Invoke), nuget pack, then finally nuget publish to our internal Nuget gallery. The published package contains the .NET framework wrapper assembly, the native assemblies (for both x86 and x64), aswell as our own .targets/.props file to handle copying these native assemblies to the bin folder.
It would be far easier if this Nuget package was published to the public gallery (it may increase adoption of this library, lowering the barrier of entry). Is this something which could be considered?
We noticed there's two separate .csproj files for the .NET wrapper projects, IEC61850.NET.core.2.0.csproj (targeting .NET standard 2.0) and IEC61850.NET.csproj (targeting .NET framework v4). Could these be consolidated into a single .csproj (using SDK format) that multitargets?
For inspiration I recommend looking at this project https://github.com/confluentinc/confluent-kafka-dotnet/blob/master/src/Confluent.Kafka/Confluent.Kafka.csproj
The text was updated successfully, but these errors were encountered: