T4Immutable icon indicating copy to clipboard operation
T4Immutable copied to clipboard

T4Immutable is a T4 template for C# .NET apps that generates code for immutable classes.

Results 7 T4Immutable issues
Sort by recently updated
recently updated
newest added

@xaviergonz Hi, I've just taken over a project which uses this Nuget package extensively and have been experimenting/learning what it's for. I notice you haven't updated the repo for a...

CSProj files have been updated to enable SourceLink in your nuget --- *[This pull request was created with an automated workflow]* I noticed that your repository and Nuget package are...

I created a netstandard 2.0 library that used T4Immutable, and packaged that as a nuget package. Then, I created a new solution with projects that referenced my nuget package. It...

With the following declaration: ```csharp [ImmutableClass(Options = ImmutableClassOptions.IncludeOperatorEquals | ImmutableClassOptions.ExcludeToString | ImmutableClassOptions.ExcludeWith, ConstructorAccessLevel = ConstructorAccessLevel.Internal, BuilderAccessLevel = BuilderAccessLevel.Internal)] public sealed partial class IndicativeIndexRollover { ``` We get the following issue....

In the case of the class, I'd like the generated `With` method to create a new object updating `Price` but not capable of updating 'Id'. Can we decorate the 'Id'...

Hi @xaviergonz, Here is a simple PR with a couple of changes that I made. I wanted to use your project in a Unity3D application which currently requires the full...

I came across your repo while searching for related topic recently. I created a thread on CoreFx asking about developing your own immutable class APIs, but with also a parent/child...