Roslyn is a powerful API for C# and Visual Basic compilations. Provide it code, a few options and a set of references and it will provide an API to inspect the syntax, semantic model, diagnostics and even generate DLLs / EXEs.
Getting references for .NET Core or .NET Standard to use with a Compilation
is challenging because these are only shipped as physical files. In order to use
them in a library the developer must do the heavy lifting of packaging them up
as resources in their library and unpacking them at runtime.
The Basic.Reference.Assemblies
library takes care of this heavy lifting and provides the reference assemblies
for netstandard2.0
, netcoreapp3.1
and net5.0
. These can be easily
integrated into the existing Roslyn APIs.
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp;
using Basic.Reference.Assemblies;
var code = @"
using System;
static class Program
{
static void Main()
{
var tuple = (Part1: ""hello"", Part2: ""world"");
Console.WriteLine($""{tuple.Part1} {tuple.Part2}"");
}
}
";
var compilation = CSharpCompilation
.Create(
"HelloWorld.dll",
new[] { CSharpSyntaxTree.ParseText(code) },
references: ReferenceAssemblies.Net50);
using var fileStream = new FileStream(@"p:\temp\helloworld.exe", FileMode.Create, FileAccess.ReadWrite);
var emitResults = compilation.Emit(fileStream);
This package also adds extensions methods for easily retargeting Compilation
instances to different Target Frameworks.
CSharpCompilation compilation = ...;
compilation = compilation.WithReferenceAssemblies(ReferenceAssemblyKind.NetCoreApp31);
This repository actually provides a series of packages. The expectation is that
most developers will use Basic.Reference.Assemblies.
This package has reference assemblies for all of the supported target frameworks
and provides APIs to make it easy to switch between them in Compilation
instances.
Developers who only need a single target framework and are extremely size conscious can grab the target framework specific package:
- Basic.Reference.Assemblies.Net50
- Basic.Reference.Assemblies.NetCoreApp31
- Basic.Reference.Assemblies.NetStandard20
Developers working on .NET Framework will often end up with the following pattern
for creating Compilation
instances:
Assembly systemCoreAssembly = typeof(System.Linq.Enumerable).Assembly;
string systemCorePath = systemCoreAssembly.Location;
MetadataReference systemCoreRef = AssemblyMetadata.CreateFromFile(string path).GetReference();
This pattern will often work on .NET Framework but will fail with running on .NET Core. The reason for this is due to the differences in reference and implementation assemblies. Reference assemblies are designed for use at build time while implementation assemblies are used at runtime. A particular type for a given target framework doesn't necessarily live in the same reference and implementation assembly. Also the set of implementation assemblies can be larger than the reference assemblies for the same target framework.
The reason the above tends to work on .NET Framework is the split between reference and implementation assemblies is not as pronounced. In most cases there is a 1:1 relationship. On .NET Core though the split is much more pronounced and it often requires probing for implementation assemblies to get a set which will work for building. This is a fragile process though, developers are much better off using the reference assemblies as intended by the .NET team.