-
Notifications
You must be signed in to change notification settings - Fork 26
Add .NET Core 3.0 support #52
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
Comments
No, that is not correct. This is a netstandard class library not an application so it will never be correct to target any version of netcoreapp. As far as I know it should already be compatible to use our nuget package directly in an asp.net core 3.0 app because netstandard class libraries should be compatible. Only if there is some breaking change in asp.net core 3 then we may need to adapt to changes, but at the moment I have no reason to think it doesn't work already. |
I just tested using this nuget in asp.net core 3.0 preview7 and it works fine for me. |
Neither of those links are relevant. cloudscribe.Web.Pagination already supports asp.net core 3 and .net core 3. There is no change needed. |
You have a reference to Microsoft.AspNetCore.Mvc and Microsoft.AspNetCore.Mvc.Core and Microsoft.AspNetCore.Mvc.TagHelpers. These packages won't be produced anymore (you can't find their new versions on the nuget anymore). That's why you will need to adapt to the mentioned |
no those references are only the minimum version and "The API for these packages will still be available" those instructions are for what you do in your app not what you do in class library As I mentioned I've already tested consuming our nuget package in asp.net core 3. I replicated the demo app in asp.net core 3 and it works fine. |
the main app is what controls which framework you get, if it is higher version it overrides the class library minimum version dependency. There are no breaking changes that affect this library. |
I've read more of those issues now, I'm not sure they have decided some of those issues fully yet. |
.NET Core 3.0 support can be added this way (tested and works fine)
The text was updated successfully, but these errors were encountered: