I am using visual studio 2015 preview.
My solution structure is similar to
/Solution Dummy.sln /src /config /app Library1.kproj /Web.kproj /db /tests unitTests.kproj
My global.json file is as follows
{ "sources": [ "src" ] }
In my "web project" there was successfully a link to "library project". But my unitTests project does not see a link to the "library project". Whenever I add a link ... it mistakenly solves:
C: \ Users \ user_account \ .kpm \ packages \ Library1 \ 1.0.0
It is not right.
I tried several options ... no one worked. Does global.json support folder paths?
{ "sources": [ "src", ".\tests", ".\app" ] }
Any solutions other than changing the structure of the solution?
Jalal el-shaer
source share