vote up 3 vote down star
1

I'm wondering if there is something like Hotswap/HotDelpoy/JRebel (known from Java World) in .NET Desktop Applications (no stateless webapps)?

As an example you change a functionality in the IDE while the Program is Running and the changes are instantly reflected in the running app

Do .NET Programmer need to restart the app on every change to validate it?

flag

57% accept rate
1  
For the complexity involved in updating a running application - is it not sufficient to give the user a visual indication that an update is available and simply have them restart the application? A clickonce deployment makes this a very simple and feasible approach. – bnkdev Nov 4 at 22:12

4 Answers

vote up 1 vote down check

No, when you hit a break point you are free to modify the code. When you continue the code will be re-compiled.

I believe that the marketing term for this is "Edit and Continue" (and of course only applies to Visual Studio).

link|flag
This is only true for certain edits. Some do require you to stop and restart the application. – ChrisF Nov 4 at 22:08
That's true, I just haven't hit that myself as I tend to only change minor things while debugging. – Ed Swangren Nov 4 at 22:42
vote up 1 vote down

As others have mentioned, the feature you are likely looking for is "Edit and Continue". It was added in VS2005 and has been supported since, however there are some scenarios where it won't work:

  • Can't use it to debug 64-bit applications
  • Can't edit & continue with changes to classes that have generic parameters
  • Can't edit & continue with changes to methods that have anonymous methods or lambda expressions within them
  • Probably a couple other cases
link|flag
vote up 0 vote down

You can do something similar to a hotswap or upgrade if your desktop application sets up multiple application domains (see System.AppDomain). Then each application domain can be hotswaped or upgraded without requiring a restart of your application. However, you will have to unload and load the AppDomain again.

link|flag
vote up 0 vote down

Look at the System.AddIn namespace.

Or, for updating an entire app, ClickOnce deployment.

Edit...

Hmm... re-reading and it sounds like you're talking about while still debugging. In that case, it's called "Edit and Continue".

link|flag
i'm not debugging;) just wondered if the .NET World have similar Problems as the Java Guys. – Martin Dürrmeier Nov 4 at 22:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.