What is the advantage of packaging over xcopy in .NET? - .NET Framework

What is the advantage of packaging over xcopy in .NET?

The most trivial technique to publish a website is to simply copy your web application files to the production server and create a virtual directory there through xcopy command. With packaging it creates a self executable MSI which is very easy and convenient to deploy and install. This allows the end users to install a web application with ease. You could also include custom license needs, agreements, registry entries and other custom tasks such as installation folder etc for ease of the end users. The MSI can also be rolled out to many computers at once by the administrator which is a very big advantage.
25 .NET Basic Interview Questions and Answers
.NET Basic questions and answers - the section carries questions such as Difference between Namespace and Assembly, Explain the concept of strong names., GAC, What is a Satellite assembly?, How do you install assembly to the Global Assembly Cache? etc.
Define .Net Assembly - .Net Assembly
.Net Assembly - An Assembly is a collection, either an executable (.exe) or a dynamic link library (.dll), that forms a logical unit of functionality and built to efficiently work together...
What does an assembly contain? - .Net Assembly
.Net Assembly - An assembly contains following information: Assembly manifest: Information about the assembly.....
Post your comment