Home > front end >  Devexpress .dll files are not coming to references
Devexpress .dll files are not coming to references

Time:05-06

I pulled new a project from Github on Visual Studio 2019 Pro. It's my new solution and my colleagues developed the project with Devexpress v21.2. Firstly, I installed trail setup but .dll files are not coming to project. How can I fix it? Also I checked the this folder: C:\Program Files (x86)\DevExpress 21.2\Components\Bin\Framework All .dll files there are, but they aren't coming to project. You can find the error below;

enter image description here

CodePudding user response:

Try repairing devexpress component from interface.

CodePudding user response:

When you install the DevExpress Components installer, all the references are placed in the GAC. In the csproj project file, the references are created by the strong name of the assembly. You can examine the location of the actual resolved assembly in Visual Studio in the properties window, usually by pressing F4. If the assembly can't be located, the path is empty.

You can fix the reference by adding the Tag with the correct path in the csproj file or by using the Add Reference dialog of Visual Studio.

  • Related