- Solution (sln) file.
- Solution user Options (.suo) file.
- Project configuration file (.vbproj) or .vcproj file
- .aspx, .asmx, .ascx
- .aspx.vb or .aspx.cs - code behind fiels
- globax.asax
- resouce file .resx
- other files .txt, .rpt
- style .css files
- congig file web.config.
- discovery file .disco or .vbdisco
- Project Assembly files (.dll)—All of the code-behind files (.aspx.vb and .aspx.cs) in a project are compiled into a single assembly file that is stored as ProjectName.dll. This project assembly file is placed in the /bin directory of the Web application.
- AssemblyInfo.vb or AssemblyInfo.vb or AssemblyInfo.cs—The AssemblyInfo file is used to write the general information, specifically assembly version and assembly attributes, about the assembly.
Very often while reviewing the code for my team, I will come across a semicolon at the start of JavaScript function as show below ; (function () { 'use strict'; ...and I often wondered what purpose it served. Guess what. It is an insurance to make sure your script works fine when all other scripts are merged together; The leading ; in front of immediately-invoked function expressions (iffe) is there to prevent errors when appending the file during concatenation to a file containing an expression not properly terminated with a ;. So there you go. Now you know what that little semicolon is doing there in your code.
Comments