How to Use .NET appsettings.json

How to Use .NET appsettings.json

In this blog post How to Use .NET appsettings.json for Cleaner Configuration we will explore how appsettings.json helps you manage configuration in modern .NET apps, without sprinkling values throughout your codebase. You will learn what it is, why it exists, and how...
Run PyTorch in .NET with TorchSharp

Run PyTorch in .NET with TorchSharp

In this blog post Practical ways to run PyTorch in .NET with TorchSharp and more we will walk through reliable ways to use PyTorch from .NET, when to choose each approach, and how the pieces work under the hood. At a high level, you have three good options: write and...
Keep .NET App Running in Docker

Keep .NET App Running in Docker

In this blog post Keep .NET App Running in Docker we will walk through how to containerise a .NET application, start it automatically when the container launches, and keep it running reliably. Containers shine when you want consistent, repeatable runtime environments....
Use Dev Containers for .NET Development

Use Dev Containers for .NET Development

In this blog post, we’ll show you how to use Dev Containers for .NET development. Table of contentsWhy Use Dev Containers?RequirementsGetting StartedDevelopment in a Dev ContainerSummary The VS Code Dev Containers extension allows you to develop .NET and other...