Exploring Roslyn .NET Compiler Platform SDK
Making developers lives easier by utilizing an open compiler platform
Jan 25, 20235 min read619

Search for a command to run...

Series
In this series, I will explore how Roslyn, the .NET Compiler Platform, enhances the development process and allows developers to write code analysis, transformation and manipulation tools.
Making developers lives easier by utilizing an open compiler platform

A Hands-On Guide to Building and Understanding Roslyn Analyzers

A Guide to Spending an Entire Afternoon Fixing a Single Line of Code with Roslyn

In the previous article, we implemented a Roslyn analyzer and code fix. This article will focus on various ways to properly test them. We will leverage existing test libraries and explore the means to write one ourselves using Roslyn workspaces. This...
