woodtluk
woodtluk

Reputation: 963

Visual Studio 2012 Debugging multiple Projects

I have multiple Projects in my VS2012 Solution.

One of them (C#) uses assemblies of another Project (C++/CLI).

I can debug the C# project. But I can't set any breakpoints in my C++/CLI project in code that is called in the C# project.

I checked that the debugging information is created.

Any suggestions?

Upvotes: 0

Views: 140

Answers (1)

The Forest And The Trees
The Forest And The Trees

Reputation: 1866

Have you enabled Native Code Debugging?

Try going to Project > Properties > Debug and tick 'Enable Native Code Debugging', and then save.

Upvotes: 1

Related Questions