Adding a Use Proposal to a Project - Beginner

I created a C # MVC project and then added a Unit test project to it. Now the structure is as follows:

Decision

|

| _ UnitTest project

|

| _ MyProject

Now, from the Unit test project, I need to pass MyProject, how can I write it,

I wrote the following, but it did not work;

using MyProject.View; 

How can i solve this?

+4
source share
1 answer

Right-click "Links" in the "UnitTest Project" and select "Add Link ...", select another project from this dialog box.

+10
source

Source: https://habr.com/ru/post/1483297/


All Articles