SQS Sample

Build an AWS SQS Background Service with .NET 5 — Part 1

Amazon SQS For the .NET Developer: How to Easily Get Started

Getting started with Queues in .NET using AWS SQS - YouTube

Generic Message Queue implementation using AWS SQS and .Net 6 BackgroundService

MassTransit (Playlist)

Notes

dotnet user-secrets init
dotnet user-secrets set "AWS:SQS:QueueName" SQSSample
dotnet user-secrets set "AWS:SQS:AccessKey" KEY
dotnet user-secrets set "AWS:SQS:SecretKey" SECRET
curl https://raw.githubusercontent.com/github/gitignore/main/VisualStudio.gitignore -o .gitignore
curl https://raw.githubusercontent.com/JetBrains/resharper-rider-samples/master/.gitignore -o rider.ignore && cat rider.ignore >> .gitignore && rm rider.ignore

or

RIDER_IGNORE=$(curl https://raw.githubusercontent.com/JetBrains/resharper-rider-samples/master/.gitignore) && echo "$RIDER_IGNORE" >> .gitignore

Configuration in ASP.NET Core | Microsoft Learn

Safe storage of app secrets in development in ASP.NET Core | Microsoft Learn'

Using User Secrets Configuration In .NET - .NET Core Tutorials

Install-Package  Microsoft.Extensions.Configuration.UserSecrets
dotnet add package Microsoft.Extensions.Configuration.UserSecrets --version 7.0.0

Preserve Linebreaks When Storing Command Output to a Variable | Baeldung on Linux