<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"><channel><title>Stuart Lang</title><description>My name is Stuart Lang. I am a software engineer passionate about F#, C# and .NET. I love attending and helping run community tech events, and contributing to open source.</description><link>https://stu.dev/</link><atom:link href="https://stu.dev/rss.xml" rel="self" type="application/rss+xml"/><lastBuildDate>Mon, 15 Jun 2020 12:54:56 GMT</lastBuildDate><sy:updatePeriod>weekly</sy:updatePeriod><sy:updateFrequency>1</sy:updateFrequency><item><title>Managing Package Versions Centrally</title><link>https://stu.dev/managing-package-versions-centrally/</link><guid isPermaLink="true">https://stu.dev/managing-package-versions-centrally/</guid><description>Use Directory.Packages.props to centrally manage NuGet package versions across all projects in your .NET solution.</description><pubDate>Mon, 15 Jun 2020 11:04:42 GMT</pubDate></item><item><title>Do Away with Static Image Placeholders with BlurHash on Xamarin</title><link>https://stu.dev/blurhash-on-xamarin/</link><guid isPermaLink="true">https://stu.dev/blurhash-on-xamarin/</guid><description>What do you show while images load? BlurHash gives you nice blur previews instead of boring placeholders.</description><pubDate>Fri, 06 Mar 2020 15:00:27 GMT</pubDate></item><item><title>Video - An Intro into Async Streams &amp; Channels</title><link>https://stu.dev/video-async-streams-and-channels/</link><guid isPermaLink="true">https://stu.dev/video-async-streams-and-channels/</guid><description>Watch a recorded demo on C# async pitfalls, async streams, and System.Threading.Channels from DDD North.</description><pubDate>Wed, 04 Mar 2020 10:23:39 GMT</pubDate></item><item><title>Check for Breaking Changes with ApiCompat</title><link>https://stu.dev/check-for-breaking-changes-with-apicompat/</link><guid isPermaLink="true">https://stu.dev/check-for-breaking-changes-with-apicompat/</guid><description>Wouldn&apos;t it be great if your build warned you about breaking API changes? Here&apos;s how with Microsoft.DotNet.ApiCompat.</description><pubDate>Sat, 28 Dec 2019 16:36:48 GMT</pubDate></item><item><title>Property Based Testing your API Response Types with F#</title><link>https://stu.dev/property-based-testing-apis-with-fsharp/</link><guid isPermaLink="true">https://stu.dev/property-based-testing-apis-with-fsharp/</guid><description>Use property-based testing with FsCheck to automatically verify your F# API response types match your OpenAPI specification.</description><pubDate>Fri, 15 Nov 2019 20:49:36 GMT</pubDate></item><item><title>Pro Tip: using static Microsoft.AspNetCore.Http.StatusCodes</title><link>https://stu.dev/pro-tip-using-static-microsoft-aspnetcore-http-statuscodes/</link><guid isPermaLink="true">https://stu.dev/pro-tip-using-static-microsoft-aspnetcore-http-statuscodes/</guid><description>Use &apos;using static&apos; with Microsoft.AspNetCore.Http.StatusCodes for cleaner, more readable HTTP status code references in ASP.NET Core.</description><pubDate>Fri, 08 Nov 2019 18:10:34 GMT</pubDate></item><item><title>Defer with C# 8.0</title><link>https://stu.dev/defer-with-csharp8/</link><guid isPermaLink="true">https://stu.dev/defer-with-csharp8/</guid><description>Exploring how to implement Go&apos;s defer keyword in C# 8.0 using IDisposable and the new using declaration syntax.</description><pubDate>Wed, 30 Oct 2019 21:59:19 GMT</pubDate></item><item><title>Trying Out Daily Builds of Roslyn</title><link>https://stu.dev/trying-a-daily-build-of-roslyn/</link><guid isPermaLink="true">https://stu.dev/trying-a-daily-build-of-roslyn/</guid><description>How to use Microsoft.Net.Compilers.Toolset to test daily builds of the Roslyn C# compiler in your .NET Core projects.</description><pubDate>Wed, 30 Oct 2019 21:40:35 GMT</pubDate></item><item><title>C# 8.0 and .NET Standard 2.0 - Doing Unsupported Things</title><link>https://stu.dev/csharp8-doing-unsupported-things/</link><guid isPermaLink="true">https://stu.dev/csharp8-doing-unsupported-things/</guid><description>C# 8.0 isn&apos;t officially supported on .NET Standard 2.0, but that doesn&apos;t mean we can&apos;t use it anyway.</description><pubDate>Tue, 15 Oct 2019 11:13:48 GMT</pubDate></item><item><title>.NET Core 3 Local Tools</title><link>https://stu.dev/dotnet-core-3-local-tools/</link><guid isPermaLink="true">https://stu.dev/dotnet-core-3-local-tools/</guid><description>.NET Tools are great, but sometimes you don&apos;t want them global. Here&apos;s how local tools work in .NET Core 3.</description><pubDate>Fri, 27 Sep 2019 22:24:27 GMT</pubDate></item><item><title>Xamarin Forms Accessible Headings</title><link>https://stu.dev/xamarin-forms-accessible-headings/</link><guid isPermaLink="true">https://stu.dev/xamarin-forms-accessible-headings/</guid><description>How to add VoiceOver heading accessibility traits to Xamarin Forms iOS apps using attached properties and effects.</description><pubDate>Mon, 02 Sep 2019 18:34:00 GMT</pubDate></item><item><title>A Look at JsonDocument and System.Text.Json</title><link>https://stu.dev/a-look-at-jsondocument/</link><guid isPermaLink="true">https://stu.dev/a-look-at-jsondocument/</guid><description>Learn how to use System.Text.Json&apos;s JsonDocument API for efficient, low-allocation JSON parsing with asynchronous stream support in .NET.</description><pubDate>Sun, 04 Aug 2019 17:35:47 GMT</pubDate></item><item><title>.NET Framework Reference Assemblies via NuGet</title><link>https://stu.dev/dotnet-framework-reference-assemblies-via-nuget/</link><guid isPermaLink="true">https://stu.dev/dotnet-framework-reference-assemblies-via-nuget/</guid><description>The easy way to build .NET Framework on macOS, Linux, or Docker - just add a NuGet package.</description><pubDate>Sun, 05 May 2019 13:30:28 GMT</pubDate></item><item><title>Testing with HttpClient Interception</title><link>https://stu.dev/testing-with-httpclient-interception/</link><guid isPermaLink="true">https://stu.dev/testing-with-httpclient-interception/</guid><description>How to use JustEat&apos;s HttpClient Interception library to write effective unit tests for typed HTTP clients in .NET.</description><pubDate>Sun, 24 Mar 2019 20:45:24 GMT</pubDate></item><item><title>Generating a Typed Client for use with HttpClientFactory using NSwag</title><link>https://stu.dev/generating-typed-client-for-httpclientfactory-with-nswag/</link><guid isPermaLink="true">https://stu.dev/generating-typed-client-for-httpclientfactory-with-nswag/</guid><description>Generate typed HTTP clients from Swagger/OpenAPI specs using NSwag, configured for use with HttpClientFactory in ASP.NET Core.</description><pubDate>Mon, 18 Mar 2019 09:29:00 GMT</pubDate></item><item><title>Miscellaneous C# Async Tips</title><link>https://stu.dev/miscellaneous-csharp-async-tips/</link><guid isPermaLink="true">https://stu.dev/miscellaneous-csharp-async-tips/</guid><description>A random collection of async tips I&apos;ve picked up over the years that you might not have seen before.</description><pubDate>Mon, 03 Dec 2018 07:50:29 GMT</pubDate></item><item><title>BigInteger to String in Any Base with F#</title><link>https://stu.dev/bigint-to-string-in-any-base-fsharp/</link><guid isPermaLink="true">https://stu.dev/bigint-to-string-in-any-base-fsharp/</guid><description>I needed to print a BigInteger in any base, and there was nothing built-in. Here&apos;s my F# solution.</description><pubDate>Sat, 01 Dec 2018 23:19:09 GMT</pubDate></item><item><title>How to dotnet build and Target net4x on macOS</title><link>https://stu.dev/how-to-target-net4x-on-macos/</link><guid isPermaLink="true">https://stu.dev/how-to-target-net4x-on-macos/</guid><description>Getting &apos;reference assemblies not found&apos; when building .NET Framework on macOS? Here are two workarounds.</description><pubDate>Mon, 24 Sep 2018 19:01:37 GMT</pubDate></item><item><title>Displaying Images in iTerm from .NET Console Apps</title><link>https://stu.dev/displaying-images-in-iterm-from-dotnet-apps/</link><guid isPermaLink="true">https://stu.dev/displaying-images-in-iterm-from-dotnet-apps/</guid><description>How to display inline images in iTerm2 from .NET console applications using escape sequences.</description><pubDate>Sun, 02 Sep 2018 18:32:00 GMT</pubDate></item><item><title>.NET Framework Support for .NET Standard 2.0</title><link>https://stu.dev/dotnet-framework-support-for-dotnetnet-standard-2-0/</link><guid isPermaLink="true">https://stu.dev/dotnet-framework-support-for-dotnetnet-standard-2-0/</guid><description>The messy story of .NET Standard 2.0 support on .NET Framework 4.6.1, and what you can do about it.</description><pubDate>Tue, 28 Aug 2018 16:50:54 GMT</pubDate></item><item><title>How I Use VS Code for Code Highlighting in My Blog</title><link>https://stu.dev/using-vs-code-for-my-blog-code-formatting/</link><guid isPermaLink="true">https://stu.dev/using-vs-code-for-my-blog-code-formatting/</guid><description>A workflow for embedding VS Code syntax-highlighted code snippets in blog posts using a dotnet global tool.</description><pubDate>Sun, 29 Jul 2018 11:15:31 GMT</pubDate></item><item><title>Pattern Matching F# Union Types in C# 7</title><link>https://stu.dev/pattern-matching-fsharp-union-types-in-csharp/</link><guid isPermaLink="true">https://stu.dev/pattern-matching-fsharp-union-types-in-csharp/</guid><description>Using C# 7&apos;s pattern matching to consume F# discriminated unions, with examples and workarounds for edge cases.</description><pubDate>Fri, 27 Jul 2018 13:26:27 GMT</pubDate></item><item><title>IAsyncEnumerable&lt;T&gt; - An Introduction</title><link>https://stu.dev/iasyncenumerable-introduction/</link><guid isPermaLink="true">https://stu.dev/iasyncenumerable-introduction/</guid><description>An introduction to IAsyncEnumerable&lt;T&gt; in C#, covering the problem it solves, how to produce and consume async sequences, and C# 8.0 support.</description><pubDate>Thu, 14 Jun 2018 14:56:13 GMT</pubDate></item><item><title>Adding AssemblyMetadataAttribute using new SDK project, with MSBuild</title><link>https://stu.dev/adding-assemblymetadataattribute-using-new-sdk-project-with-msbuild/</link><guid isPermaLink="true">https://stu.dev/adding-assemblymetadataattribute-using-new-sdk-project-with-msbuild/</guid><description>Want to embed git commit hashes or other metadata in your assemblies? Here&apos;s how with MSBuild.</description><pubDate>Mon, 26 Mar 2018 19:20:36 GMT</pubDate></item></channel></rss>