Take advantage of API versioning in ASP.NET Core to manage the impact of changes to your APIs on your clients When developing APIs, you should keep one thing in mind: Change is inevitable. When your ...
[Editor's note: Peter rewrote this article after a reader pointed out he over-engineered his original solution. ("What can I say: The code worked -- I just didn't need nearly as much code as I thought ...
Take advantage of user secrets management in ASP.NET Core to prevent the sharing of sensitive application data in your projects When working with ASP.NET web applications, you will want to protect ...
In ASP.NET MVC Core the BundleConfig class -- where, in ASP.NET MVC, you used code to create script bundles in ASP.NET MVC -- is gone. Instead, you use a configuration file called bundleconfig.json to ...
App.config and Web.config files are a great way to add flexibility to your .NET application without having to modify code in the future. They also allow clients or end users to make configuration ...