.Net 9.0 not showing in options in Visual Studio 2022 although SDK is installed -
Hi gentlemen, I have encountered a strange problem on my system. Very recently I installed .Net9 SDK on my system. When I ran dotnet--list-sdks I get the following information: When I run dotnet--list-runtimes I get the following information: …
.Net 9.0 not showing in options in Visual Studio 2022 although SDK is installed -
Hi gentlemen, I have encountered a strange problem on my system. Very recently I installed .Net9 SDK on my system. When I ran dotnet--list-sdks I get the following information: When I run dotnet--list-runtimes I get the following information: …
System.Runtime.Serialization broken with SoapFormatter
I'm working on a Windows Forms Application targeting .NET Framework 4.8. There seems to be a breakdown in System.Runtime.Serialization using Formatters.Soap, and that breakdown appears to be somewhere in the underlying Framework. I can't figure it out…
How can I find the cause of a crash in the TestFlight Crash-Feedback?
I have downloaded and installed my app from TestFlight on my iPad but shortly after opening the app always crashes. In App Store Connect there are a few crash feedbacks. I have opened them in Xcode but I don't know how to find the problem in the crash…
How do I save file on form submit
Hello, As mentioned in the title, I want to save the file to the server. In the past, we were using SaveAs but in Blazor I can't get a reference of PostedFile directly. <div class="row pb-3"> <div class="col"> …
Why does sending large attachments (>3MB) with MS Graph API just works without upload session?
Hi, I read that there are limitations on sending e-mails with attachments larger than 3MB: upload session should be used. Reference: https://zcusa.951200.xyz/en-us/graph/outlook-large-attachments?tabs=http However when I try to send an email with an…
Are navigation added automatically to the dbSet?
I have a question Dbset public class Question { public int Id {get; set;} public string Text {get; set;} public virtual ICollection<Choice> Choices {get; set;} = [] Choice DbSet/Model public class Choice { public int Id { get; set; } …
Android Apk not installed
dotnet publish -f:net9.0-android -c:Release /p:AndroidSigningKeyPass=math@24 /p:AndroidSigningStorePass=math@24 When I try to install apk file "on my Android phone I get below error "App not installed as app isnt compatible with your…
How to solve the white page problem in blazor server.
When I start my blazor server application, the page content is displayed for less than a second, then I get a blank page. When I right-click inpect in the browser I get the code : <html> **<head></head>** …
Uploading .ipa file to App Store Connect is not working. Asset validation failed (90046)
I have updated my Xcode version on my Mac. Then I have downloaded the Transporter app on macOS and I have copied my .ipa file from my Windows device to my Mac and drag&drop the file in Transporter. But I get this error in Transporter when I upload it…
How can I create and upload an iOS-Build from Visual Studio to App Store TestFlight?
I had already created an application on App Store Connect some time ago and I had uploaded an iOS-Build in TestFlight. The iOS-Build expired and I want to upload a new iOS-Build. I had created my first iOS-Build on a macOS device. I switched from macOS…
Time Picker Focus and UnFocus is not working
Hello, There is a known issue for DatePicker focus unfocus not working on .NET MAUI 8 Android. The below code helped me to solve the date picker issue:- private DatePickerDialog mDialog; protected override DatePickerDialog…
How to Apply Multiple Filtering Criteria in a CustomObservableCollection?
Hello I am managing data in my WPF application using a CustomObservableCollection. I created a custom collection by inheriting from ObservableCollection in order to control any additional operations that might arise on the collection in the future. Now,…
Catch runtime error inside MAUI application on Android mobile (not emulator)
Hello all I have a tested MAUI application and run perfect in Android emulator (all functions) When I deploy application to the store (AAB) and download it to the mobile for internal testing, firstly run OK but when I tap on the screen app crash. Do you…
.NET 9 UWP Build Error
A blank project created in Visual Studio 2022 using .NET 9 UWP generates a build error: Microsoft.UI.Xaml.Markup.winmd cannot be referenced. Referencing a Windows Metadata component directly when targeting .NET 5 or higher is not supported. For more…
Seed Data Asp.Net core Identity .Net 9
Hello, good time. A problem in the new version of .Net 9 that I recently found after upgrading from version 8 to 9. Regarding the seed data context identity I found this problem after upgrading the version, in your project I have a Context, one for the…
Seed Data Asp.Net core Identity .Net 9
Hello, good time. A problem in the new version of .Net 9 that I recently found after upgrading from version 8 to 9. Regarding the seed data context identity I found this problem after upgrading the version, in your project I have a Context, one for the…
How to run maui app as admininstrator after deployment as unpacakged(exe)
Hi, How I run maui app on windows 8 as admin after deployment as unpcakaged (exe). This deployment command. dotnet publish -f net8.0-windows10.0.19041.0 -c Release /p:AppxPackageSigningEnabled=true…
can the ios be same with android to the keyboard?
if I focus an entry the keyboard will appear. and then the page is resized so the keyboard will not cover the entry. I do not want it be like that. I know how to set to Resize according…
How do I make a richTextBox have a transparent background / show the image beneath it? (C#, Windows Forms App)
Hello, as per the title, I want to make the richTextBox in my project transparent, or have a way to show the image beneath it. Whenever I try to set the backcolor to transparent, i always get "Property value is not valid" with "Control…