What are the deployment features of the .NET Framework?The following features make the deployment of the application of the .NET framework easier:
- Isolation of applications and elimination of DLL conflicts - Components of the deployed application are private by default. - The features also include controlled sharing of the code. - Side-by-side versioning feature is used when one has to choose between multiple versions. - XCOPY deployment and replication feature provides self-descriptive applications which can be deployed without the registry entries or dependencies. - On-the-fly updates feature provisions for the updating of the DLLs of the remote computers. - The features like advertising, publishing, repairing, and install-on-demand are also available during deployment of an application. - Enterprise deployment provides ease of software distribution. - Partially trusted code feature is used by code based identification.
|