Gavin Ray
Gavin Ray
How do you continue down the chain of relationships with that form? Say I wanted to go from `artists -> albums -> tracks`, with a `limit` at each level? With...
Here's the output of running the command if it's useful: https://gist.github.com/GavinRay97/d0cff88e9fe39f0b3bf9997233d143f9
> That looks like a bug for sure, it's for some reason going through a C# only code path, even though it's set up for C++/CLI. > > Can you...
**EDIT:** This is probably because I have the solution built from the docs using the "release" mode suggested. I'll reclone the project and run the build process to generate a...
So I tried also to use a linked project/solution dependency on `CppSharp.Gen`, and I get the same error. I can see that the `.dll` is in the folder that it's...
> Make sure that `CppSharp.CppParser.dll` is inside your bin folder next to other managed DLLs. > It may not be automatically copied by VS. I apologize for being quite likely...
@blockspacer Hey thank you for this, it's incredibly useful. And the docs are thorough -- Much appreciated!
> it might be feasible without big effort, but I doubt it's that easy. These things never are, are they? ;^) Thank you for the reply! I will dig into...
This appears to actually be an issue with MSVC -- not even `-help` command works. The entire CLI parsing is completely borked. - _[llvm] llvm-tblgen.exe fails when building LLVM_ -...
For historical purposes/anyone else facing issues, I've managed to compile it successfully with: ```ps1 # Source ENV vars for cl.exe and build environment set VSCMD_DEBUG=2 "C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\Common7\Tools\VsDevCmd.bat"...