Hello, I'm using this awesome library to integrate some C# code to handle data interactions in my tauri app and it would be really great to have a possibility to debug my code.
Backstory
I created a tauri project and went through the setup guide from readme, so finally I got a C# module, that was working as expected.
Jump to the problem
I wanted to debug my code via Visual Studio -> Debug -> Attach to process but I didn't find my dll there.
No symbols are loaded from my implementation of TauriPlugIn.dll since it is being loaded dynamically in TauriDotnetBridge.Composer.
Possible solutions?
Perhaps it is possible to load assemblies with their pdb when in debug mode, but I'm not sure about it.
Hello, I'm using this awesome library to integrate some C# code to handle data interactions in my tauri app and it would be really great to have a possibility to debug my code.
Backstory
I created a tauri project and went through the setup guide from readme, so finally I got a C# module, that was working as expected.
Jump to the problem
I wanted to debug my code via
Visual Studio -> Debug -> Attach to process
but I didn't find my dll there.No symbols are loaded from my implementation of TauriPlugIn.dll since it is being loaded dynamically in
TauriDotnetBridge.Composer
.Possible solutions?
Perhaps it is possible to load assemblies with their pdb when in debug mode, but I'm not sure about it.
May be helpful
Here I found kind of similar problem: https://github.com/Samsung/netcoredbg/issues/91
PS
I may be missing something and there is already a better solution to this problem, so I'll be thankful for your help :)