Skip to main content
Filter by
Sorted by
Tagged with
Tooling
0 votes
1 replies
41 views

I’m working on automating the insertion of parts from a custom Plant 3D catalog into project drawings using a C# plugin. What I have so far: A custom catalog (.pspx, .acat, .pspc) with supports and ...
Witzendant's user avatar
0 votes
0 answers
22 views

List item [2025-11-19T14:03:33.645Z] Error: Failed to start the transport 'WebSockets': Error: WebSocket failed to connect. The connection could not be found on the server, either the endpoint may not ...
Vansh Gupta's user avatar
0 votes
0 answers
26 views

I am trying to call my GraphQL API using the generic HTTP client in .NET Core. The query doesn't work when I use the HTTP client. I have this set up in Bruno and get results back. var queryObject = ...
James Andrew Smith's user avatar
0 votes
0 answers
33 views

I have a .NET Template that already contains a solution file as well as several projects. When instantiating this template via the CLI everything is fine. However when instantiating it via Visual ...
Xorcist's user avatar
  • 3,381
12 votes
4 answers
3k views

I’m trying to install the Entity Framework Core CLI tools globally using the .NET CLI command: dotnet tool install --global dotnet-ef However, the installation fails with the following error message: ...
tutte2k's user avatar
  • 301
0 votes
0 answers
47 views

I'm trying to use the Sap connector for .NET 8 (v3.1.6) and i have run into an error saying that the "sapnco_utils.dll" module is not found. I have the dll file and I have added the assembly ...
Arjun Hariprasad's user avatar
-1 votes
1 answer
58 views

I have recently migrated a large code base from .NET Framework 4.7.2 to .NET 9. In this code base, we have a few C++/CLI projects which reference the Microsoft.Office.Interop.Excel Nuget package to ...
Samuel Baillargeon's user avatar
0 votes
0 answers
52 views

I'm building a .NET 8 demo that stores OpenAI text embeddings in Redis Stack and performs similarity search with FT.SEARCH (KNN over HNSW vector index). The setup works for indexing and upserting data,...
Jas's user avatar
  • 427
1 vote
1 answer
130 views

I'm using Elsa Workflows 3 for a project, and there are four types of triggers (source): HTTP Endpoint: triggers the workflow when a given HTTP request is sent to the workflow server. Timer: triggers ...
Wipqozn's user avatar
  • 1,344
0 votes
0 answers
47 views

I’m working with a .NET Workflow Foundation (CoreWF) based engine that runs workflows with multiple steps (custom NativeActivity implementations). Each step executes synchronously and immediately ...
Jerryalafoly's user avatar
1 vote
0 answers
152 views

There seems to be a subtle difference in appearance between .NET Framework 4.7.2 and .NET 9 when scaling text with the DPI. I made a small DPI-aware test project which compiles to .NET Framework 4.7.2 ...
Samuel Baillargeon's user avatar
0 votes
1 answer
79 views

After a macOS reboot, my .NET 7 builds fail in a normal Terminal/zsh login shell: dotnet build with: Failed to create CoreCLR, HRESULT: 0x8007000E Here’s what I’ve observed: The same build works ...
Luke Puplett's user avatar
  • 45.9k
1 vote
0 answers
161 views

I have two applications running, a web app on .NET 4.7.2 (versioning is not under my control...), and another on .NET 9 (LLM proxy service). The proxy service takes a request, routes it and uses ...
steinarey's user avatar
  • 313
1 vote
1 answer
45 views

I have an ASP.NET Core Web API that generates reports using Telerik Reporting. The report generation works perfectly in my local development environment, but when deployed to an Azure VM with IIS, it ...
Lasitha Lankajeewa's user avatar
1 vote
0 answers
46 views

I have an ASP.NET Core application using Entity Framework Core (SQL Server). When I run the app in Debug, all migrations execute perfectly — all tables are created in the database as expected. However,...
Mahdi's user avatar
  • 51
1 vote
1 answer
93 views

I have a console app constructed using the following code: public partial class Program { private static async Task<int> Main(string[] args) { Host.CreateDefaultBuilder(args) ...
khteh's user avatar
  • 4,280
-1 votes
1 answer
189 views

Tried to remove background from bill photo using OpenCvSharp GrabCut method: static Mat Grabcut(Mat imageMat) { Mat result = new(imageMat.Size(),MatType.CV_8UC1); OpenCvSharp.Rect rect = ...
Andrus's user avatar
  • 28.2k
0 votes
0 answers
47 views

I want to be able to provide option to fix the error and save again. Now, when i click "Save", Save and cancel buttons are gone and when error message is shown in my new html element, I ...
HM Varkey's user avatar
0 votes
0 answers
46 views

I'm working on an ASP.NET Core project, where I have to grab information and packages from a Nuget feed. Everything works like a charm locally, but when I deploy the site and try to access the nuget ...
Agustín Catellani's user avatar
0 votes
0 answers
56 views

My Blazor server application calls an external API. For each request to this API I want to send a unique correlation id (as a X-Correlation-Id header). I'm trying to use Activity.Current.Id.ToString();...
handles's user avatar
  • 7,891
0 votes
0 answers
65 views

Steps to reproduce In Visal Studio create .NET 9 console application. Add OpenCvSharp 4 Windows and Linux nuGet packages: Create program.cs file: using OpenCvSharp; using Mat src = new Mat(); ...
Andrus's user avatar
  • 28.2k
0 votes
0 answers
62 views

I added a WebView control to my .NET MAUI application and this control shall only be visible under certain conditions, e.g. the user wants to open a link. My problem is that the WebView is always ...
BeRo's user avatar
  • 194
2 votes
1 answer
93 views

I'm migrating my project from .NET Framework 4.7.2 to .NET 9.0. Now I see that casting a negative double to uint is different. .NET Framework 4.7.2: double codeDouble = -2147287039.0; uint codeUint = (...
snowrunner's user avatar
1 vote
1 answer
49 views

I'm trying to create a separate .NET Core library project for all generated files which I can implement in my API code. That way generation does not delete/change my actual API like it does if you ...
JensB's user avatar
  • 6,932
0 votes
0 answers
41 views

I’m learning SoapCore and I need the function parameter to appear directly inside the Body of the SOAP request, without the action node. Code looks correct, but my function parameters are still coming ...
Harun's user avatar
  • 21

1
2 3 4 5
919