54,076 questions with Developer technologies-related tags

Sort by: Updated
1 answer

On macOS: How to install .pkg created with dotnet publish ?

dotnet --version 9.0.301 My MAUI app. is upgraded to .NET 9. I just created a .pkg with the command: dotnet publish ChronoWiz/ChronoWiz.csproj -f net9.0-maccatalyst -c Release -p:MtouchLink=SdkOnly -p:CreatePackage=true -p:UseHardenedRuntime=true -o…

Developer technologies | .NET | .NET MAUI
asked 2025-07-07T09:58:56.81+00:00
Eigil Krogh Sorensen 76 Reputation points
answered 2025-07-07T15:19:19.2166667+00:00
Bruce (SqlWork.com) 78,006 Reputation points Volunteer Moderator
0 answers

Power off Xbox Series controller with C# via Bluetooth

I am writing a small C# winforms tray app targeting 4.7.2 that will allow me to power down the controller on game exit. I've been trying to do this for some time now but still can't manage to achieve the controller disconnection. Is there a way to…

Developer technologies | C#
asked 2025-07-07T14:00:23.0333333+00:00
magrega 51 Reputation points
edited a comment 2025-07-07T14:05:48.99+00:00
magrega 51 Reputation points
1 answer

how to name a method starting async but not returning awaitable type

this is a line from msdn which i could not understand as there  was no examle pls give one example https://learn.microsoft.com/en-us/dotnet/csharp/asynchronous-programming/task-asynchronous-programming-model#BKMK_ReturnTypesandParameters Methods that…

Developer technologies | ASP.NET | ASP.NET Core
asked 2025-07-07T10:13:30.8666667+00:00
rajesh yadav 211 Reputation points
commented 2025-07-07T13:36:44.1766667+00:00
AgaveJoe 30,126 Reputation points
0 answers

Question For Printing in avalonia ui for multiple size directly and Sintly

Hello Developer. i want to ask how i can print invoice or pdf ... from my avalonia ui app (some as WPF) directly withtout any dialog show from code sintly. i see multiple option some as questpdf but it not have any api for printing it be generate a pdf

Developer technologies | Windows Presentation Foundation
asked 2025-07-07T12:16:56.12+00:00
Ali Fahs 0 Reputation points
4 answers

how to handle if async process returns before await.

ifGetStringAsync (and therefore getStringTask) completes before GetUrlContentLengthAsync awaits it, control remains in GetUrlContentLengthAsync. The expense of suspending and then returning to GetUrlContentLengthAsync would be wasted if the called…

Developer technologies | ASP.NET | ASP.NET Core
asked 2025-07-05T09:36:27.0633333+00:00
rajesh yadav 211 Reputation points
edited a comment 2025-07-07T11:27:43.8733333+00:00
SurferOnWww 4,721 Reputation points
0 answers

Has anyone successfully targeted Android API Level 35 in a .NET MAUI app?

I recently got a critical warning from Google Play Console: "2 of your apps are targeting an old version of Android. Google Play requires all apps to meet target API level requirements before August 31, 2025." I'm currently targeting:…

Developer technologies | .NET | .NET MAUI
asked 2025-07-07T11:11:01.0666667+00:00
Aayush Rawat 0 Reputation points
1 answer

Binding null, but is working

In have my viewModel using System.Collections.ObjectModel; namespace FireChat.ViewModels; public partial class AppShellViewModel : BaseViewModel { readonly FirebaseAuthClient _authClient; readonly WeakReferenceMessenger _messenger; …

Developer technologies | .NET | .NET MAUI
asked 2025-05-09T23:45:59.3366667+00:00
Eduardo Gomez 3,671 Reputation points
answered 2025-07-07T10:41:24.8333333+00:00
Tony Dinh (WICLOUD CORPORATION) 160 Reputation points Microsoft External Staff
1 answer

UWP BLE not working for authenticated attributes

I can't write to the CCCD on a BLE device that has the authentication flag enabled on the CCCD

Developer technologies | Universal Windows Platform (UWP)
asked 2024-07-31T00:28:15.77+00:00
Corby Wilson 0 Reputation points
commented 2025-07-07T10:28:11.6666667+00:00
Harry Vo (WICLOUD CORPORATION) 160 Reputation points Microsoft External Staff
5 answers One of the answers was accepted by the question author.

how or where a sync function in a web API controller can help me?

hi, I just made one web API with core 9 with entity framework and all actions, i found that all the methods are made with a sync. q1) so my question is where or how it can help me , because in my case i call my controllers action methods from java…

Developer technologies | ASP.NET | ASP.NET API
asked 2025-06-24T13:12:08.41+00:00
rajesh yadav 211 Reputation points
commented 2025-07-07T09:55:26.9033333+00:00
Jack Dang (WICLOUD CORPORATION) 375 Reputation points Microsoft External Staff
1 answer

Maui project not build after added this plugin "Plugin.Firebase.Analytics"

Maui project not build after added this plugin "Plugin.Firebase.Analytics" Create New Project -> Update All Packages -> Add "Plugin.Firebase.Analytics" NuGet package -> After clean Project -> Rebuild the project and it'…

Developer technologies | .NET | .NET MAUI
asked 2025-05-27T09:10:44.0533333+00:00
Bhuwan 881 Reputation points
answered 2025-07-07T09:52:15.6433333+00:00
Michael Le (WICLOUD CORPORATION) 305 Reputation points Microsoft External Staff
2 answers

Unable to Use MicrosoftReport Viwer in containerized environment

HI team , I am have a Asp.net application with 4.7.2 version and my reporting relay on RDLC and XSLT templates , with microsoft reportviewerversion 15 , I am trying to Run in a containerized Environment with ECS on AWS Fargate with windows support ISSUE…

Developer technologies | ASP.NET | ASP.NET API
asked 2025-05-19T07:44:08.05+00:00
balaji k 0 Reputation points
commented 2025-07-07T09:43:41.7733333+00:00
Raymond Huynh (WICLOUD CORPORATION) 80 Reputation points Microsoft External Staff
1 answer

composite key http

@Html.ActionLink("Edit", "Edit", new { item.monthr,item.tennant }) getting an error . monthr and tennant are the keys.

Developer technologies | ASP.NET | ASP.NET Core
asked 2025-07-02T07:19:41.8266667+00:00
asgar ali 0 Reputation points
commented 2025-07-07T09:32:01.07+00:00
Raymond Huynh (WICLOUD CORPORATION) 80 Reputation points Microsoft External Staff
2 answers

Blazor WebAssembly not applying culture to DateTime formatting after changing culture

Hi, I recently migrated my Blazor project from Blazor Server to Blazor WebAssembly. In the Blazor Server version, when I changed the culture (e.g., CultureInfo.CurrentUICulture = new CultureInfo("fa-IR")), both the localized texts from .resx…

Developer technologies | ASP.NET | ASP.NET Core
asked 2025-07-05T07:36:42.4233333+00:00
Mrbanad 30 Reputation points
answered 2025-07-07T09:31:04.73+00:00
Jack Dang (WICLOUD CORPORATION) 375 Reputation points Microsoft External Staff
1 answer

Do Dev Tunnels Have an HTTP Timeout Issue?

Using a dev tunnel to connect a Mac client app to an ASP.NET service running on a PC has raised a timeout issue. One API call takes about 70 seconds to complete, but when the client runs on the Mac via the dev tunnel, an HTTP timeout occurs after 60…

Developer technologies | ASP.NET | ASP.NET API
asked 2025-01-17T14:50:58.46+00:00
Tony Pitman 81 Reputation points
answered 2025-07-07T09:28:23.6033333+00:00
Jack Dang (WICLOUD CORPORATION) 375 Reputation points Microsoft External Staff
2 answers

Visual Studio 2022 Enterprise cannot create an ASP.NET using .NET8

I use Visual Studio 2022 Enterprise. Try to create an ASP.NET Web application using .NET8 framework. However, .NET8 is not listed in "Targeted framework drop list". How to create an ASP.NET Web Applicaiton using .NET8 framework? How to…

Developer technologies | ASP.NET | ASP.NET Core
asked 2025-02-28T16:55:00.5666667+00:00
Lu, Xinghua 0 Reputation points
edited an answer 2025-07-07T09:22:02.83+00:00
Danny Nguyen (WICLOUD CORPORATION) 410 Reputation points Microsoft External Staff
0 answers

how to use this in .net android?

create a view and draw it in onDraw or give background to imageView?

Developer technologies | .NET | .NET MAUI
asked 2025-07-07T09:07:59.54+00:00
mc 5,511 Reputation points
2 answers

What is the differences between Object class and Lock class in mutual exclusion in C#?

Hello, When should I use the Lock class and when should I use the Object class? What is the differences between Object class and Lock class in mutual exclusion in C#? using System.Globalization; namespace ConsoleApp3 { internal class Program { …

Developer technologies | C#
asked 2025-06-01T14:20:36.8966667+00:00
Shervan360 1,661 Reputation points
commented 2025-07-07T08:10:21.8566667+00:00
Adiba Khan 0 Reputation points Microsoft External Staff
1 answer

Good installer for visual studio 2019 c# projects

Still using Visual Studio 2019 professional. I have several independent solutions (single project solutions). I need to create an installer that installs 6 different projects on a computer. Right now, I have a single deployment project in each…

Developer technologies | C#
asked 2025-06-30T15:27:24.5566667+00:00
Darryl Hoar 181 Reputation points
edited an answer 2025-07-07T08:07:17.0233333+00:00
Gade Harika (INFOSYS LIMITED) 0 Reputation points Microsoft External Staff
0 answers

E_ACCESSDENIED error when IStream::Seek on Stream created using CreateStreamOnHGlobal on Windows 11 24H2 client

Hello all, After days of debugging, I found I am getting E_ACCESSDENIED error on the server side (Windows Server 2022) when I try to seek to the beginning of a stream: `ULARGE_INTEGER lPos;` LARGE_INTEGER lZero; lZero.QuadPart = 0; auto hrTemp =…

Developer technologies | C++
asked 2025-07-02T05:35:11.58+00:00
Robert Bui 0 Reputation points
edited a comment 2025-07-07T08:06:45.5066667+00:00
RLWA32 49,636 Reputation points
3 answers

Attaching to WSL process from a visual studio extension.

I can attach to a WSL process in visual studio by going Debug -> 'Attach To Process' in the menu, then setting the 'Connection type' to 'Windows subsystem for Linux', selecting the process from the list, and clicking the 'attach' button. How can I do…

Developer technologies | Visual Studio | Extensions
asked 2025-06-02T10:10:24.7433333+00:00
Kev Martin 0 Reputation points
answered 2025-07-07T08:04:41.8566667+00:00
Surya Amrutha Vaishnavi Lanka (INFOSYS LIMITED) 0 Reputation points Microsoft External Staff