Endowing utility applications with "auto-update" capability seems like basic good manners these days.
I'm thinking of apps like Reflector or Paint.NET, that proactively tell you "hey, there's a newer release available. Wanna download it?"
Q: Does anyone know of a common framework that can be used by apps that come from Codeplex projects, to alert the user if there is a newer release, and optionally download and install that newer release directly from CodePlex?
Obviously there's ClickOnce, and the Updater Block, and I've written utility classes for doing this myself, for winforms and WPF, and other people have written similar things, but all these require the app publisher to publish the app outside of Codeplex, in order for the auto-update to work. What I'm imagining is something that just downloads directly from codeplex.
EDIT
I can imagine such a framework might impose a structure on how the app is published to codeplex. It may require a "manifest.xml" to be published with each release, and inside that manifest file might be a app version, timestamp, notes on the release, URL to the latest binary download, and so on.
It seems like someone would have built this already.