asp.net project catalog description

Bin directory used to store the results compiled, bin binary binrary abbreviation, because the original C compiler program files are binary files, which have Debug and Release in two versions, the corresponding folder is bin / Debug and bin / Release, this folder is the default output path, we can: project properties -> configuration properties -> output path to modify.
  object obj is the abbreviation for the intermediate storage of the temporary files generated during compilation. Which has debug and release two subdirectories, corresponding debug and release versions of the .NET, the compiler is a sub-module after the completion of the entire compilation will be merged into one .DLL or .EXE saved to the bin directory. Because the default is incremental compilation, that is, only recompile the changed modules each compilation, obj save and compile the results of each module, used to speed up the compilation speed. Whether to adopt an incremental compiler, you can: Project Properties -> Configuration Properties -> Advanced -> incremental compilation set.
  PRoperties folder attributes define your assembly project properties generally only one folder AssemblyInfo.cs class file for information stored assemblies, such as name, version, etc., corresponding to the data of these information and general project properties panel, no written manually.
  .cs class file. Source code is written here, mainly to see the code here.
  .resx resource file, some resources stored here, generally do not need to see.
  .csproj C # project file, open the file with the VS can directly open the project, automatically generated, you do not need to see.
  .csproj.user is a configuration file, automatically generated, the project will generate a record path, information project started procedures. You do not need to see.
  .Designer.cs design documents, automatically generated, do not need to see.
  .aspx page document is, HTML code is written in here.
  sln: Solution files used in the development environment. It all elements of one or more items into a single organization solutions. A collection of the parent project directory file storage solutions to resolve this file, he is one or more .proj (projects)
  * .sln: (Visual Studio.Solution) in the project, project item by item and solutions for the environments reference location on the disk, you can organize them into solutions.
  For example Debug mode is generated, or Release mode, a special or general-purpose CPU or the like

Reproduced in: https: //www.cnblogs.com/Alenliu/p/5037500.html

Guess you like

Origin blog.csdn.net/weixin_34115824/article/details/93470078