Assembling links for a folder in a project

I have a C # project containing the COMMON folder, and I have several classes in the COMMON folder.

Now in project Y; I refer to

using X.Common;

Everything is good so far, intellisense works fine. However, when I create project Y, I get: "The type or namespace name" common "does not exist in the namespace X (do you miss the assembly reference?"

+3
source share
1 answer

In the visual studio, in Project Y. Right-click links, add a link, projects, select Project X. Try again.

+1
source

All Articles