-
Notifications
You must be signed in to change notification settings - Fork 329
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
Installing a package with with a version lower but compatible with the .NET version of the project is impossible #553
Comments
That package seems to only have an implementation DLL for net40 and not for netstandard so in order to use it you would need to set your Unity project to use .NET Framework instead of .NETStandard in project settings and then the package will properly install. |
The .NETStandard package I'm using does contain a dll for .NET 2.0 because I had to download manually and install it on my project. |
.NETStandard 2.0 dll is in the |
Can't you just uses Mono.Posix this has a dll for netstandard 2.0 |
I tried that as well, didn't work out |
@JoC0de that package is shown only if |
This is a dependency of another private package I'm using on my project. |
Ok I looked at it the package is relay strange:
|
Fixed by #631 |
Description
The problem is that when I try to install a NuGet package that has a DLL which is compatible with the .NET version of my Unity project but lower than that same version, it does not keep it in the project. I had to manually download and install this NuGet package on my project. It would be nice if versions lower but compatible could be downloaded and kept as well.
The text was updated successfully, but these errors were encountered: