Pranav K
Pranav K
We determine the physical path for files using [`HostingEnvironment.MapPath`](https://github.com/RazorGenerator/RazorGenerator/blob/master/RazorGenerator.Mvc/PrecompiledMvcEngine.cs#L184). I'm not entirely sure what it would take to map it back to the file in the other project. If you...
Would a single location work (instead of a set of locations)? Usually precompilation points to a single project so you shouldn't need more than one directories here.
Fair enough, what you had earlier should work.
Views in a separate assembly wouldn't work. The view engine has no idea where your app is located to cause the refresh.
```diff - Func streamFactory +Func writeHttpResponseStreamAsync, ``` or something like that. I think we'd spoken about this API when reviewing the `Results` type but left it alone at that time...
API review: We decided to add a few more overloads during review. ```diff public class Results { + public IResult Stream( + Func streamWriterCallback, + string? contentType = null, +...
@SteveSandersonMS this looks like a follow up to https://github.com/dotnet/aspnetcore/pull/40234. I'll let you handle it.
MVC generally does not expect application parts to change once the app is initialized. This PR effectively allows that, so it is opening up a whole new can of worms....
@javiercn could you have a look?
As part of .NET 6, we have a story for using Blazor apps within a WebView. You could consider using that as a template for your issue here, but we...