What is difference between Project Application and Web Application in .Net ?
As you can see in the above pic there is two type of option Visual Studio provide us to develop any application. So what is the difference between them?. Project: When we choose Project option for our application then that means: The project will be compiled and run by Visual Studio only. The project can be divided into multiple subprojects so that multiple developers can work simultaneously and later on these project can be merged into the single project. Every subproject will have its dlls. When we publish any project the published bin folder contains individual dlls for all subprojects. Web Site: When we choose the Web Site option for our application then that means: The project will be compiled by Visual Studio and run by VS as well as by IIS if you configure the virtual directory. The project cannot be divided into multiple subprojects. If you have taken the references of others project then after publishing that website will create only one dll fo...