-
Notifications
You must be signed in to change notification settings - Fork 112
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Nuget package with version that supports netstandard2.0 #182
Comments
Any news on that? thanks |
No reply for a year? Is this project still maintained? |
For anybody else looking for a workaround, here's what I did to get set up with a usable NuGet package for .NET Standard 2.0 on x64 (ignoring all other platforms, which accidentally has the nice benefit of making builds a good deal smaller):
<file src="ZeroMQ.targets" target="build\netstandard2.0\SomePrefix.ZeroMQ.targets" />
<file src="bin\Release\netstandard2.0\ZeroMQ.dll" target="lib\netstandard2.0" />
<file src="libzmq.dll" target="build\libzmq.dll" />
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Target Name="AfterBuild">
<Copy
SourceFiles="$(MSBuildThisFileDirectory)..\libzmq.dll"
DestinationFolder="$(TargetDir)"
/>
</Target>
</Project>
|
This should be fixed together with #206 to ensure that the runtime identifier folders are used to distribute the native binaries, as per the .NET RID Catalog. |
Hi,
Are there any plans for releasing nuget package with clrzmq4 that contains library targeting
netstandard2.0
? As I'm aware of, the process of porting to netstandard2.0 is finished but currently released nuget only contains version fornet40
.The text was updated successfully, but these errors were encountered: