Week 8, 2023
Monday, 20 February 2023 - Sunday, 26 February 2023
F# Weekly #7, 2023 – .NET 8 Preview 1, Florence, FAKE 6 and Plotly.NET 4
Hangfire in .NET? 1. Introduction 2. How to implement it 3. Benefits 🧵⏬ #csharp #dotnet #dotnetcore
Different Types of Comments in C# and Should We Use Them
Maximizing Team Collaboration and Productivity with Visual Studio 2022
Want to stress test your Azure SQL or SQL Server database - I maintain a free tool for that - just updated with Azure MFA support #dotnet #azure #sqlserver github.com/ErikEJ/SqlQuer…
I don't use controllers, and I don't manually map my endpoints. The endpoints are determined with a reflection scan over my contracts library and registered automatically. This code register all of my API endpoints. TODO: api.MapGet when the contract is a query. #AspNetCore
.NET Systems Programming Learned the Hard Way – Webinar Recording
PowerShell Extension for Visual Studio Code February 2023 Update
Updated Modern Code Generation for WinForm's InitializeComponent - .NET Blog
Reference GitHub Issues and Pull Requests in Visual Studio
F# myth of the week: F# is for FP, C# for OOP buff.ly/3SBW6NX #fsharp #csharp #dotnet #myths
How to use Discriminated Unions Today in C#
Blazor United - Solving Blazor's biggest challenges?
ASP.NET Core 8.0 supports form posts in minimal APIs now. #dotnet #aspnetcore
.NET 8 Preview 1 is now available! This is the first preview of the next major version of #dotNET, and includes the next wave of innovations for web development with #ASPNETCore. Learn about the many broad improvements in this release. 📖 msft.it/60195wo6H
How to Modify a Base URI of Swagger in ASP.NET Core
How to Disable Individual GridView and ListView Items in a XAML Application (WinUI + Uno Platform)
Visual Studio 2022 can now Always Update on Close!
Unable to unprotect the message.State - ASP.NET Core
We can build a completely distroless .NET program using NativeAOT, and even statically link the assembly code into the binary and call it with P/Invoke. Statically linking glibc only yields a 2.8mb size of binary, and it's only 1.6mb without statically linking glibc. #dotnet
Just tested the new build acceleration in latest @VisualStudio and holy crap the impact is gigantic. 🚀 30 project solution with millions LOC. Previously: -Build Solution: ~ 26 seconds -Change something in a low-level project -Build: ~ 26 seconds With build acceleration👇
‼️ Announcing .NET 8 Preview 1 ‼️ ... including big improvements to products, libraries, runtime, and tooling. ➕, we plan on making broad investments in #ASPNET Core, Blazor, #EFCore, WinForms, WPF, and other platforms. You can learn more here: msft.it/60155wmaN
.NET 8 finally publishes in Release mode by default. "Sorry that it took so long!" 😂 Ugh, that's bugged me for so long as I've forgotten to add the release switch more than a few times. #dotnet
Visual Studio 2022 17.5 has just been released and one of my favourite new features is the INTEGRATED HTTP CLIENT. It's not a Postman killer yet but it so awesome to be able to both send and debug REST requests directly from within #visualstudio ❤ ... #dotnet
if you've been waiting for #dotnetmaui for VS on Windows ARM64, then today's your day. Now in VS 17.6 Preview 1
🚨 Tools release day for @dotnet and @VisualStudio 🤖 .NET 8 Preview 1 - devblogs.microsoft.com/dotnet/announc… 🌍 ASP.NET 8 Preview 1 - devblogs.microsoft.com/dotnet/asp-net… 🧰 Visual Studio - devblogs.microsoft.com/visualstudio/v… 🦄EF - devblogs.microsoft.com/dotnet/announc…
Visual Studio 2022 – 17.5 Released
Visual Studio for Mac 17.5 is now available
EF Core 8 Preview 1: Raw, lazy, and on-time - .NET Blog
Announcing .NET 8 Preview 1
Playing around with performance tuning for #Microsoft #Graph API requests & #PowerShell... Blog post with detailed approaches for improvements is on the way but ~9x faster execution time sounds promising 🪩
ASP.NET Core updates in .NET 8 Preview 1
🎉🎉🎉Celebrating MauiReactor GA version! just published a new sample app for #dotnetmaui MauiReactor featuring some cool animations and scrolling interactions. Code: github.com/adospace/mauir… Design: figma.com/community/file… Plz, check it out! 👇👇
The most awaited feature for ages has finally come to C# 11. Generic attributes. Forget about passing the type to attributes and runtime checks, now with generic attributes code becomes much cleaner and more important much safer - thanks to generic constraints. #dotnet