Reputation: 1372
I followed below steps to include MVC source code from GitHub
"projects": [ "src", "test", "D://Mvcsrc//src" ]
But nothing gets opened in solution explorer. I am using RC1-update1
Upvotes: 2
Views: 393
Reputation: 222017
I recommend you to verify, which version of MVC you downloaded. If you prefer to clone MVC repository, then you should reset the head of the repository to RC1 (by using git checkout 6.0.0-rc1
for example) to work with RC1 sources. You can go to Release or Tags part of the GitHub repository and download 6.0.0-rc1
source directly. After that you can unzip Mvc-6.0.0-rc1.zip
in some directory, like D:\Mvc-6.0.0-rc1
for example, and add either add "C:\\Mvc-6.0.0-rc1\\src"
or "C:/Mvc-6.0.0-rc1/src"
. The project files should be added directly after you save the changes (by Ctrl-S for example) in global.json
.
Upvotes: 1