I am trying to add BlogEngine.NET(web) to my existing MVC5 project (which is running as an azure website) partly based on these instructions. I have downloaded/extracted the entire web project folder and included it as a folder to my existing MVC Project.
My controller has the below code
public ActionResult Blog()
{
var path = Server.MapPath("~/BlogEngine/default");
return View(path);
}
But, I receive the error:
....BlogEngine\default' or its master was not found or no view engine supports the searched locations.
by reading this, I understand why this error occurs. I just want some pointers on how to add the Blog engine to my existing project.
EDIT:
this is exactly what I want to achieve, but azure is not helping(the whole point of me choosing to use azure websites instead of AzureVMs is to shy away from the responsibility of keeping that VM up and running), so looking at the other options at hand, like tweaking my MVC.
