-
-
Notifications
You must be signed in to change notification settings - Fork 837
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
Investigate using new 'dotnet' target framework #668
Comments
This should shed more light on it: |
Here's my blog on the matter: http://oren.codes/2015/07/29/targeting-net-core/ Basically, install my nuget package. NuSpec.ReferenceGenerator and it'll put the right entries in the nuspec. Then just put your PCL in the \lib\dotnet dir. |
@onovotny Question (you may have the answer to): I found that with Autofac 4.0.0-beta6-110 (where we hadn't gotten the For some reason, VS wants my standard .NET 4.5.2 assembly to add a reference to the DNXCore 5.0 version of the assembly rather than the PCL in the current package. Is that something the |
So the overall order for resolution is platform specific > dotnet > PCL, and that's true for both the \lib folders What you do depends on if you put your Profile259 lib in dotnet or put a new .NET Core version in there. If you put a Profile259 lib in \lib\dotnet, then that'll work for NuGet v3 clients. You'll need to keep portable-* for NuGet v2. Then you can put the contract dependencies in and that should work for everything 4.5+ as they're 4.0.0 versions. |
I can send a PR based off the develop branch if you'd like. |
Odd that a NuGet 3 client would ignore the If you have time, a PR would be cool. I'm still wrapping my head around it. |
The
I couldn't get Android/Xamarin ("monoandroid5.0") or iOS/Xamarin ("xamarinios1") to work because we need Anyway, were updated, so... I'm going to close this and we can update |
Extracted from a comment posted by @onovotny in issue #594.
The blog post in the quote above has some good information.
The text was updated successfully, but these errors were encountered: