What are the file generated by Visual studio.NET

  • Thread starter Thread starter Dara Kok
  • Start date Start date
D

Dara Kok

As a new comer to Visual Studio.Net. There are so many
thing that i want to ask about it.

One of the thing that i want to ask is:

When i create a Windows form project using VB
language, there are various files created with various
extension. So what are these files ?

Please give me some ideas.
Thanks so much,

Dara
 
The most basic ones:

..sln - the solution file
..vbproj - the project file itself
..vb - code file, contains source code in VB .NET
..resx - XML resource file
..xsd - XML schema file, usually contains schemas for typed data sets
 
so what about *.config ? what is this file ?

and after i have compiled the app and if i want to run the final app on
another computer so what file do i need to copy ? only the the *.exe or
some other files that i need to copy ?

Thanks,
 
The *.config file is a configuration file for the application. You should
deploy it as well as the *.exe file.
 
Back
Top