This is sort of a weird question. I have two separate Visual Studio projects running in the same solution. One is a WCF service (essentially the server) that interacts with a database, the other is an ASP.NET project running AngularJS that simply provides an interface for interacting with the service. The reason for this is that the two projects obviously run on different ports, and it would be better if they ran on one.
Is it feasible to combine these into a single project? Does that even make sense? Or do the two projects need to remain separate?