Natan Lifshitz
Natan Lifshitz
This is a known limitation. I originally developed [branch 0.7](https://github.com/natanfudge/Auto-Using/tree/0.7) that solves this issue by introducing a C# language server. However, this conflicted with my intention of the extension being...
Suggesting project types alongside library types is planned for a nearby release. Currently the plan is to run a program to query the dlls in your project whenever it is...
Lovely answer. The third approach was my initial instinct. I'll try out the first 2 approaches soon. Currently I'm fixing some bugs and reorganizing the code base. [CompletionProvider.ts](https://github.com/natanfudge/Auto-Using/blob/master/src/CompletionProvider.ts) is looking...
[And there it is.](https://github.com/natanfudge/Auto-Using/commit/4533d9fc6476c912b69b0418a9aa889aa1d543f9) Tell me if you want to contribute some code in the next few days.
There’s two problems with this that I see: This requires the game to build and run, and it would be best to not require that. Mixin injects bytecode with odd...
Relevant conversation https://discordapp.com/channels/142425412096491520/626802111455297538/662019200780468265
So, it wouldn't make sense to for the line numbers of the mixin themselves to match in the injected source file, because they need to point to the injecting source...
Sorry for the ignorance, but what is name conforming?
> It sort of is [possible to export before building] but it's desirable to turn off name conforming before doing that, which isn't supported in the current build. So, assuming...
@greenrobot-team Since that does seem like a big issue, I've done some research on it. [This very detailed article](https://medium.com/androiddevelopers/room-kotlin-symbol-processing-24808528a28e) explains how [Room](https://developer.android.com/training/data-storage/room) (very similar to ObjectBox!) implemented KSP support while...