C#/C(managed2unamanged)Visual studio 2015 update 2 , .NetCore Console App 1.0 , not able to debug Native Code Debugging -


i using .net core console app using visual studio 2015 update 2 on windows machine. using package "pack1"(managed code) in console application in turn calls native / c code dll. able step pack1 code, not able step native code.

tried giving symbol path native code pdb file , enabled native , managed code compatibility option,tried putting breakpoint native c source code directly, tried step c code managed code, none of them seem work.

can 1 please me ?

sample project.json file :

{   "version": "1.0.0-*",   "buildoptions": {     "emitentrypoint": true,     "defines": [ "debug" ]   },   "dependencies": {     "microsoft.netcore.app": {       "type": "platform",       "version": "1.0.0-rc2-3002702"     },     "pack1": "1.0.0.0"   },   "frameworks": {     "netcoreapp1.0": {       "imports": "dnxcore50"     }   },   "configurations": {    "debug": {      }   } } 

based on case:

no native code debugging in coreclr console application projects in vs2015?

the specific app doesn't support native debugging in vs ide now. think using "attach process" tool.


Comments