SourceGenerator.Foundations 0.1.0

This package has a SemVer 2.0.0 package version: 0.1.0+11.
There is a newer version of this package available.
See the version list below for details.
dotnet add package SourceGenerator.Foundations --version 0.1.0
NuGet\Install-Package SourceGenerator.Foundations -Version 0.1.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="0.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SourceGenerator.Foundations --version 0.1.0
#r "nuget: SourceGenerator.Foundations, 0.1.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=0.1.0

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

SourceGenerator.Foudations

Source Generators are awesome but working with them can be a bit painful. This library is designed to try to smooth out some of the following bumps.

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 embed addtional code to provide all the features above.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

  • .NETStandard 2.0

    • No dependencies.

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