Ugo Umeokeeurocode.hashnode.dev·Nov 29, 2024Quick Guide to Identity Endpoints in .NET 8+Identity management is a critical aspect of modern web applications, providing the infrastructure necessary for managing users, roles, authentication, and authorization. With .NET 8, Microsoft has further streamlined the process by introducing enhanc...C#
Quang Phanquangphan.hashnode.dev·Aug 6, 2024Introduction to .NET Aspire.Microsoft just introduced .NET Aspire as part of .NET 8. It was released for general availability in May 2024. According to Microsoft, .NET Aspire is an opinionated, cloud ready stack for building observable, production ready, distributed application...1 like·77 reads.NET
Alex Taveras-Crespoblog.alextaverascrespo.ca·May 22, 2024Implementing CI/CD for .NET 8 APIs on AWS EC2 Using GitHub Actions and DockerThis blog documents the setup of an automated CI/CD workflow for a .NET 8 back-end API hosted on an AWS EC2 instance. It covers configuring AWS CodeDeploy, creating GitHub Actions scripts, and managing secrets with AWS Parameter Store. The goal is to...148 readsAWS
Christian Lehnertblog.christianlehnert.dev·Feb 9, 2024NET 8 introduces a new type called FrozenSet<T>.NET 8 presents an array of performance enhancements that developers can leverage without modifying their existing code. By simply targeting net8.0 in the project file, one can reap the benefits of these improvements. Nonetheless, to utilize specific...4 likes·623 reads.NET
Ryan Phillipsryanphillips.hashnode.dev·Jan 3, 2024A New Way to Randomize in .NET 8We've all used random numbers in C# for various reasons. It has never been difficult to get a random number and use it, we've all probably written something like this: public int GetRandomNumber(int max) { var random = new Random(); return ra...58 readsdotnet
İbrahim Uludağdotdev.com.tr·Dec 27, 2023Performance Improvements in .NET 8, ASP.NET Core, and .NET MAUI | .NET Conf 2023Reference https://www.youtube.com/watch?v=YiOkz1x2qaE&list=PLdo4fOcmZ0oULyHSPBx-tQzePOYlhvrAU&index=21 https://devblogs.microsoft.com/dotnet/performance-improvements-in-net-8/.net 8
İbrahim Uludağdotdev.com.tr·Dec 22, 2023Tiny, fast ASP.NET Core APIs with native AOT | .NET Conf 2023.NET 8 introduces support for publishing ASP.NET Core applications to native AOT for lightning-fast startup times & small, self-contained, native executables & containers. This session will provide an overview of when you might want to consider publi...79 reads.NET
İbrahim Uludağdotdev.com.tr·Dec 7, 2023.NET Containers advancements in .NET 8This is a summary of .NET Containers advancements in .NET 8 on .Net Conf 2023. It is requied from communitity for .Net Container Images to be Small (registry pull faster) Secure (non-root; no shell or package manager) Compliant (minimal dependenci....net 8
İbrahim Uludağdotdev.com.tr·Dec 6, 2023New Data Annotations in .NET 8System.ComponentModel.DataAnnotations provides attribute classes that are used to define metadata for ASP.NET MVC and ASP.NET data controls. The namespace has new annotations and modifications to existing ones on .NET8. Let's review those. Also, you ...1 like·32 readsC#
Amigoways Technologies Pvt Ltdamigoways.hashnode.dev·Nov 22, 2023.NET 8: What’s New? (New Features Unveiled) - Amigoways.NET 8, the latest version of the popular cross-platform framework, introduces several exciting features and enhancements. One notable addition is the introduction of minimal APIs, streamlining the process of building lightweight and efficient applic...what is new in dot net 8