Build Version Increment Add-In Visual Studio
Somehow Visual Studio doesn't come with an option to only auto increment the build version of the AssemblyFileVersion attribute. Sure, by placing an * in the AssemblyVersion attribute and leaving the the AssemblyFileVersion out the compiler will auto generate build versions for both but this is a pa...
[More]
Simple validation in Model View Presenter
Last time I wrote about how to implement simple page by Model View Presenter pattern. Quickly we created form with 2 textboxes, label and button for firing presenter method SaveData. This time let's focus a bit to validation in presenter and co-working your page with validation result. Why ...
[More]