I have a problem with my solution in C#.
Inside the solution I have 2 projects, Project1 and Project2. I have a problem because in Project1 I use functions that are within Project2 so I need to reference those functions from within Project2.
After I build the solution I see in bin/debug folder a dll file of Project2.
How can I use functions from Project2 without creating the dll file?
I tried to right click on the specific reference in Project1 and go to Properties and change "copy local" to "false" and the dll didn't show up in the folder, but when I run the code I get an assembly error. How can I solve this?