Home > Software design >  Can I debug dotnet dll in Unity using Visual Studio with source project?
Can I debug dotnet dll in Unity using Visual Studio with source project?

Time:09-29

I have access to dotnet project and dll that is built from it. The dll is placed in Unity Assets and the scripts inside it is used in components. Is there a way to debug these scripts?

CodePudding user response:

Found solution. Need to put pdb file along with dll and then attach unity debugger.

  • Related