I want to implement ADB2C implementation with my cross-platform Xamarin Forms app.
Want latest tutorials to support latest nuget packages.
Old samples not working.
TIA
Did you check this tutorial from Microsoft?
You can implement ADB2C using MSAL package.
Related
I have a page that contains a CollectionView of images. I want the user to be able to LongPress on an image and then they will have the option to delete or edit the image.
I'm trying to implement LongPress functionality in my .Net Maui project, however I can't find any documentation for this. How do you guys handle LongPress? Am I missing something?
Due to the TouchEffect has not yet been ported from Xamarin Community Toolkit to Maui Community Toolkit, you can add the Xamarin.CommunityToolkit.MauiCompat 2.0.2-preview1013 to your project. It is the .NET MAUI Compatible version of Xamarin.CommunityToolkit.
Here is the codes you can directly run in the package manager console to add this package:
NuGet\Install-Package Xamarin.CommunityToolkit.MauiCompat -Version 2.0.2-preview1013
There's a Xamarin package to implement signing feature in a Xamarin application. For now this repository is archived and there's no .net6.0 implementation for MAUI.
I tried to find a substitute for this package but did not succeed. Unfortunately commercial packages are not an option for my case.
Maybe I am missing something and MAUI has a such package?
There is a package in maui called Maui.CommunityToolkit. You can use the DrawingView as a replacement.
You can refer to this article.
In addition, I found a discussion about SignaturePad package for MAUI on git.
Here is the website: https://github.com/CommunityToolkit/Maui/discussions/270?sort=new
I'm trying to find words in image and I found this library using Windows.Media.Ocr.
MS gives really good library using Windows.Media.Ocr but I can't use it in winform or wpf application project.
how can i load using Windows.Media.Ocr; and use it in winform or wpf project?
I got this error when I tried to add it in winform project.
after downloading UWPDesktop from nuget, I got this another error.
I am working at windows 10.
Install the UwpDesktop Nuget package in your WPF application. You should then be able to use the classes in the Windows.Media.Ocr namespace. Please refer to this blog post for more information.
Windows.Media.Ocr was originally limited to UWP applications only. Previously, developers had to install the UwpDesktop package via Nuget. However, there is now an official package from Microsoft that replaces the previous UwpDesktop package. Simply add the Microsoft.Windows.SDK.Contracts NuGet package to your project.
Check out this link for more info.
I want to implement Firebase into my .NET WPF Desktop Application. I can't find anything useful on the internet about this topic, it seems like it's completely unsupported. There is only a Xamarin NuGet package.
Is there any possibility to do this? The goal is to implement Firebas Analytics for several actions the user makes in the app.
I would even take the normal REST endpoints if I could find them - they are hidden somewhere...
The question is about Firebase Analytics, not Firebase Admin.
You can use existing C# REST libraries like FireSharp or FirebaseSharp
or Firebase Database REST API because official libraries do not exist yet.
P.S. Firebase C# library
Google now provides an official .NET client: Google.Cloud.Firestore
For tips on getting started, see their official documentation.
Firebase also has it own library Firebase Admin SDK
nuget
I use this fantastic library of firebase.
install via NuGet
Install-Package PushNotification_dotNET -Version 1.0.0
PushNotification_dotNET
I want to try ReactiveUI however Rx installation package doesn't contain ReactiveUI. I guess that ReactiveUI is in some standalone installation package, but I was not able to find it. Can anybody share with information whether or not ReactiveUI is supported by Microsoft anymore? And if yes please give me a link to ReactiveUI library.
Thank you in advance!
UPD: I've found a sample application on http://www.reactiveui.net/. It contains ReactiveUI dlls, but I want to get official ReactiveUI build.
ReactiveUI is not a Microsoft project - the best way to get official binaries for ReactiveUI is via the NuGet package, which will also pull in the correct version of the Reactive Extensions.
If you go to the website you mention http://www.reactiveui.net/, there is a 'download' button at the bottom. This gives you both a sample application and the ReactiveUI libraries.
You can find the dlls you mention under ReactiveUI 2.2.0.0 Sample\ReactiveUI.Sample\ReactiveUI.Sample\bin\Debug\
Or, of course, grab the source from their github and compile them yourself.
P.S. I found all of that with no prior knowledge of this library. Maybe this was more of a quesion for Google, not this site?