Mithun Pattankar
Mithun Pattankar

Reputation: 1372

Added projects in Global.json does not reflect in Solution Explorer

I followed below steps to include MVC source code from GitHub

  1. Cloned MVC project from GitHub
  2. Created sample MVC core app using VS 2015 IDE
  3. Open Global.json file, added entry "projects": [ "src", "test", "D://Mvcsrc//src" ]
  4. The projects in cloned repo should open all projects in solution explorer as per Global.json functionality

But nothing gets opened in solution explorer. I am using RC1-update1

Upvotes: 2

Views: 393

Answers (1)

Oleg
Oleg

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

Related Questions