Convert solution of class libraries in framework to .NET
Hi, I have solution with list of clsss libraries in framework 4.6.2. I would like to know full steps of converting this solution to .NET 8/9 using visual studio. Thanks in advance,
MAUI .NET 8 on Android - throwing an exception
MSBUILD : java.exe error JAVA0000: Error in C:\Users\jeeva.nuget\packages\xamarin.androidx.collection.jvm\1.4.3.1\buildTransitive\net8.0-android34.0....\jar\androidx.collection.collection-jvm.jar:androidx/collection/ArrayMapKt.class: 1>MSBUILD :…
What is .Net Core Web Api Model Validation error response Type?
Hi All, I have made an .NET core web API endpoint that takes a model in parameter from body. I have purposely generated this error However, when model state is not valid it returns a response that's attached bellow based on the filters I have added…
Failing to connect to SQL Database from Azure Web App.
I got an ASP.NET Core Web App with Angular and MS SQL. Locally, I run MS SQL via Docker, which works good. I can run migrations and seed data without problem. When I uploaded the web app to an Azure resource group, I created a web app, database server…
access tty ports
Hi, I try to access with the tty ports on my tablet but the use of _usbManager = (UsbManager)activity.GetSystemService(Context.UsbService); but the result is just the regular usb ports. i check in terminal ls -l /dev/ttymxc* and i get a complate…
Borderless editor
I am trying to get rid of the underline for the editor control, for Android, IOS, Mac and Windows this is my code <Grid Padding="10" RowDefinitions="Auto,*,Auto" RowSpacing="20"> <Label …
"Not In Keychain" Issue with Apple Distribution Certificate in Visual Studio, Xcode 16
Hello everyone, I'm having trouble getting my Apple Distribution certificate to show up as valid in Visual Studio 17.11.5 for a Xamarin project. In Xamarin Apple Accounts under Apple Distribution, the certificate appears as "Not In…
Drag and drop in Win UI
Hi, I'm doing drag and drop in Win UI application, but I have a problem. In drag and drop there is only Data.SetStorageItems method. It accepts an IStorageItem with which I have no access to hidden files and shortcuts (only using file picker, but in my…
How to change Shell.Title font?
This is the current AppShell.xaml: <?xml version="1.0" encoding="UTF-8" ?> <Shell x:Class="MauiApp1.AppShell" xmlns="http://schemas.microsoft.com/dotnet/2021/maui" …
ClosedXML and System.Memory Error in .NET 8: Anyone Solved This?
Hi everyone! I’m migrating a project from .NET 4.8 to .NET 8. The ClosedXML library is compatible with .NET 8, but I’m encountering an error when using the XLWorkbook class. Despite installing System.Memory, the error still occurs, as shown in the image…
Getting "We couldn't sign you in" error after signing into .NET Core web app using Azure authentication
I'm trying to retrofit Azure authentication into a .NET Core v8 web application. I'm using this tutorial: https://learn.microsoft.com/en-us/entra/identity-platform/tutorial-web-app-dotnet-call-api?tabs=visual-studio%2Cdotnet6 I have an application set up…
Two-factor authentication for Net Framework 2.0 (Visual Studio 2005)
Is Two-factor authentication using SMS and email with ASP.NET Identity support for .Net Framework 2.0 (Visual Studio 2005)?
'No Matching Profile Found' While Selecting Distribution Profile For MAUI iOS Application In MAUI In Visual Studio MAC
Visiting developer portal of apple Created New App Chosed iOS platform Entered name, language, bundle ID (Same as in the source code), SKU with full access Save Added New Device Go to certificates, identifiers & profiles Chosen iOS…
'No Matching Profile Found' While Selecting Distribution Profile For MAUI iOS Application In MAUI In Visual Studio MAC
Visiting developer portal of apple Created New App Chosed iOS platform Entered name, language, bundle ID (Same as in the source code), SKU with full access Save Added New Device Go to certificates, identifiers & profiles Chosen iOS…
SSlStream Authentication failing in .NET MAUI Android app whereas same is working in Xamarin.forms
have connected to Controller via WiFi from .NET MAUI Android app and TLS is enabled in connected Controller. From .NET MAUI Android project, I am trying to authenticate SSLStream with below code SslStream _secureStream = new SslStream( new…
realtime update
I have a service, that is uploading to firestore async Task LoadOrInitializeTurbineAsync() { var turbinesRef = _firestoreDb!.Collection(collectionName); var snapshot = await turbinesRef.GetSnapshotAsync(); if (snapshot.Count ==…
403 Forbidden Error while trying to access authorized routes in a .NetCore 8 WebAPI -
Hi All, Let me discuss my problem in clear detail. I am trying to build a backend webAPI for an app using .NetCore 8. I created the database for my webapi by using code-first migrations on AspNet Identity. The respective tables have been created. In…
How to detect user's inactiveness in Blazor server app
We are developing a Blazor Server App, with no single line of JS written so far. This may be a basic question. My question is how to detect the user's inactiveness on Blazor server app and prompt them to either continue or logout or simply log…
How to validate security stamp on next request
When using ASP.NET Core Identity how can I make it so a user's security stamp will be validated on the next request they make? For context I have a logout all sessions feature and I want to logout other sessions immediately on the next request after the…
Creating Relationships Between Entities in gRPC Using Proto Files
Hello everyone, I have just started working with ASP.NET Core gRPC. I have a question: I have several proto files, and one of these files references another proto file. In this case, I want to use messages from the referenced file as fields in a message…