SourceGenerator.Foundations 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package SourceGenerator.Foundations --version 1.0.0
NuGet\Install-Package SourceGenerator.Foundations -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SourceGenerator.Foundations" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SourceGenerator.Foundations --version 1.0.0
#r "nuget: SourceGenerator.Foundations, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install SourceGenerator.Foundations as a Cake Addin
#addin nuget:?package=SourceGenerator.Foundations&version=1.0.0

// Install SourceGenerator.Foundations as a Cake Tool
#tool nuget:?package=SourceGenerator.Foundations&version=1.0.0

Nuget GitHub Workflow Status

SourceGenerator.Foundations

Source Generators are awesome but working with them can be a bit painful. This library is designed to try to smooth out some bumps. To get started using the library just add a nuget reference. Once that is done you will have access to new types contained within your assembly.

Quick Start

To get started all you need to do is add the NuGet package reference. You may or may not have to restart Visual Studio for the new types to show up. Then implement the base class IncrementalGenerator.

namespace Example
{
    // IncrementalGenerator, is a generated type from `SourceGenerator.Foundations'
    public class ExampleSourceGenerator : IncrementalGenerator 
    {
       protected override void OnInitialize(IncrementalGeneratorInitializationContext context)
       {
            // Attaches Visaul Studio debugger without prompt 
            AttachDebugger();

            // Writes output to Visual Studios output window
            WriteLine("Hello World");
       }
    }
}

What is inside?

There is a series of features this library hopes to provide.

Nuget Nightmares

Source generators run in a unique place and their references don't act the same. If you have a source generator that attempts to reference a NuGet package it will fail to be found at runtime. The reason is the source generators need to have their dll's alongside the running process but that also means that the project the generator is running aginst will to. If you look online the best option is to do this:

<ItemGroup>
    <PackageReference Include="Newtonsoft.Json" Version="13.0.1" GeneratePathProperty="true" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
    <EmbeddedResource Include="$(PKGNewtonsoft_Json)\lib\netstandard2.0\Newtonsoft.Json.dll" Visible="false" />
</ItemGroup>

This MSBuild logic adds a reference to Newtonsoft.Json version 13.0.1 and sets a few attributes. Using GeneratePathProperty="true" will emit the variable PKGNewtonsoft_Json which points at the root of the NuGet package on dis. Using EmbeddedResource we then give the full path to the dll. When the project is compiled the dlls will be embeded as a resource.

This works well but requires a lot of boilerplate. Even worse is this is just for one package. You would need to repeat this for every dependency and any transitive ones as well. This gets out of hand very fast.

Source.Generator foundations automates this all for you. Just add your NuGet references and nothing else

Logging

Source generator run in the background and it can be very hard to debug. If you want to make a log you have to write the files to disk and open to read them.

With this library we leverage the existing Output window and create an entry for each source generator. This is all done by using some Visaul Studio api.

output

Debugging

To be able to debug a source generators one of the suggested methods is to add the following.

static CustomSourceGenerator()
{
    Debugger.Launch();
}

This will popup the following window and you have to select your visual studio instance. Instaed with foundations you can just call a single method and break points work from that point on.

AutoAttach

How it works

SourceGenerator.Foundations is a source generator for source generators. It embedds additional addtional classes into your project to provide all the features above.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

NuGet packages (1)

Showing the top 1 NuGet packages that depend on SourceGenerator.Foundations:

Package Downloads
ResourceIndex.Generator

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.4 172 6/21/2024
2.0.3 156 5/13/2024
2.0.3-PullRequest0018.5 54 5/13/2024
2.0.3-PullRequest0018.4 40 5/13/2024
2.0.3-multi-nuget.4 59 3/14/2024
2.0.3-multi-nuget.1 44 3/14/2024
2.0.3-ci.1 44 4/28/2024
2.0.2 140 3/10/2024
2.0.2-PullRequest0015.4 46 3/10/2024
2.0.2-GeneratorDiagnosticAn... 43 3/10/2024
2.0.2-GeneratorDiagnosticAn... 44 3/10/2024
2.0.2-GeneratorDiagnosticAn... 50 3/10/2024
2.0.2-GeneratorDiagnosticAn... 47 3/10/2024
2.0.2-ci.5 46 3/10/2024
2.0.1 499 2/21/2024
2.0.0 120 2/17/2024
1.5.4-PullRequest0014.4 44 2/17/2024
1.5.4-hoist-pattern.7 52 2/21/2024
1.5.4-hoist-pattern.6 51 2/20/2024
1.5.4-hoist-pattern.5 48 2/19/2024
1.5.4-hoist-pattern.4 47 2/17/2024
1.5.4-hoist-pattern.3 48 2/17/2024
1.5.4-ci.5 47 2/17/2024
1.5.3 111 2/13/2024
1.5.3-ci.1 54 2/13/2024
1.5.2 97 1/31/2024
1.5.2-polyfills.4 122 1/27/2024
1.5.2-polyfills.1 49 1/24/2024
1.5.2-ci.5 47 1/31/2024
1.5.1 92 1/21/2024
1.5.1-rc.1 45 1/21/2024
1.4.1 185 11/17/2023
1.4.0 110 11/17/2023
1.3.1 108 11/16/2023
1.2.5 122 11/13/2023
1.2.4 161 11/12/2023
1.2.3 249 11/2/2023
1.2.1 140 10/29/2023
1.2.0 102 11/12/2023
1.1.3 155 11/6/2023
1.1.1 74 3/7/2023
1.0.0 232 2/17/2023
0.1.0 69 10/26/2022