gomasch Development Notes

Donnerstag, April 24, 2008

Random Links

 Cool Client Stuff - Client Settings FAQ

Have a boolean setting called CallUpgrade and give it a default value of true. When your app starts up, you can do something like:
if (Properties.Settings.Value.CallUpgrade) {
      Properties.Settings.Value.Upgrade();
      Properties.Settings.Value.CallUpgrade = false;
  }

Note: My.Settings.Upgrade doesn't upgrade?

* Solution * After knowing how My.Settings.Upgrade() works, we can find that making exe assembly as strong named assembly is one solution to this problem.

Continuous Integration Server:

martin schmidt 14:29

0 Comments:

Add a comment