Happy Monday, all. What did you get NuGet for its 10th birthday?
This week:
- Microsoft blogs about more .NET 5 improvements
- A study on migrating a hectic service to .NET Core
- Meet Jab, a new compile-time DI library
- Dev Discussions: Steve Sanderson
- Last week in the .NET world
Microsoft blogs about more .NET 5 improvements
This week, Microsoft pushed a few more blog posts to promote .NET 5 improvements: Sourabh Shirhatti wrote about diagnostic improvements, and MĂĄĆa PĂchovĂĄ writes about .NET networking improvements.
Diagnostic improvements
With .NET 5, the diagnostic suite of tools does not require installing them as .NET global toolsâthey can now be installed without the .NET SDK. Thereâs now a single-file distribution mechanism that only requires a runtime of .NET Core 3.1 or higher. You can check out the GitHub repo to geek out on all the available diagnostics tools. In other news, you can now perform startup tracing from EventPipe as the tooling can now suspend the runtime during startup until a tool is connected. Check out the blog post for the full treatment.
Networking improvements
In terms of .NET 5 networking improvements, the team added the ability to use cancellation timeouts from HttpClient
without the need for a custom CancellationToken
. While the client still throws a TaskCanceledException
, the inner exception is a TimeoutException
when timeouts occur. .NET 5 also supports multiple connections with HTTP/2, a configurable ping mechanism, experimental support for HTTP/3, and various telemetry improvements. Check out the networking blog post for details. Itâs a nice complement to Stephen Toubâs opus about .NET 5 performance improvements.
A study on migrating a hectic service to .NET Core
This week, Avanindra Paruchuri wrote about migrating the Azure Active Directory gatewayâand its 115 billion daily requestsâover to .NET Core. While thereâs nothing preventing you hosting .NET Framework apps in the cloud, the bloat of the framework often leads to expensive cloud spend.
The gatewayâs scale of execution results in significant consumption of compute resources, which in turn costs money. Finding ways to reduce the cost of executing the service has been a key goal for the team behind it. The buzz around .NET Coreâs focus on performance caught our attention, especially since TechEmpower listed ASP.NET Core as one of the fastest web frameworks on the planet.
In Azure AD gatewayâs case, we were able to cut our CPU costs by 50%. As a result of the gains in throughput, we were able to reduce our fleet size from ~40k cores to ~20k cores (50% reduction) ⊠Our CPU usage was reduced by half on .NET Core 3.1 compared to .NET Framework 4.6.2 (effectively doubling our throughput).
Itâs a nice piece on how they were able to gradually move over and gotchas they learned along the way.
Meet Jab, a new compile-time DI library
This week, Pavel Krymets introduced Jab, a library used for compile-time dependency injection. Pavel works with the Azure SDKs and used to work on the ASP.NET Core team. Remember a few weeks ago, when we said that innovation in C# source generators will be coming in 2021? Here we go.
From the GitHub readme, it promises fast startup (200x more than Microsoft.Extensions.DependencyInjection
), fast resolution (a 7x improvement), no runtime dependencies, with all code generating during project compilation. Will it run on ASP.NET Core? Not likely, since ASP.NET Core is heavily dependent on the runtime thanks to type accessibility and dependency discovery, but Pavel wonders if thereâs a middle ground.
Dev Discussions: Steve Sanderson
It seems like forever ago when, at NDC Oslo in 2017, Steve Sanderson talked about a fun project he was working on, called .NET Anywhere. In the demo, he was able to load and run C# codeâConsoleApp1.dll, specificallyâin the browser, using Web Assembly. C# in the browser! In the talk, he called it âan experiment, something for you to be amused by.â
Of course, this amusing experiment has grown into Blazor, a robust system for writing web UIs in C#. I was happy to talk to Steve Sanderson about his passions for the front-end web, how far Blazor has come, and whatâs coming to Blazor in .NET 6.
Years ago, you probably envisioned what Blazor could be. Has it met its potential, or are there other areas to focus on?
Weâre not there yet. If you go on YouTube and find the first demo I ever did of Blazor at NDC Oslo in 2017, youâll see my original prototype had near-instant live reloading while coding, and the download size was really tiny. I still aspire to get the real version of Blazor to have those characteristics. Of course, the prototype had the advantage of only needing to do a tiny number of thingsâcreating a production-capable version is 100x more work, which is why it hasnât yet got there, but has of course exceeded the prototype vastly in more important ways.
Good news though is that in .NET 6 we expect to ship an even better version of live-updating-while-coding than I had in that first prototype, so itâs getting there!
When looking at AOT, youâll see increased performance but a larger download size. Do you see any other tradeoffs developers will need to consider?
The mixed-mode flavour of AOT, in which some of your code is interpreted and some is AOT, allows for a customizable tradeoff between size and speed, but also includes some subtleties like extra overhead when calling from AOT to interpreted code and vice-versa.
Also, when you enable AOT, your appâs publish time may go up substantially (maybe by 5-10 minutes, depending on code size) because the whole Emscripten toolchain just takes that long. This wouldnât affect your daily development flow on your own machine, but likely means your CI builds could take longer.
Itâs still quite impressive to see the entire .NET runtime run in the browser for Blazor Web Assembly. That comes with an upfront cost, as we know. I know that the Blazor team has done a ton of work to help lighten the footprint and speed up performance. With the exception of AOT, do you envision more work on this? Do you see a point where itâll be as lightweight as other leading front-end frameworks, or will folks need to understand itâs a cost that comes with a full framework in the browser?
The size of the .NET runtime isnât ever going to reduce to near-zero, so JS-based microframeworks (whose size could be just a few KB) are always going to be smaller. Weâre not trying to win outright based on size aloneâthat would be madness. Blazor WebAssembly is aimed to be maximally productive for developers while being small enough to download that, in very realistic business app scenarios, the download size shouldnât be any reason for concern.
That said, itâs conceivable that new web platform features like Signed HTTP Exchanges could let us smartly pre-load the .NET WebAssembly runtime in a browser in the background (directly from some Microsoft CDN) while youâre visiting a Blazor WebAssembly site, so that itâs instantly available at zero download size when you go to other Blazor WebAssembly sites. Signed HTTP Exchanges allow for a modern equivalent to the older idea of a cross-site CDN cache. We donât have a definite plan about that yet as not all browsers have added support for it.
Check out the entire interview at my site.
đ Last week in the .NET world
đ„ The Top 3
- Andrew Lock introduces the ASP.NET Core Data Protection system.
- Maarten Balliauw writes about building a friendly .NET SDK.
- Josef Ottosson writes an Azure Function to zip multiple files from Azure Storage.
đą Announcements
- Shelley Bransten announces Microsoft Cloud for Retail.
- Christopher Gill celebrates NuGetâs 10th birthday.
- Tara Overfield releases the January 2021 Security and Quality Rollup Updates for .NET Framework, and Rahul Bhandari writes about the .NET January 2021 updates.
- .NET 6 nightly builds for Apple M1 are now available.
- The Visual Studio team wants your feedback on Razor syntax coloring.
đ Community and events
- The .NET Docs Show talks to Luis Quintanilla about F#.
- Pavel Krymets introduces Jab, a compile-time DI container.
- The Entity Framework Standup talks about EF Core 6 survey results, and the Languages & Runtime standup discusses plans for .NET 6 and VB source generators.
- Sarah Novotny writes about 4 open source lessons for 2021.
- IdentityServer v5 has shipped.
- Khalid Abuhakmeh rethinks OSS attribution in .NET.
- TechBash 2021 is slated for October 19-22, 2021.
đ Web development
- Dave Brock builds a âsearch-as-you-typeâ box in Blazor.
- Cody Merritt Anhorn uses localization with Blazor.
- Changhui Xu uploads files with Angular and .NET Web API.
- Mark Pahulje uses HtmlAgilityPack to get all emails from an HTML page.
- Jon Hilton uses local storage with Blazor.
- Anthony Giretti tests gRPC endpoints with gRPCurl, and also explores gRPCui.
- The folks at Uno write about building a single-page app in XAML and C# with WebAssembly.
- Marinko Spasojevic handles query strings in Blazor WebAssembly.
- Daniel Krzyczkowski continues building out his ASP.NET Core Web API by integrating with Azure Cosmos DB.
đ„ The .NET platform
- Sean Killeen describes the many flavors of .NET.
- Mattias Karlsson writes about his boilerplate starting point for .NET console apps.
- David Ramel delivers a one-stop shop for .NET 5 improvements.
- Sam Walpole discusses writing decoupled code with MediatR.
- Sourabh Shirhatti writes about diagnostics improvements with .NET 5.
- MĂĄĆa PĂchovĂĄ writes about .NET 5 networking improvements.
â The cloud
- Avanindra Paruchuri writes about migrating the Azure AD gateway to .NET Core.
- Johnny Reilly works with Azure Easy Auth.
- Muhammed Saleem works with Azure Functions.
- Chris Noring uses Azure Key Vault to manage secrets.
- Bryan Soltis posts a file to an Azure Function in 3 minutes.
- Damian Brady generates a GitHub Actions workflow with Visual Studio or the dotnet CLI.
- Thomas Ardal builds and tests multiple .NET versions with GitHub Actions.
- Dominique St-Amand works with integration tests using Azure Storage emulator and .NET Core in Azure DevOps.
- Aaron Powell uses environments for approval workflows with GitHub Actions.
- Damien Bowden protects legacy APIs with an ASP.NET Core YARP reverse proxy and Azure AD Auth.
đ Languages
- Khalid Abuhakmeh writes about Base64 encoding with C#.
- Franco Tiveron writes about a developerâs C# 9 cheat sheet.
- Bruno Sonnino uses C# to convert XML data to JSON.
- Jacob E. Shore writes about his first impressions of F#.
- Matthew Crews writes about learning resources for F#.
- Mark-James McDougall writes an iRacing SDK implementation in F#.
đ§ Tools
- Elton Stoneman writes about understanding Microsoftâs Docker images for .NET apps.
- Jon P. Smith writes about updating many-to-many relationships in EF Core 5 and above.
- Ruben Rios writes about a more integrated terminal experience with Visual Studio.
- Benjamin Day writes about tests in Visual Studio for Mac.
- The folks at Packt write about DAPR.
- Peter De Tender publishes Azure Container Instances from the Docker CLI.
- Nikola Zivkovic writes about linear regression with ML.NET.
- Patrick Smacchia writes how NDepend used Resharper to quickly refactored more than 23,000 calls to Debug.Assert().
- Mark Heath discusses his plans for NAudio 2.
- MichaĆ BiaĆecki asks: is Entity Framework Core fast?
- Jon P. Smith introduces a library to automate soft deletes in EF Core.
đ± Xamarin
- Leomaris Reyes introduces UX design with Xamarin Forms.
- Charlin Agramonte writes about XAML naming conventions in Xamarin.Forms.
- Leomaris Reyes works with the Infogram in Xamarin.Forms 5.0.
- Rafael Veronezi previews XAML UIs.
- James Montemagno writes about how to integrate support emails in mobile apps with data and logs.
- Leomaris Reyes writes about the Xamarin.Forms File Picker.
đ Design, testing, and best practices
- Steve Gordon writes about how to become a better developer by asking questions.
- Derek Comartin says: start with a monolith, not microservices.
- Stephen Cleary writes about durable queues.
đ€ Podcasts
- Scott Hanselman explores event modeling with Adam Dymitruk.
- At Working Code podcast, a discussion on monoliths vs. microservices.
- The .NET Rocks podcast checks in on IdentityServer.
- The .NET Core Show talks Blazor with Chris Sainty.
- The 6-Figure Developer podcast talks to Christos Matskas about Microsoft Identity.
đ„ Videos
- The ON.NET Show inspects application metrics with dotnet-monitor, works on change notifications with Microsoft Graph, and inspects application metrics with dotnet-monitor.
- Scott Hanselman shows you what happens when after you enter a URL in your browser.
- The ASP.NET Monsters talk about migrating their site to Azure Blob Storage..
- At Technology and Friends, David Giard talks to Mike Benkovich about GitHub Actions and Visual Studio.
Top comments (0)