-
-
Notifications
You must be signed in to change notification settings - Fork 665
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[cs] assembly strict/meta support #8347
Comments
Doesn't |
@RealyUniqueName no because @:meta build it into the namespace: namespace a.package.of.haxe {
[assembly: ...] "assembly annotations" needs to be over the namespace. [assembly: ...]
namespace a.package.of.haxe { a hacky solution create a file without package and add keep (it's create a extra c# class, so its very ugly) @:meta('assembly: System.Reflection.AssemblyVersionAttribute("0.0.1")')
@:keep class VersionInfo {} |
Lookuing at C# generator I cannot find anything related. Most likely it's a new feature to implment. |
Working on this! (still need to find more information about |
Haxe supports:
@:strict
and@:meta
Is there any support for
@:assemblyStrict
and@:assemblyMeta
?"assembly annotations" needs to be over the namespace.
...
= the same content as @:strict and @:metaThe text was updated successfully, but these errors were encountered: