Will Iverson
Will Iverson
That's really interesting. Do you have the full stack trace from the launch failure?
You are getting a build time error....? Huh. That's not what I would expect at all. That's really strange. Interesting that it's not showing up on the GitHub Action runners....
Oh, right. Is the app getting far enough along to generate a debugX.log file in your home directory? By default the template does that to help with debugging these issues...
FYI/FWIW I was able to successfully use CSV parsing with Unity IL2CPP by manually binding instead of using reflection. It was a bit more work but once it was done...
Any update for this that doesn't require adding the exports line?
Ugh. Been there, done that. I built this https://github.com/wiverson/maven-jpackage-template and https://github.com/wiverson/jtoolprovider-plugin and wrote https://changenode.com/articles/fomo-java-modules and I am sick of fighting Java modules. Maven surefire command line config it is! Sigh.
I'm getting this same error with Unity whenever I try to build with ILL2CPP. `InvalidOperationException: No public parameterless constructor found. at CsvHelper.ReflectionHelper.CreateInstanceDelegate (System.Type type, System.Object[] args) [0x00000] in :0 at...
This occurs with both the net45 and netstandard2.0 libs from CsvHelper.12.1.2.nupkg.
So, I have roughly a dozen or so CSV files, which I'm using for configuration of my game (and also eventually i18n/l13n). I was able to get things working by...
This is exactly the kind of distraction from what I should be working on that is total catnip. LOL. What do you think about this? https://codeblog.jonskeet.uk/2008/08/09/making-reflection-fly-and-exploring-delegates/ I found this on...