Skip to main content
Filter by
Sorted by
Tagged with
9 votes
2 answers
234 views

I have two versions of helper methods for logging on ILogger. The first (classic extension methods) compiles fine; the second using extension members results in a compiler warning/error code. CS8620: ...
Christian's user avatar
  • 132
0 votes
0 answers
58 views

In a .NET Core C# project, I get many errors like this: Predefined type 'System.Object' is not defined or imported Primary variables such as int and string are not recognized. I have tried the ...
Dadkhah's user avatar
  • 125
Advice
0 votes
2 replies
34 views

When creating integration tests for ASP.NET Core 10 web apps, we use the WebApplicationFactory<TEntryPoint> class. When a single ASP.NET Core web project is used as SUT, it's simple and it works:...
AlexB's user avatar
  • 4,684
3 votes
0 answers
148 views

I'm currently in the process of upgrading to .NET 10 from .NET 9, but unfortunately as usual the documentation of breaking changes seems to be lacking when it comes to certain functionality and ...
jezzipin's user avatar
  • 4,282
-7 votes
0 answers
82 views

I have a .Net 9.0 Blazor project that I've migrated to .Net 10.0 . After the migration, the @onclick events no longer trigger. The .Net 9.0 version was setup to use InteractiveServer rendering both on ...
Middletone's user avatar
  • 4,276
1 vote
0 answers
72 views

After upgrading from .NET 9 to .NET 10 (.NET vesion and packages like OpenApi), I started getting this exception: Application startup exception System.TypeLoadException: Could not load type '...
Zohir Boshi's user avatar
1 vote
1 answer
80 views

Microsoft have changed ExecuteUpdateAsync to accept non-expression setters parameter in NET 10. Now it works this way: await context.Blogs.ExecuteUpdateAsync(s => { s.SetProperty(b => b....
Stanislav Gordenko's user avatar
1 vote
1 answer
92 views

I have a big project that uses Blazor, suddenly when I run it, the Blazor pages do not work anymore, because the blazor.server.js returns 404. This happened after I installed latest version of VS 2026 ...
Alkampfer's user avatar
  • 1,377
1 vote
0 answers
64 views

I have a .NET 10 MAUI app configured with Aspire 13. When I start the Aspire project and the dashboard launches, I ensure that the emulator is running. Steps to reproduce Start Visual Studio Create a ...
James D's user avatar
  • 11
0 votes
0 answers
29 views

The error occurs between two projects (PortalAdmin and Portal) that both contain the same static web asset. This appears to be related to the new static web asset compression feature in .NET 10. What'...
Mina Golzari Dalir's user avatar
-1 votes
1 answer
160 views

I’m working with Aspire in a .NET 10 RC2 project. When I run: aspire publish it logs that it’s “creating Docker image”, but no Docker image is actually produced. I have ran it with --debug and indeed ...
sir's user avatar
  • 9
0 votes
0 answers
26 views

After installing Visual Studio 2026 and .NET10 I noticed the following behavior: I’m building an AOT project that uses DI. When I build and publish the project, the IL trimming/AOT warnings are not ...
user31905611's user avatar