5 questions
2
votes
0
answers
56
views
Embedded Views in ASP.NET Core 10
Previously, in .NET 9 and lower, we could use RazorRuntimeCompiliation to implement embedded views in assemblies.
services.Configure<MvcRazorRuntimeCompilationOptions>( options =>
{
var ...
Advice
0
votes
2
replies
52
views
ASP.NET Core 10 integration tests using multiple web projects/entry points
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:...
Best practices
0
votes
4
replies
137
views
Upgrading from .NET framework 4.8 VB.NET project to .NET 10
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#...
1
vote
0
answers
51
views
Conflicting assets with the same target path in ASP.NET Core 10 static web asset compression
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'...
3
votes
1
answer
883
views
How to process ASP.NET Core 10.0 Server Sent Events (SSE) in Blazor?
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....