***RESOLVED*** [02/03] Releasing (2 things)
ok, i am done making my code and everything and found no bugs whatsoever
first, i want to know how i can change the version #, company name, etc. where can i do this?
second, i have selected release (instead of debug), and in my release folder, i have an empty folder named "temp", "buildinfo.inf", "WindowsApplication1.Form1.resources" and last is my exe file.
What do I do with all of these files so that users can use this on their computer?
Re: [02/03] Releasing (2 things)
Are you using an AssemblyInfo class like in the MS 101 Tutorials? If so just go into it and change the necessary information.
You can add a setup project to your solution to enable you to create a setup installer package where it will package your project files and exe into a msi installer setup file.
Re: [02/03] Releasing (2 things)
Quote:
ok, i am done making my code and everything and found no bugs whatsoever
first, i want to know how i can change the version #, company name, etc. where can i do this?
You can change all this info from the "AssemblyInfo.VB" file
Quote:
second, i have selected release (instead of debug), and in my release folder, i have an empty folder named "temp", "buildinfo.inf", "WindowsApplication1.Form1.resources" and last is my exe file.
VB2002/03 builds both "Debug" and "Release" modes into the "Bin" folder. The temp folder is a subfolder of the "Obj" folder which is temporary as it looks for compiling issues
Re: [02/03] Releasing (2 things)