what is the solution in asp net explain its architecture

What is the solution file in asp.net explain its architecture:

A solution is a structure for organizing projects in Visual Studio. The solution maintains the state information for projects in .sln (text-based, shared) and .suo (binary, user-specific solution options) files. For further information on .suo files, see Solution User Options (.Suo) File.

the solution file in asp net:

If your VSPackage is loaded as a result of being referenced in the .sln file, the environment calls ReadSolutionProps to read in the .sln file.
The .sln file contains text-based information the environment uses to find and load the name-value parameters for the persisted data and the project VSPackages it references.
When a user opens a solution, the environment cycles through the preSolution, Project, and postSolution information in the .sln file to load the solution, projects within the solution, and any persisted information attached to the solution.
Each project's file contains additional information read by the environment to populate the hierarchy with that project's items.

Comments

Popular posts from this blog