What is a resolver (specifically in C#) -
There is a question about the new C # (and in general programming) and opponents:
What is the meaning of solving an assembly (ie .dll file)? In fact, I am trying to integrate our custom CRM with the sage and I have been told that before I can join the sage DB, I need to find out a special conference and solve it before I resolve all other relevant assemblies. I know that is unclear but this is a very common question, so I'm hoping someone can help me!
Please note this is in C #.
Resolving an assembly means finding and loading it. If the assembly is not strong, then the steps given are given to resolve it:
- Try loading in the Appbase directory (where the application is hosted)
- Try to load them from the subdirectory of Appbase with the same name of the assembly (like Appbase / Acme / acme.dll)
- Loading from additional directories specified in assembly.exe.config (xcopy deployment) Try
If the assembly is strong, then check the calor The sign is also in GAC and checks whether there are codebase signals for the specified assembly.
Comments
Post a Comment