Earlier I posted about what’s new in ASP.NET Core 7.0 but at the same time the release of a new version of the .NET framework brings exciting features and improvements to the development experience. However, like any software release, there can be occasional errors and issues that developers may encounter while working with .NET 7.0. In this blog post, we will explore some common errors and issues that you may come across when using .NET 7.0 and provide troubleshooting tips to help you overcome them effectively.
Read MoreTag: Errors
Fix for “missing xml comment for publicly visible type or member” in ASP.NET Core
This warning cs1591 missing xml comment for publicly visible type or member, you may get while building the application or Visual studio will also display red squiggle in your code at all places where XML comments are missing. The warning can be ignored, but that red squiggle in code is quite annoying. So in this short post, find out how to fix/disable this warning cs1591 in ASP.NET Core projects.
Read More
How to run gulp tasks synchronously
As mentioned in my earlier post Gulp js interview questions, Gulp tasks are asynchronous. Which means that we are not sure about sequence of gulp tasks execution while chaining multiple tasks. And if you have used Grunt then it’s a tricky situation to handle for you as Grunt tasks are synchronous by design. So in this post, find how to run gulp tasks synchronously.
Read More
How to fix “dnx runtime package needs to be installed”
While working with ASP.NET 5 application using Visual Studio 2015, you may encounter an error “dnx runtime package needs to be installed”. And you might be scratching your head after successful installation of Visual studio and .NET framework, what else it needs. And re-installing Visual studio won’t help either. Let’s dive in for the fix.
Read More