Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![CI](https://github.com/mattwar/UnionTypes.Toolkit/actions/workflows/ci.yml/badge.svg)](https://github.com/mattwar/UnionTypes.Toolkit/actions/workflows/ci.yml)
[![GitHub release](https://img.shields.io/github/v/release/mattwar/UnionTypes.Toolkit)](https://github.com/mattwar/UnionTypes.Toolkit/releases/latest)
[![NuGet](https://img.shields.io/nuget/v/UnionTypes.Toolkit.Generators)](https://www.nuget.org/packages/UnionTypes.Toolkit.Generators)
[![NuGet](https://img.shields.io/nuget/v/UnionTypes.Toolkit.Generator)](https://www.nuget.org/packages/UnionTypes.Toolkit.Generator)

This repo contains a library implementing some common custom union types compatible with the C# union type feature and a source generator that generates custom C# union types that uses techniques to avoid boxing and minimize memory footprint.

Expand All @@ -21,7 +21,7 @@ It currently includes implementations of Option, Result and a family of generic
*This library is not yet published to NuGet, but can be accessed from releases on GitHub.*


## The UnionTypes.Toolkit.Generators Library
## The UnionTypes.Toolkit.Generator Library

This library implements a C# source generator for generating non-boxing custom union types compatible with the C# union types feature. It may contain additional generators in the future.

Expand All @@ -31,7 +31,7 @@ The generator is purely standalone; the generated union source does not depend o

The generator is available as a nuget package, or can be accessed from release builds here on GitHub.

### [Download from Nuget Here](https://www.nuget.org/packages/UnionTypes.Toolkit.Generators)
### [Download from Nuget Here](https://www.nuget.org/packages/UnionTypes.Toolkit.Generator)


## Declaring a Non-Boxing Custom Union Type
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<PropertyGroup>
<PackageId>UnionTypes.Toolkit.Generators</PackageId>
<PackageId>UnionTypes.Toolkit.Generator</PackageId>
<PackageVersion>0.0.0</PackageVersion>
<Authors>Matt Warren</Authors>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
Expand Down
Loading