AskPLYINFO.VB file:
AssemblyTitle Product Description AssemblyDescription, AssemblyCompany AssemblyProduct Product Name AssemblyCopyright Copyright AssemblyTrademark Trademark
In Visual Basic 6.0, set the Major, Minor, and Revision properties of the app object to control the version of the application. For example, set the Major to 1, set the minor to 2 and set the version number generated by REVISION to 3 to 1.2.0.3.
In Visual Basic .NET, the version number property is replaced with the AssemblyVersion property, which includes four parts: Major, Minor, Revision and Build. For the above example, the resulting version number will be 1.2.3.x, where x is the internal version number, which is incremented by each generator set.
When the application is upgraded from Visual Basic 6.0, only Major and Minor properties are upgraded; Visual Basic .NET assigns a new value for Revision and Build property