1 , Bin directory
Used to store the results of the compilation, the bin is a binary binary abbreviation, because the original C compiled program files are binary files, it has debug and release two versions, the corresponding folder
For Bin/debug and Bin/release, This folder is the default output path, which can be modified by the output path: Configuration Properties, project properties, and so on.
2 ,. obj
OBJ is an abbreviation for object that holds intermediate temporary files generated during compilation. All of them have debug and release two subdirectories, corresponding to debug version and release version, in. NET, compilation is
Sub-modules, the compilation will be merged into one after completion. DLL or. exe is saved to the bin directory. Because incremental compilation is the default at compile time, which is to recompile only the changed modules, obj saves
Compile results for each module to speed up the compilation. Whether to use incremental compilation
3 , Properties folder
Define the properties of your assembly the project Properties folder typically has only one AssemblyInfo.cs class file, which holds information about the assembly, such as name, version, and so on, which is typically associated with the project Properties panel
Data corresponding, do not need to write manually.
4 , class file
5 , resource file
Some of the resources are stored here and generally do not need to be seen.
6 , . csproj
C # project file, with vs open this file can directly open this project, automatically generated, do not need to see.
7 , . Csproj.user
is a configuration file that is automatically generated, which records information such as the project build path, project startup program, and so on. I don't need to see it.
8 , . Designer.cs
Design files, automatically generated, do not need to see.
9.
. aspx is a Web page file, and the HTML code is written here.
Ten , sln
The solution files that are used in the development environment. It organizes all the elements of one or more projects into a single solution. This file is stored in the parent project directory. The solution file, he was one or more
A collection of. proj (projects).
One , *.sln
(Visual studio.solution) can be organized into a solution by providing the environment with references to the location of projects, project items, and solution items on disk. such as the generation of debug mode, or Release mode, is the general CPU or private, etc. Compile and run directly press F5, as for debugging press F9 insert power off, F10 full line execution, F5,F9,F10 with use.
--------------------------------------------------------------------------------------------------------------- ---------------------
F10 is a step-by-step debugging
F11 is debug-by-statement
Shift+f11 Jump out
--------------------------------------------------------------------------------------------------------------- ---------------------
The specific meaning of a file in a C # project