C
C#3w ago
Nebula

Property setter disappears on `PublishTrimmed`

After publishing my program, the setter to a float property disappears and cannot be found by .GetProperty when using <PublishTrimmed>. The code that accesses the property:
public TransformSequence<T> Create<X>(string property, X to, float duration, Easing easing, string? name, Func<X, X, float, X> interpolation) {
PropertyInfo? propertyInfo = typeof(T).GetProperty(property);
if (propertyInfo == null) throw new InvalidOperationException($"Property {property} does not exist in {typeof(T).Name}");

X a = FutureData.TryGetValue(property, out object? value) ? (X)value : (X)propertyInfo.GetValue(Target)!;

Transform transform = new(t => {
X value = interpolation(a, to, t);
propertyInfo.SetValue(Target, value);
}) {
Name = name ?? property,
Duration = duration,
Easing = EasingHelper.FromEaseType(easing)
};

FutureData[property] = to!;
if (Name == string.Empty) Name = property;

return Append(transform);
}
public TransformSequence<T> Create<X>(string property, X to, float duration, Easing easing, string? name, Func<X, X, float, X> interpolation) {
PropertyInfo? propertyInfo = typeof(T).GetProperty(property);
if (propertyInfo == null) throw new InvalidOperationException($"Property {property} does not exist in {typeof(T).Name}");

X a = FutureData.TryGetValue(property, out object? value) ? (X)value : (X)propertyInfo.GetValue(Target)!;

Transform transform = new(t => {
X value = interpolation(a, to, t);
propertyInfo.SetValue(Target, value);
}) {
Name = name ?? property,
Duration = duration,
Easing = EasingHelper.FromEaseType(easing)
};

FutureData[property] = to!;
if (Name == string.Empty) Name = property;

return Append(transform);
}
The Rotation property:
public float Rotation {
get => _rotation;
set {
if (_rotation == value) return;

_rotation = value % 360;
Invalidate(Invalidation.Geometry);

// Rotation currently does not affect ChildRelativeSizeAxes
// if (Parent?.ChildRelativeSizeAxes != Axes.None) InvalidateParent(Invalidation.DrawSize);
}
}
public float Rotation {
get => _rotation;
set {
if (_rotation == value) return;

_rotation = value % 360;
Invalidate(Invalidation.Geometry);

// Rotation currently does not affect ChildRelativeSizeAxes
// if (Parent?.ChildRelativeSizeAxes != Axes.None) InvalidateParent(Invalidation.DrawSize);
}
}
This Scale property works fine, on the other hand:
public Vector2 Scale {
get => _scale;
set {
if (_scale == value) return;

_scale = Vector2.Max(value, new(float.MinValue));
Invalidate(Invalidation.DrawSize);
Parent?.Invalidate(Invalidation.Layout);
}
}
public Vector2 Scale {
get => _scale;
set {
if (_scale == value) return;

_scale = Vector2.Max(value, new(float.MinValue));
Invalidate(Invalidation.DrawSize);
Parent?.Invalidate(Invalidation.Layout);
}
}
All Vector2 types work fine, and Rotation is the only float property I've tried. Is there a way to still use PublishTrimmed while keeping this functionality? It's likely me just misunderstanding how the publish trimmed parameter works.
11 Replies
Nebula
NebulaOP3w ago
This may help:
Natsu.Mathematics.Transforms.TransformSequence<T>.Create<X>(String, X, Single, Easing, String): 'X' generic argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicProperties' in 'Natsu.Mathematics.Transforms.TransformSequence<T>.Create<X>(String, X, Single, Easing, String, Func<X,X,Single,X>)'. The generic parameter 'X' of 'Natsu.Mathematics.Transforms.TransformSequence<T>.Create<X>(String, X, Single, Easing, String)' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to.


C:\Users\NebulaDev\Documents\natsu\Natsu\Mathematics\Transforms\TransformSequence.cs(122,9): Trim analysis warning IL2090: Natsu.Mathematics.Transforms.TransformSequence<T>.Create<X>(String, X, Single, Easing, String, Func<X,X,Single,X>): 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicProperties', 'DynamicallyAccessedMemberTypes.NonPublicProperties' in call to 'System.Type.GetProperty(String, BindingFlags)'. The generic parameter 'T' of 'Natsu.Mathematics.Transforms.TransformSequence<T>' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to.
Natsu.Mathematics.Transforms.TransformSequence<T>.Create<X>(String, X, Single, Easing, String): 'X' generic argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicProperties' in 'Natsu.Mathematics.Transforms.TransformSequence<T>.Create<X>(String, X, Single, Easing, String, Func<X,X,Single,X>)'. The generic parameter 'X' of 'Natsu.Mathematics.Transforms.TransformSequence<T>.Create<X>(String, X, Single, Easing, String)' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to.


C:\Users\NebulaDev\Documents\natsu\Natsu\Mathematics\Transforms\TransformSequence.cs(122,9): Trim analysis warning IL2090: Natsu.Mathematics.Transforms.TransformSequence<T>.Create<X>(String, X, Single, Easing, String, Func<X,X,Single,X>): 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicProperties', 'DynamicallyAccessedMemberTypes.NonPublicProperties' in call to 'System.Type.GetProperty(String, BindingFlags)'. The generic parameter 'T' of 'Natsu.Mathematics.Transforms.TransformSequence<T>' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to.
Sehra
Sehra3w ago
you need to annotate the X type parameter with [DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicProperties)]
Nebula
NebulaOP3w ago
Alright I'll give that a go, thank you
Sehra
Sehra3w ago
probably also T with what it complains about
Nebula
NebulaOP3w ago
It seems to still be doing it: Natsu.Mathematics.Transforms.TransformSequence<T>.Create<X>(String, X, Single, Easing, String, Func<X,X,Single,X>): 'this' argument does not satisfy 'DynamicallyAccessedMemberTypes.PublicProperties', 'DynamicallyAccessedMemberTypes.NonPublicProperties' in call to 'System.Type.GetProperty(String, BindingFlags)'. The generic parameter 'T' of 'Natsu.Mathematics.Transforms.TransformSequence<T>' does not have matching annotations. The source value must declare at least the same requirements as those declared on the target location it is assigned to. I attached as a screenshot because I keep getting character limits
No description
Nebula
NebulaOP3w ago
Ah alright how do I annotate that on T? it seems I can't do it in the same manner as X
Sehra
Sehra3w ago
where you introduce T, maybe it's up in the containing class
Nebula
NebulaOP3w ago
sorry that was a stupid question haha, that seemed to work but it introduced a lot of warnings for every location that uses T, is there a better way rather than copying that attribute to every reference?
No description
Nebula
NebulaOP3w ago
I might use an alias otherwise
Sehra
Sehra3w ago
don't think there is. check if there is a code fix to do it on whole solution
Nebula
NebulaOP3w ago
alright, thanks a bunch

Did you find this page helpful?