are nuggets supported in .net maui previews.?? #3830
-
I was wondering when the nuggets are going to support .NET maui .. as yesterday i was trying to make basic crud application in dot net maui to test preview.... but when I installed SQLite nugget it gave 420 risk warnings and even it didn't installed.... |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Beta Was this translation helpful? Give feedback.
-
If a nuget package is a generic .net core or .net standard package then you can use any. If it is a nuget package that depends on any Xamarin packages then it might not work, but the warnings may not be as bad as they sound. Any Xamarin dependent package will need to make updates to support Maui and you'll need to ask them if and when they have plans to do that. I'm sure many of them will be working on this, or may have preview packages that already support this. It looks like you can use SqlLite as this SqlLite on MAUI blog post describes how to do. |
Beta Was this translation helpful? Give feedback.
If a nuget package is a generic .net core or .net standard package then you can use any.
If it is a nuget package that depends on any Xamarin packages then it might not work, but the warnings may not be as bad as they sound.
Any Xamarin dependent package will need to make updates to support Maui and you'll need to ask them if and when they have plans to do that. I'm sure many of them will be working on this, or may have preview packages that already support this.
It looks like you can use SqlLite as this SqlLite on MAUI blog post describes how to do.