1,624,228 questions
- Bountied 1
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
16
views
AWS CDK Pipeline synth doesnt lookup in Build Step
I'm trying out to do cross account lookups in the cdk synth step with CDK Pipelines
I know it ain't recommended, but there might be a few cases where its beneficial to use
Been following this ...
0
votes
0
answers
14
views
Issue drawing svg on skcanvas with SkiaSharp & Svg.Skia
I'm trying to convert an SVG I got as a string to a png with a specific sizing in .net 8
However, the output png is empty, just the background color...
I can't figure out why the DrawPicture don't ...
-1
votes
0
answers
26
views
SupportedRuntime options in app.config for C# project that support <targetFrameworks> with plural values
I'm migrating legacy c# / vb applications to newer frameworks.
I moved project files from legacy project files (non-SDK) into modern SDK style. Now I also added net452 and net481 as options to compile ...
0
votes
1
answer
17
views
CollectionView and selected item: Android background color
In my new NET 9 MAUI application, I'm using a CollectionView. As a deja vu, when I select an item in Android, the background is orange.
This is exactly what it happened in a ListView in NET 8 MAUI, ...
Enrico's user avatar
- 6,702
2
votes
3
answers
72
views
How to support Carryless Multiplication operation in .NET 8.0 on various platforms
I use Pclmulqdq.CarrylessMultiply method in .NET 8.0 / C# program. The method performs carryless multiplication using x86 processor instruction which is very fast.
Method documentation: https://learn....
-3
votes
0
answers
41
views
Money number with currency to words, Arabic and English [closed]
I've already made somekind of a tool that can convert a decimal number with currency to english and arabic words, its still a bit rough output but its good enough, but I was wondering is there any ...
1
vote
0
answers
32
views
Expiring AppStream 2.0 session from within itself programatically
I have a .NET (C#) application which runs inside an AppStream session and in a specific case I need the session to be terminated from within that application. I have tried using expire-session (https:/...
0
votes
0
answers
27
views
Returntype of ShowDialogAsync with Window callback [closed]
I'm in the process of updating a MVVM application from Catel 5.4.0. to 6.1.4.
I run in this issue where I open a dialogbox with a viewmodel with a callback for OnWindowClosed.
This code
private void ...
0
votes
0
answers
33
views
Use relative paths with URL-rewrite with additional path segments
I have this rewrite rule in web.config in my C# / .NET project:
<rule name="URL Rewrite Test" stopProcessing="true">
<match url="(rewrite|testrewrite)-([0-9]+)/?&...
-1
votes
1
answer
34
views
How to enforce an invariant across two aggregates in DDD [closed]
I’m trying to apply DDD tactical patterns to my design and ran into the following situation:
I have a Customer entity.
A customer can have multiple Users, but it must always have at least one user. ...
0
votes
0
answers
32
views
CefSharp Not Prompting for Windows Authentication Credentials (NTLM/Negotiate) – Authentication Fails Silently
The target website requires Windows Authentication (NTLM or Negotiate scheme). When I access the site in a standard Chrome browser, it correctly prompts for credentials, and authentication succeeds ...
0
votes
0
answers
34
views
How to map OData to correct endpoint in .NET 8.0 OData - Wrong Endpoint Called
We have an ASP.NET Core Web API which is running on .NET Core 3.1 which needs to be updated to .NET 8.0.
During the upgrade I noticed that a URI which maps correctly to one controller endpoint in .NET ...
0
votes
0
answers
16
views
MONO_WASM: WebAssembly resource does not have the expected content type "application/wasm", so falling back to slower ArrayBuffer instantiation
I have a year old standalone WebAssembly application. When I run it from CLI dotnet run I get the warning, when I run it from VS2022 I still get the warning but also get dotnet loaded resources in ...
0
votes
1
answer
34
views
PdfSharp's PdfDocument.AcroForm.Fields contains less text input fields than the PDF in Adobe
I am trying to replace text input fields in a PDF document. When inspecting the list of objects in the doc.AcroForm.Fields array there are 28 items, but when viewing the document in Adobe Acrobat ...
2
votes
1
answer
49
views
IConfiguration Bind doesn't work with arrays
I have to set a string array in the configuration when starting an ASP.NET Core web application. I get the string array from Azure Key Vault, and it works fine. It's only included in the code below ...