Open
Description
When a file wants helper methods:
[GenerateImmutable(DefineWithMethodsPerProperty = true)]
public partial class X
{
private readonly ImmutableList<int> values;
}
And that file does not have this line:
using ImmutableObjectGraph;
The generated code won't compile because extension method syntax is used that assumes that is present.
Similar to #104