The Options pattern is a powerful and versatile configuration method in .NET, particularly in ASP.NET Core. Here's how it works! #DEVCommunity #dotNET dev.to/fabriziobagala…
Week 19, 2023
Monday, 8 May 2023 - Sunday, 14 May 2023
My C# Code Conventions and Style Guide
F# Weekly #19, 2023 – Microsoft Build 2023, May 23-24
.NET MAUI Community Toolkit Monthly Standup, June 2023
Join David Fowler (@davidfowl) for discussions about AI and #dotNET at this year’s #MSBuild, May 23-25, 2023. Register today. msft.it/6015gposv
Go for C# developers: defer is not IDisposable
Level up your GPT game with prompt engineering - .NET Blog
It's a work in progress, but it's working beautifully already. We can't wait to get this into your hands and make Avalonia UI development with @VisualStudio a little nicer. 😍
Compiling C# like Rust, Go and C++
fact #dotnet
API versioning and Swagger in ASP .NET Core 7.0 by @moesmp mohsen.es/api-versioning… #aspnetcore
there's this guy that makes #dotnet content, he made a signalr playlist where he covers Web Sockets, Server Sent Events and Long Polling with various examples video streaming, collaboration tool, drawing game and chat. you should check it out! youtube.com/playlist?list=…
Building Intelligent Applications with OpenAI and C#: A Step-by-Step Guide to get started
Surround selection experiment - Visual Studio Blog
Is .NET Still a Legitimate Technology in 2023?
Build Clean Messaging in .NET with MassTransit
How can you find a maximum element with LINQ? .NET 6 introduced the MaxBy method. Before, you had to sort the list in descending order and take the first element. Don't try to use this with EF Core, as it's still unsupported. And it also throws for empty collections. #dotnet
PowerShellGet 3.0 Preview 21
Blog Post: KB5025885: Dealing with CVE-2023-24932 via Proactive Remediation & Configuration Items garytown.com/kb5025885-deal… Please test and provide feedback. #ConfigMgr #WindowsUpdate #Intune #PowerShell #SysAdmin #Windows10 #Windows11
Multidimensional Array vs Jagged Array in C#
Visual Studio UI Refresh
The Biggest Lie About the .NET Logger | .NET Tips 7
C# | .Net Tip 💡 𝐇𝐨𝐰 𝐭𝐨 𝐢𝐧𝐜𝐫𝐞𝐚𝐬𝐞 𝐭𝐡𝐞 𝐫𝐞𝐚𝐝𝐚𝐛𝐢𝐥𝐢𝐭𝐲 𝐨𝐟 𝐲𝐨𝐮𝐫 𝐜𝐨𝐧𝐟𝐢𝐠𝐮𝐫𝐚𝐭𝐢𝐨𝐧 𝐜𝐨𝐝𝐞? I'm sure everyone reading this post has heard of 𝐞𝐱𝐭𝐞𝐧𝐬𝐢𝐨𝐧 𝐦𝐞𝐭𝐡𝐨𝐝𝐬. 🧵 Good practice at the end of the post. 👌 #Dotnet
Upcoming availability of .NET Framework 4.8.1 on Windows Update and Catalog
Should you connect to #SQLServer with #EFCore, Dapper, or ADO .NET? In today's On .NET session replay, we learn the differences between the three solutions and walk through different scenarios for working with SQL Server using C# and #dotNET. msft.it/6018grXp0
How to start using .NET Background Services
A mystery package arrived for me today... 🤔👶😄 #dotnet #csharpforbabies @jetbrains @JetBrainsRider
This is coming along nicely. It's @AvaloniaUI compiled to a native library with #dotnet Native AOT, plus generated bindings for @typescript and running under @deno_land Preview release coming soon.
Removing the IIS Server Request Header from ASP.NET Core Apps (any version)
#MSBuild is coming and .NET MAUI is headed to .NET 8‼️ The .NET MAUI Podcast breaks down the latest #dotNETMAUI and #Azure news! Drop in. msft.it/6018gRkOA
PowerShell Extension for Visual Studio Code Spring 2023 Update
PSReadLine 2.3.1-beta1 Release - PowerShell Team
Announcing the official launch of the 8.2 release of the #dotNET Community Toolkit! Now including: ➕ performance improvements both at runtime and in the MVVM Toolkit source generators ➕ new code fixers to enhance your productivity ...and much more. msft.it/6010gRkO6
Deploying Blazor Mini Course: GitHub Actions and Continuous Delivery
Working With Images Like a Pro in .NET
2 MUST USE features for dotnet test debugging
The Fastest Way To Work With Lists in C#! | .NET Tips 6
Is this the most underrated C# feature? If you enjoyed this, you might want to subscribe to my channel: youtube.com/c/Codewrinkles #dotnet #csharp #programming #programmingtips
How can you find a minimum element with LINQ? Before .NET 6, you had to sort the collection in ascending order and take the first element. But .NET 6 introduced the MinBy method, which does precisely this. Don't try to use this with EF Core, as it's still unsupported. #dotnet