iOS/iPadOS/MacOS 26 support
Hello, I just want to ask if iOS,iPadOS and MacOS version 26 will be support in .net9? If Yes, when? Thanks
Developer technologies | .NET | .NET MAUI
Uninstalling optional package also uninstalls main app
I'm testing the usage of the optional package using this UWP sample. With this sample I just deploy the main app and it's optional package. In the Windows "Settings/Apps/Installed apps" I see the optional package and I uninstall it, and the…
Developer technologies | Universal Windows Platform (UWP)
VBA access to SharePoint site fails on non-persistent permissions
Have a macro that conducts 2 types of operations with SharePoint: ADODB connection to perform CRUD operations on a SharePoint list, and FileSystemObject to map SharePoint document repository to c Drive temporarily to parse the file list for…
Developer technologies | Visual Basic for Applications
Undefined symbol when calling AudioToolbox function in native C static library in iOS MAUI
Hi all, I'm integrating a native C static library (libmylib.a) into my .NET MAUI iOS project. The library exposes several C functions. One of them uses the VideoToolbox framework and works fine. Another function uses AudioToolbox, but causes a linker…
Developer technologies | .NET | .NET MAUI
Option not supported for Encrypt and TrustServerCertificate
We can connect to MySQL in Workbench using SSL. When we update the code to use that connection in a secure way which passes a Fortify scan, we can't retrieve any data from it. If we remove both the Encrypt and TrustServerCertificate parts, we can get…
Developer technologies | ASP.NET | Other
.net maui iPad app need secure api architecture
Hi , I have a requirement like, Develop an app for iPad (using .net maui) and app uses .net core apis. App will be in kiosk mode, and app doesn't have any type of authentication even OTP also. As the apis will be publishing to all over internet, how can…
Developer technologies | .NET | .NET MAUI
This version of .NET for iOS (18.5.9219) requires Xcode 16.4. The current version of Xcode is 26.0.
Today, I have installed iPadOS-Version 26.0 and macOS Tahoe 26.0 on my MacBook Air. After that I got this error in Visual Studio Community 2022 (64-bit) Version 17.14.15 when I tried to debug my iOS project on my iPad: This version of .NET for iOS…
Developer technologies | .NET | .NET MAUI
How to break thai word in OpenXML SDK
How to break thai word in OpenXML SDK look live office 365 and Office 2021 Form OpenXML SDK Form Ctrl+Shift+V or Manual type in MS Office 365
Developer technologies | C#
Where to Learn C++?
Hello, My brother wants to learn C++ and basics of programming languages from scratch. He is good at mathematical and his mind is very curious. Right now he is just watching just youtube vidoes of coding. So, I am thinking to suggest him some tutorials…
Developer technologies | C++
MSIX Installer help
MSIX Installer cannot clear TPM information upon uninstallation of Windows Desktop application.
Developer technologies | C#
How can I upload debug symbols to my Google Play internal release?
This App Bundle contains native code, and you've not uploaded debug symbols. We recommend that you upload a symbol file to make your crashes and ANRs easier to analyse and debug. I have two folders in…
Developer technologies | .NET | .NET MAUI
Can Forms be created with .NET MAUI?
I am converting a Windows app to a .NET MAUI cross-platform app and was wondering if there is the capability to create Forms with .NET MAUI, other than via XAML, similar to Windows forms? Thank you.
Developer technologies | XAML
Error handler would not be running in case of sequence error
Group Because leaving my sequence name incorrect ( sqc_LogReplic_tmpx ) it would not be entering the error handling routine. And adjusting to the correct name ( sqc_LogReplic_tmp ) and the routine executing the division by 0 instruction would…
Developer technologies | Transact-SQL
SQL Server | Other
How to fix Visual Studio 2022 17.5 Intellisense not working
Visual Studio 2022 Enterprise Edition version 17.5.1 Intellisense and snippets are not working
Developer technologies | Visual Studio | Other

SPLASH SCREEN
In my app for Android I created an image and named it 'splash.svg' - the project contains: <MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#00B0F0" BaseSize="520,800" /> I find that the image is…
Developer technologies | .NET | .NET MAUI
Version conflict detected for Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.
I get the following error when I try to update the NuGet package Plugin.InAppBilling 8.0.5 to 9.1.0. Package restore failed. Rolling back package changes for 'ProjectAndroid'. Version conflict detected for Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.…
Developer technologies | .NET | .NET MAUI
Why (and how) is Visual Studio creating <app>.exe.config.deploy which has old app.config settings?
I lost a week trying to get my Web Reference to use HTTPS instead of HTTP. I finally had to rename my web service because the old settings (with old data) appear in the <app>exe.config.deploy file. Those old settings in…
Developer technologies | Visual Studio | Other
Shouldn't MemberNotNullWhen in combination with return: NotNullIfNotNull prevent CS8618 if the input arguments are not null
I feel like the compiler should have enough information to not throw the CS8618 in the code below. Is there a way to achieve what I am trying to do without suppression or null forgiveness? using System; using System.Diagnostics.CodeAnalysis; namespace…
Developer technologies | C#
Getting error when build project
C:\Program Files\Microsoft Visual Studio\2022\Professional\MSBuild\Current\Bin\amd64\Microsoft.Common.CurrentVersion.targets(5094,5): error MSB3030: Could not copy the file…
Developer technologies | .NET | .NET MAUI
Is there a way to achieve the combination of MemberNotNullWhen with return: NotNullIfNotNull to prevent CS8618 if the input arguments are not null
Is there a way to achieve the combination of MemberNotNullWhen with return: NotNullIfNotNull to prevent CS8618 if the input arguments are not null? The compiler should have all the information it needs to do this without null forgiveness or…