Skip to main content
2 votes
0 answers
56 views

Previously, in .NET 9 and lower, we could use RazorRuntimeCompiliation to implement embedded views in assemblies. services.Configure<MvcRazorRuntimeCompilationOptions>( options => { var ...
StarCat-At-CTC's user avatar
Advice
0 votes
2 replies
52 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
Best practices
0 votes
4 replies
137 views

I have an application which was written years ago in VB.NET. Recently I migrated it to .NET framework 4.8. This change was smooth. Now I am planning to migrate it to an ASP.NET Core 10 Web API using C#...
Jyothish Bhaskaran's user avatar
1 vote
0 answers
51 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
3 votes
1 answer
883 views

In ASP.NET Core 10, support for SSEs was added. I've adapted the example given there (with some support from this repository). I can call this code with curl and it returns the expected output: app....
TheJanzap's user avatar
  • 173