![]() |
|
|
|||||||
![]() |
MCSD - Interview Questions Feb 22, 2006 |
|
|
Thread Tools | Search this Thread |
|
|
#1 |
|
We have two version of the same assembly in GAC? I want my client to make choice of which assembly to choose? You need to specify "bindingRedirect" in your config file. For instance in the below case "ClassLibraryVersion" has two versions "1.1.1830.10493" and "1.0.1830.10461" from which "1.1.1830.10493" is the recent version. But using the bindingRedirect we can specify saying "1.0.1830.10461" is the new version. So the client will not use "1.1.1830.10493". <configuration> <runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <dependentAssembly> <assemblyIdentity name="ClassLibraryVersion" publicKeyToken="b035c4774706cc72" culture="neutral"/> <bindingRedirect oldVersion= "1.1.1830.10493" newVersion= "1.0.1830.10461"/> </dependentAssembly> </assemblyBinding> </runtime> </configuration> Full Interview Questions for .NET and SQL Server http://www.geocities.com/dotnetinterviews/ Help the community to make job search easier mail your questions to Looking for a onsite job mail your resumes at Jobs |
|
|
![]() |
| Thread Tools | Search this Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| 70-536 questions and time limit for exam? type of questions? | gravz84 | MCTS | 2 | 11-22-2007 07:57 PM |
| 70-536 questions and time limit for exam? type of questions? | gravz84 | MCTS | 0 | 11-13-2007 05:44 PM |
| Java Interview Questions | steve.steve85 | Software | 0 | 09-28-2007 05:20 PM |
| Top Interview Questions | steve.steve85 | General Help Related Topics | 0 | 09-28-2007 05:19 PM |
| CTS - 2006 :: Interview with Lite-On's Jelmer Veldman | Silverstrand | Front Page News | 0 | 05-17-2006 01:32 PM |