Switch between VS code and VS 2015

I am one developer starting an ASP.NET Core MVC project with Angular 2. I used the Steve Sanderson VS Angular 2 Template , which works well in Visual Studio 2015. So far I have been developing the structure and my understanding of ASP.Net Core, Entity Framework Core, Identity, WebPack, NPM, etc. and the work in VS 2015 was great.

Now I’m going to study and develop the client part of the project, which in places will include Angular 2. Already now I find VS 2015 a little awkward and would like to try Visual Studio Code.

Is it possible to switch between two in one project? It would be great to develop Angular components in VS Code and return to VS 2015 for any C # work. Writing code in VS Code I assume that everything will be fine, but what about the debugging / web package part?

Any experience or suggestions are greatly appreciated. Thank.

+4
source share
1 answer

I have successfully configured the Visual Studio 2015+ ASP.NET project on VSCode.

I created a gulpfile file that handles the assembly for me:

  • It starts an instance of IISExpress.
  • Refresh my browser when changing the razor code .
  • And automatically rebuild my application when changing the code in C #.

gulpfile Github

, VSCode Visual Studio: , Visual Studio.

0

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


All Articles