Lex Li
Why is `dotnet publish` not including Roslyn for my ASP.NET Framework 4.8.1 Web App?
Your only support channel for that is the GitHub repo, https://github.com/CZEMacLeod/MSBuild.SDK.SystemWeb/issues. If you find some useful tips, you might share with the audience there in case they hit the same issue.
25 replies
Visual Studio 2022 (0xc0000409) Error Code
If you use Git to manage commits, check what recent changes you made and revert. A .NET app crashes on VC++ runtime related errors isn't trivial to debug so isolating the culprit at first can guide you through.
9 replies
Error acquiring .NET when offline but works when online in VS Code
That's the behavior of C# Dev Kit which you might want to repor to Microsoft via https://github.com/microsoft/vscode-dotnettools
5 replies
React + .Net core api issue
The proper channel to request technical support (like from Microsoft Support) is to go through a site like https://support.microsoft.com and open a support case. If the symptom is "The API is taking approximately 20-21 minutes to respond", usually hang dump analysis can reveal the culprit in a couple of hours by an experienced professional. You can do the same if you know the tools/profilers and your codebase very well.
16 replies
React + .Net core api issue
Can you see what the logging says? https://learn.microsoft.com/en-us/aspnet/core/host-and-deploy/iis/logging-and-diagnostics?view=aspnetcore-9.0#enhanced-diagnostic-logs
16 replies
.Net framework async controllers
The only pitfalls I can think of: 1) The code base starts to have both sync/async code, and you need all developers to be familiar with that and don't make trivial async mistakes. 2) Since the controllers become async and you remove the performance bottleneck there, something else might become the new bottleneck and you might see bad performance there. But again, nothing serious to worry about and you will be fine.
9 replies
How to interpret C#/.NET documentation
If your goal is to better know the BCL other than the runtime itself, I think it is hard to find good books/tutorials specific to that area. Try to build certain kinds of apps and that might help. Modern AIs are also possible to guide you through certain namespaces.
45 replies