I'm working on a WPF application that needs to populate HTML templates and save them to the disk.
Ideally I could use an MVC project to do this, e.g. define a View and pass a ViewModel to it, and then write the output to a FileStream rather than the Response stream.
Unfortunately there's no guarantee of internet access so I can't host it on a remote server, and there's no guarantee of a local web server either, so I have nowhere to host it.
Is there any way for me to do this in WPF or to get an MVC project (that I can reference from the WPF solution) to work outside the context of a web server?
Or should I take a different approach?