I have an existing application that is written in ASP.NET MVC with a Silverlight widget embeded in one of the MVC views. The Silverlight widget is in it's own project and communicates with a WCF backend.
My rewrite is in Angular4 using Visual Studio Code. I have made some progress in developing the new SPA application (simple home page with some functionality on it and a detail page achieved with routing). I am exposing the functionality of the WCF service via Web API to provide restful endpoints (so far so good).
The issue that has me stumped is how do I bring the two together. The plan when I took the brief was to replace the div container that embedded the Silverlight widget into the MVC application with the new Angular4 "widget".
I obviously need to do this on my development PC and also on the IIS server I will be deploying to. We are using Visual Studio 2015 as Silverlight is not supported in Visual Studio 2017.
