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:
The Rotation
property:
This Scale
property works fine, on the other hand:
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
This may help:
you need to annotate the X type parameter with
[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicProperties)]
Alright I'll give that a go, thank you
probably also T with what it complains about
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
Ah alright
how do I annotate that on T? it seems I can't do it in the same manner as X
where you introduce T, maybe it's up in the containing class
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?

I might use an alias otherwise
don't think there is. check if there is a code fix to do it on whole solution
alright, thanks a bunch