Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases now! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
A Developer's Guide to .NET in Azure

You're reading from   A Developer's Guide to .NET in Azure Build quick, scalable cloud-native applications and microservices with .NET 6.0 and Azure

Arrow left icon
Product type Paperback
Published in Oct 2023
Publisher Packt
ISBN-13 9781837633012
Length 504 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Authors (2):
Arrow left icon
Tamir Al Balkhi Tamir Al Balkhi
Author Profile Icon Tamir Al Balkhi
Tamir Al Balkhi
Anuraj Parameswaran Anuraj Parameswaran
Author Profile Icon Anuraj Parameswaran
Anuraj Parameswaran
Arrow right icon
View More author details
Toc

Table of Contents (20) Chapters Close

Preface 1. Part 1: An Introduction to Your Environment
2. Chapter 1: Setting Up Your Development Environment FREE CHAPTER 3. Part 2: Serverless and Microservices
4. Chapter 2: Creating Docker Containers on Azure 5. Chapter 3: Building Resilient Applications with Dapr 6. Chapter 4: Designing Microservices with AKS and Containers in Azure 7. Chapter 5: Building Serverless Apps with Azure Functions and Container Apps 8. Part 3: Data and Storage
9. Chapter 6: Exploring Azure Blob Storage 10. Chapter 7: Creating an Azure SQL Database 11. Chapter 8: Creating Documents via .NET for Azure Cosmos DB 12. Part 4: Messaging Mechanisms and Security
13. Chapter 9: Utilizing Azure App Configuration 14. Chapter 10: Processing Data with Azure Event Hubs 15. Chapter 11: Designing Ready-Made Solutions with Azure Service Bus 16. Chapter 12: Enhancing Data Protection with Azure Key Vault 17. Chapter 13: Managing Access with Azure Active Directory B2C 18. Index 19. Other Books You May Enjoy

Configuring your development environment

Setting up your development environment is essential for success because it provides you with the necessary tools and resources to efficiently and effectively develop, test, and deploy your software. A properly configured development environment allows you to streamline your workflow, automate tasks, and catch errors early on in the development process. If you’re new to coding, I’m sure you’re wondering how to set up the right environment for you so that you can get coding quickly and easily. You want to be able to focus on what matters most: creating great code!

There are many different ways to do this, but here is a simple guide that will show you how to set up an IDE for .NET programming on Azure. This guide will give you a solid foundation upon which you can build your knowledge of Python and other programming languages.

If you already have an environment setup, please note we will be working through examples utilizing .NET 6.0 in this book and that needs to be installed on your machine. If you are starting from scratch, follow the instructions below to get started.

Installing .NET 6.0

Follow these steps to install .NET 6.0:

  1. Open your browser and go to this web page: https://dotnet.microsoft.com/en-us/download/dotnet. We will primarily be working in .NET 6.0 so make sure to choose the option related to the system you are using.
Figure 1.31 – .NET Download page

Figure 1.31 – .NET Download page

  1. You need to download the .NET 6.0 SDK. Once the Software Development Kit (SDK) has been downloaded, execute the downloaded executable, which will bring up the following setup screen.

In a Windows operating system, the executable will show a welcome screen as follows (see Figure 1.32) from where you can install the .NET SDK. In Windows, it will prompt for administrator access.

Figure 1.32 – .NET SDK – Windows installation

Figure 1.32 – .NET SDK – Windows installation

On Mac machines, it will show a welcome screen like this.

Figure 1.33 – .NET SDK – Mac installation

Figure 1.33 – .NET SDK – Mac installation

In Linux distributions, .NET SDK supports two types of installation – manual installation and script installation. With manual installation, we need to download the .NET SDK, execute the files, and configure paths. In script installation, we can download a .NET installation script from here: https://dot.net/v1/dotnet-install.sh. For developers or normal users, scripted installation is recommended. Once we have downloaded the script, we need to make it executable using the chmod command, and then execute the script.

Here are the bash commands to do this:

> wget https://dot.net/v1/dotnet-install.sh -O dotnet-install.sh
> chmod +x ./dotnet-install.sh
> ./dotnet-install.sh

This will install the .NET 6.0 SDK in most of the Linux distributions. You can find more details about the installation here: https://learn.microsoft.com/dotnet/core/install/linux?WT.mc_id=DT-MVP-5002040.

Now that we’ve successfully installed .NET 6.0, we can continue setting up our IDEs.

You have been reading a chapter from
A Developer's Guide to .NET in Azure
Published in: Oct 2023
Publisher: Packt
ISBN-13: 9781837633012
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime