Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
43 views

tl;dr: How do I find the origin of a dependency in a Visual Studio Installer Project? I've created a Visual Studio Installer Project in VS2022 to package my Unity game as an .msi Visual Studio ...
Jono's user avatar
  • 202
1 vote
0 answers
52 views

The http spec allows multiple responses per http request: A single request can have multiple associated responses: zero or more "interim" (non-final) responses with status codes in the &...
Volker's user avatar
  • 1,849
0 votes
1 answer
66 views

My .NET project targets both .NET 6 and .NET 8, in my csproj file I have: <PropertyGroup> <TargetFrameworks>net8.0;net6.0</TargetFrameworks> ... </PropertyGroup> Then, ...
mguijarr's user avatar
  • 8,030
0 votes
0 answers
27 views

After updating Spring.net packages from 2.0.2 to 3.0.2, it looks like something changed in the behavior of the [Transaction] attribute Interceptor, and now I'm getting an exception: System....
user1193850's user avatar
1 vote
1 answer
94 views

I have an API service class that implements HttpClient to connect to my API, I have a user list model, and I have a View Model using the Community Toolkit MVVM approach. I would like to understand how ...
Артур Дементьев's user avatar
0 votes
2 answers
139 views

Was wondering how you can force dark mode on windows for my MAUI application. If a windows machine is running light mode, I want the app to still present as if it was dark mode. I have tried ...
Jawad_Nazir's user avatar
0 votes
0 answers
56 views

I'm developing an API consuming Dynamics CRM through Microsoft.PowerPlatform.Dataverse.Client. When invoking ExecuteAsync on the ServiceClient I would like to catch when there's an issue with the used ...
Max's user avatar
  • 757
-1 votes
1 answer
170 views

I have an old .NET 4.8 Windows service that I am upgrading to .NET 9 and C#. The application uses custom garbage collection to manage a high load of disposable objects. To do this it uses the ...
AndyW's user avatar
  • 531
0 votes
0 answers
63 views

I'm trying to call an Oracle stored procedure from C# that takes SYS.ODCIVARCHAR2LIST (a table of VARCHAR2) as input parameters. The procedure works correctly in SQL Developer, but from C# (using both ...
Ash K's user avatar
  • 4,064
0 votes
1 answer
144 views

We had a third-party security audit on a legacy .NET Framework application. One of the findings indicated that our configuration related to the <startup> and <supportedRuntime> element in ...
Prageeth Liyanage's user avatar
3 votes
1 answer
84 views

I am running the following command to scaffold C# models of an existing database: dotnet ef dbcontext scaffold "<conn string>" Microsoft.EntityFrameworkCore.SqlServer I would like to ...
Red Puffle's user avatar
2 votes
3 answers
112 views

I'm trying to put together an app, but I've run into problems trying to get data into an IDrawable graph display. The app is just supposed to show a plot of random data from a float[] which is then ...
aardvark2012's user avatar
0 votes
0 answers
52 views

In kubernetes pod container, there are 2 different dotnet processes, one for the main application and the other for monitoring the application. I have configured Entrypoint as shown below in both ...
anandarc's user avatar
0 votes
0 answers
156 views

I am developing a Winforms app using VS2022 in C# for .NET 4.8 to print accelerated reader labels for books. Some books do not have a barcode on the back so I added to may app the ability to take the ...
Charles Polson's user avatar
1 vote
1 answer
176 views

I've been working on this app that is required to display video, and I've chosen to use MediaElement. The element is initialized fine, but if I do anything besides play or pause the video, like moving ...
Christopher Sarzen's user avatar
0 votes
2 answers
134 views

How can I quickly change a property for selected or all objects in a collection. Is there a faster method than iteration? I've considered events. What do you think? Can this be done even faster? using ...
b0bik's user avatar
  • 61
1 vote
1 answer
68 views

I have a .NET MAUI nuget project where I need to initialize a NuGet package for Android. Currently, the package requires initialization inside MainActivity like this: // MainActivity.cs (Android) ...
Santos's user avatar
  • 98
0 votes
0 answers
94 views

I'm using Microsoft Solver Foundation to minimize chi-square between two distributions. Usually there are multiple peaks in each distribution but occasionally there is just one. I'm noticing in that ...
Craig W's user avatar
  • 4,560
1 vote
2 answers
117 views

I'm building a .NET MAUI app using the CommunityToolkit.Mvvm [ObservableProperty] attribute for data binding. Example: [ObservableProperty] public decimal _count; Setting the value: decimal count = 2;...
Joshie's user avatar
  • 23
0 votes
0 answers
64 views

My POP3 connection is created normaly (TLS 1.2, at outlook.office365.com, port 995), and i send the command: AUTH XOAUTH2 The server returns (as expected) the "+" sign. I followed by the ...
SammuelMiranda's user avatar
1 vote
1 answer
100 views

I'm using a .NET HttpClient to connect to a server over HTTPS. For best practice, I want to check the certificate hasn't been revoked, by setting HttpClientHandler.CheckCertificateRevocationList = ...
Simon W's user avatar
  • 111
0 votes
1 answer
84 views

The issue that I am having is that when I navigate to the EditTermPage, the title and date fields are not showing the object fields that I am passing over. I believe the object is passed to the ...
Jeff's user avatar
  • 103
0 votes
1 answer
81 views

I have some sort of undo functionality in my application. I remove a row from the GUI an could undo or commit it through the underlaying DataTable-functions RejectChanges or AcceptChanges. But when I ...
Me3nTaL's user avatar
  • 505
3 votes
3 answers
119 views

I am trying to dynamically add buttons to a list, and have $Button (or another variable) be set to whatever is clicked (No OK/Cancel button needed). The below code creates the buttons, and resizes the ...
user66001's user avatar
  • 950
1 vote
1 answer
81 views

I am currently working on setting up a test for the Docusign JWT retrieval process, and encountered the following error: No such host is known. (https:443) Here is the example code I put together: var ...
Ben F's user avatar
  • 23

1
4 5
6
7 8
6816