Technical requirements
This chapter includes short code snippets to demonstrate the concepts that are explained. The following software is required to make it work:
- Visual Studio 2019: Visual Studio can be downloaded from https://visualstudio.microsoft.com/vs/community/. The Community edition is free and will work for the purposes of this book.
- .NET 5: The .NET framework can be downloaded from https://dotnet.microsoft.com/download.
Make sure you download the SDK and not just the runtime. You can verify the installation by opening a command prompt and running dotnet --info
as shown in Figure 10.1:
Figure 10.1 – Verifying the installation of .NET
As part of this chapter, we will use extensions in Visual Studio to work with AWS and Azure.
Please visit the following link to check the CiA videos: https://bit.ly/3qDiqYY
Working with AWS
An AWS account is required to perform the steps in the Publishing to AWS section. The steps...