Hi friends..
we all faced the problem conflict version of assembly.. what the solution for that issuse?
Side-By_side Execution ---------------------------- Side-by-side execution is the ability to install multiple versions of code so that an application can choose which version of the common language runtime or of a component it uses. Subsequent installations of other versions of the runtime, an application, or a component will not affect applications already installed
You can install and run multiple versions of the .NET Framework on a computer. Currently there are three versions of the .NET Framework: version 1.0, version 1.1, and version 2.0 The three .NET Framework versions can be installed in any order.
Once you have created an application or component you intend to run in side-by-side execution, you must decide how to update and service it. Because new versions of the runtime will be released and run in side-by-side execution, you must decide how to manage your application or component in this environment. In addition, you should plan how you intend to service your application or component with updates either by using in-place patches (thus replacing code), or by allowing multiple versions of the code.
The version attribute string must match the installation folder name for the specified version of the .NET Framework. This string is not interpreted.
If the element is not present in the application configuration file, the version of the runtime used to build the application is used.
The element should be used by all applications built using version 1.1 or later of the runtime. Applications built to support only version 1.0 of the runtime must use the element.
|
| Author: Mahesh Raj 07 Jun 2008 | Member Level: Gold Points : 1 |
This is very good information,Continue posting such useful articles.
|
| Author: John Fernandez 08 Jun 2008 | Member Level: Gold Points : 1 |
Very well written Article.Thanks for sharing this information.
|