Typescript change and continue visual studio 2015

I am using Visual Studio 2015 CTP5, and during project start I cannot edit typescript, as a result an error warning window appears

--------------------------- Microsoft Visual Studio --------------------------- Edit and Continue Changes are not allowed while code is running. --------------------------- OK --------------------------- 

Change and continue working fine for typescript in VS 2013. Is there an option to enable or workaround for working in VS 2015? Be that as it may, VS15 is too cumbersome to use for typescript development.

Edit: as far as I can tell, at the moment this cannot be fixed and the problem is currently Uservoice

+7
visual-studio visual-studio-2015 typescript
source share
1 answer

So, the only way (or, it seems to me, quasi-workaround) that I found is as follows: Visual Studio lock files during debugging .

They suggest breaking everything during debugging. It really allows me to edit the code and then click on play, resumes the program and allows me to view the changes.

This is not ideal, but a little more convenient than recompiling it all. Still looking for a reliable way to get around this without having to do anything else but save, but now it works fine.

Shortcuts help relieve pain. Ctrl + Alt + Break pauses it, so you can edit, F5 brings you back and starts the server again.

I would rather deal with this than with a compilation error with saving in VS 2013. I hope this is fixed soon.

+1
source share

All Articles