© 2023 Hashnode
#visual-studio
Simple API Lockdown Introduction The previous article reviewed how to set and read environment variables. We'll use that knowledge and set up an API Key as an environment variable for authorization in…
Introduction The first article in this series was the default WeatherForecast model that is created by default in a .NET Web API project. We'll build off Article 1 to start reading in values from envi…
Sensitive data like passwords, connection strings, access keys, etc. should not be included in the source code that is committed in a shared repository. Secrets must not be deployed with the apps, too…
Introduction This article is the start of a series on how to build an API using the .NET Framework. I'm sticking with .NET 6, it is the latest Long-Term-Support (LTS) Version. I'll be using Visual St…
Dapr is an impressive set of APIs for building distributed applications with any language and platform. It provides a set of building blocks that you can use to build microservices. Dapr is based on s…
Visual Studio can be a cruel partner. One bad upgrade or one misclick can change the way it operates or what it reports to you. Over the years I have had a few frustrating, head-slapping moments. Rece…
The .NET Upgrade Assistant does an excellent job of updating your classic .Net Framework projects to target the new .NET binaries. It is not a "fire-and-forget" process, however, and you will want to …
Have you ever liked an application to the point that you want to view its source code? Well, I have been there. For .Net executable files and libraries such as DLL files, viewing the source code is a …
In November I had the honour of being able to present my session on how to integrate your database deployment in your CI/CD pipeline. It was the first time I gave the session and other than needing 3-…
WHAT IS VISUAL STUDIO CODE? Visual Studio Code or more popularly known as VS Code, maintained by Microsoft, is the most popular open-source code editor used by many programmers. It is a one-stop solut…