Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
15answers
14k views

Edit and Continue: “Changes are not allowed when the debugger has been attached to an already running process or the code being debugged was optimized at build or run time”

Even if I create a clean WinForms project, Edit and Continue doesn't work and gives me the error mentioned above. Edit and Continue option is checked in Tools -> Options -> Debugging. ...
14
votes
4answers
7k views

Can't edit and continue when using Visual Studio 2010 on a 64 bit machine, app targets x86

I'm having some problems with Edit and Continue when using Visual Studio 2010 on a Windows 7 64 bit machine. I've ensured the following Edit and Continue is enabled under ...
14
votes
4answers
5k views

“Changes to 64-bit applications are not allowed” when debugging in Visual Studio 2008

I'm using Visual Studio 2008, C#. I try to use edit-and-continue (edit the code while debugging), and get this exception: "Changes to 64-bit applications are not allowed" Why is that? Is there a ...
14
votes
5answers
7k views

How to edit and continue in Visual Studio 2008 and ASP.Net MVC?

I'm trying to get edit-and-continue working with Visual Studio 2008 with an ASP.Net MVC project. I'm running 64-bit, so that adds to the problem. In Configuration Manager, my active solution platform ...
12
votes
9answers
519 views

Avoid or embrace C# constructs which break edit-and-continue?

I develop and maintain a large (500k+ LOC) WinForms app written in C# 2.0. It's multi-user and is currently deployed on about 15 machines. The development of the system is ongoing (can be thought of ...
10
votes
2answers
580 views

Edit and Continue on GDB

I know that E&C is a controversial subject and some say that it encourages a wrong approach to debugging, but still - I think we can agree that there are numerous cases when it is clearly useful - ...
9
votes
1answer
347 views

Can I make 'Edit-and-continue' = true the default for all new web projects in Visual Studio?

When creating a new web project in Visual Studio 2010 I always forget to enable 'Edit and Continue' until it's "too late". (i.e. until I am editing while debugging and wish I was able to continue). ...
8
votes
3answers
1k views

Why can't you edit and continue debugging when there's a Lambda expression in the method?

I've seen it said in other questions that the Linq query syntax compiles to a Lambda. So why can you not do edit-and-continue when there is a Lambda expression in the method, while with query ...
7
votes
3answers
1k views

Is there a way to *completely* disable Edit and Continue?

I was wondering if there was a way to completely lock my code while debugging it within Visual Studio 2008. The code documents lock automatically when running as 64 bit applications, which I greatly ...
4
votes
3answers
2k views

Edit and Continue does not Work in VS 2010 / ASP.Net MVC 2

Although Enable Edit and Continue is checked on the Web tab of my ASP.Net MVC 2 project, I cannot in fact change the source code while running. For example, if I try to edit a controller while paused ...
3
votes
1answer
133 views

Visual Studio 11 Debugger fixes/features/improvements (for C# debugging in particular)?

Sorry for what seems like it's likely covered in a FAQ/blog somewhere, but my Google-fu is apparently weak. :( There's a handful of things that the debugging experience in VS 2010 lacks that seems ...
2
votes
1answer
132 views

Is it possible to Edit and Continue in Visual Studio 2010 without pausing execution?

I recently watched a bit of Notch's Ludum Dare live stream. He uses Eclipse's hotswap feature extensively while he works on his game. (here is a video of what I am referring to ...
1
vote
1answer
147 views

What would get edit and continue working again?

Visual Studio's edit-and-continue feature stopped working at some point again. VisualStudio 2010 sp1 professional. I'm writing a dll with c++ native code. I run the host 32bit executable from the ...
1
vote
1answer
103 views

What makes Edit-and-Continue difficult/impossible for Silverlight? What's the next-best thing?

NOTE: related question from ~2 years ago just confirmed SL3 couldn't do it. Since Silverlight 5 will (AFAICT) still not have edit-and-continue support (even for out-of-browser, again AFAICT), I ...
1
vote
3answers
816 views

ASP.NET Debugging problem

I'm building web sites in Visual Studio 2010. I recently upgraded to a new dev machine running windows 7 64-bit. Now, when I make a change to a webpage, I have to stop debugging, kill cassini, and ...
1
vote
3answers
558 views

VB.net Edit-And-Continue: ignore “unable to apply this change while debugging”

When using VB.Net (2008) and paused in debugging, Edit-And-Continue is a great time-saver. However if you change any module/class-level information (variable, sub/function signature, etc), you get the ...
1
vote
1answer
118 views

LINQ debug time code change… is it possible in vs2008?

is there any ways to accomplish this? it is really annoying having to restart every time.
1
vote
2answers
504 views

Why doesn't Edit & Continue work for me in VS2008 with a legacy C++ win32 project?

If I create a new win32 C++ project in VS2008 I can use Edit & Continue with it just fine, but with this legacy project I'm working with my attempts to use / enable it have failed. Here are ...
0
votes
1answer
92 views

Hotswapping / Edit and continue for C/C++, Linux

I'm looking for an IDE that supports a (Visual Studio's) Edit and continue -like feature. I know Netbeans has it for Java (called hotswapping, Fix and continue), but can not find anything about an ...
0
votes
1answer
128 views

Why does Edit & Continue stop working

I have a large C++ project under VS2008, and use edit & continue quite a bit during debugging. However, sometimes after quite minor changes edit and continue simply stops working. Debug / apply ...
0
votes
2answers
720 views

Edit and Continue in ASP.NET MVC 3 application

Is it possible to Edit and Continue in ASP.NET MVC 3 app using Visual Studio 2010? If so, how can I do that? btw, my OS platform is x86. Edit: when I hit f5 and then try to edit the code I receive ...
0
votes
1answer
164 views

Debugging in Visual Studio 2008 Second level form

I'm using Visual Studio 2008 in developing VB.NET windows application , this application contains MDI_PARENT form and many MDI_CHILDS forms. when i run F5 (start debugging) , and stop in BREAK-POINTS ...
0
votes
0answers
73 views

Edit-and-continue only works on some classes in my VS 2008 project

I have a very strange problem. In my quite large project I have an extensive backend library of classes all belonging to the same Assembly. When I run the code Edit and Continue works fine in all ...