Issue
I am trying to build a CRUD application with ASP.NET MVC in Visual Studio with Angular and want to run the complete project only with VS Code, not with Visual Studio. Any solution for this purpose?
Solution
(c#) Open the the folder with your .csproj file in your VS Code.
dotnet restoredotnet runordotnet watch
For more: https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-run
(angular) Open the the folder with your package.json file in another VS Code instance (or the same and open a new terminal).
npm installng serve
For more: https://cli.angular.io/
You should have angular cli and dotnet installed on your machine.
Answered By - StPaulis
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.