I am currently working on a proof of concept to assess if we can use Roslyn to
- compile a piece of C# code
- generate the appropriate PDB file that can be used to debug the assembly
So far I have been able to
- compile the c sharp code and load it in memory for execution
- create a PDB file
However I am not able to step in the C# code using the PDB file using VS 2013.
Does anyone has a sample code that can generate a PDB file that can be used for debugging?