I followed the readme and I got to the point where I wanted to debug my plugin. I'm using visual studio in Windows so I
- Downloaded the exe from the jellyfin website
- Added the exe to my plugin's project
- Built my plugin in Debug mode and copied the output to the jellyfin plugin folder
- Set the exe as the startup project and started debugging.
Unfortunately, this did not load any debugging symbols in my plugin, and no break points were getting hit.
I managed to fix this though:
- I right-clicked the jellyfin project in VS and went to Properties
- Changed the Debugger Type from
Auto to Mixed (.NET Core, .NET 5+)
After restarting my debug session I could hit my breakpoints.
Has anyone else had to do this? I'm wondering if this should be added to the README or if it was a problem specific to me.
I followed the readme and I got to the point where I wanted to debug my plugin. I'm using visual studio in Windows so I
Unfortunately, this did not load any debugging symbols in my plugin, and no break points were getting hit.
I managed to fix this though:
AutotoMixed (.NET Core, .NET 5+)After restarting my debug session I could hit my breakpoints.
Has anyone else had to do this? I'm wondering if this should be added to the README or if it was a problem specific to me.