Hardware Intrinsics in .NET Core | .NET Blog Several years ago, we decided that it was time to support SIMD code in .NET. We introduced the System.Numerics namespace with Vector2, Vector3, Vector4, Vector<T>, and related types. These types expose a general-purpose API for creating, accessing, and op...
Blazor 3.0 Roadmap · Issue #8177 · dotnet/aspnetcore This is a tracking item for the overall Blazor features in .NET Core 3.0 Items are arranged by milestone. DESIGN: items mean that the design work will occur in that milestone - the actual product w...
SQL Server Retries with Dapper and Polly Retryable SQL Server exceptions, that lovely little library called Polly, and Dapper (or your favorite database access library)
dotnet/aspnetcore ASP.NET Core is a cross-platform .NET framework for building modern cloud-based web applications on Windows, Mac, or Linux. - dotnet/aspnetcore
Comparing Startup.cs between the ASP.NET Core 3.0 templates: Exploring ASP.NET Core 3.0 - Part 2 In this post I take a brief look at the different ASP.NET Core templates in the .NET Core 3.0 SDK and their corresponding Startup.cs
Create customized instances of Visual Studio What if you could have a different version of Visual Studio with different settings and extensions based on the type of application you are building? Good news, you can do that with a feature called RootSuffix. In this video, Mads Kristensen shows you how...
Livin’ on the Edge: Root Causing Regressions As we’ve been working to replatform the new Microsoft Edge browser atop Chromium, one interesting outcome has been early exposure to a lot more bugs in Chromium. Rapidly root-causing these re…
Alec Alec Holowka died last week. This came after a week in which several revelations about his past and present actions came to light, from…
[RyuJIT] Recognize and optimize constant set membership tests · Issue #8418 · dotnet/runtime It would be useful if the JIT recognized tests like: if ('0' <= c && c <= '9') - can be reduced to a single branch + compare + subtract if (c == ' ' || c == &#...
The Size and Shape of Raindrops - Sixty Symbols All about how raindrops form and fall. Featuring Professor Mike Merrifield.\nMore links and info below ↓ ↓ ↓\n\nMore with Professor Merrifield: http://bit.ly/Merrifield_Playlist\n\nOur weather-themed playlist: http://bit.ly/Weather_Videos\n\nProfessor Me...
Publishing to Azure Container Registry using Azure Pipelines In this post, I show how to automate the building of a Docker image using Azure Pipelines. As well as how to automatically publish the image to an Azure Container Registry.
GitHub Actions Build by NickCraver · Pull Request #416 · MiniProfiler/dotnet Trying to get the build setup in actions here