we need to have a C# application I've written perform an automatic update of one of its main DLLs. The idea is when the .exe launches, it first checks the internet for an update - then downloads that update
once the download is complete we plan on performing a signature check on the DLL before executing
I'm new to the mechanics of .NET assembly signing, especially when it comes to versioned assemblies (going from version 1.0 to version 1.1)
does .NET offer anything that can help me? How do I correctly work within the constraints of strong naming? (can I?)
I'm hoping for guidance and technique in this question, more than API's and the mechanics