2 implementations of CompileAsync
Microsoft.AspNetCore.Mvc.Razor (1)
Compilation\DefaultViewCompiler.cs (1)
88public Task<CompiledViewDescriptor> CompileAsync(string relativePath)
Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation (1)
RuntimeViewCompiler.cs (1)
85public Task<CompiledViewDescriptor> CompileAsync(string relativePath)
6 references to CompileAsync
Microsoft.AspNetCore.Mvc.Razor (1)
Compilation\DefaultRazorPageFactoryProvider.cs (1)
38var compileTask = Compiler.CompileAsync(relativePath);
Microsoft.AspNetCore.Mvc.Razor.Test (3)
Compilation\DefaultRazorPageFactoryProviderTest.cs (3)
29.Setup(f => f.CompileAsync(It.IsAny<string>())) 60.Setup(f => f.CompileAsync(It.IsAny<string>())) 86.Setup(f => f.CompileAsync(It.IsAny<string>()))
Microsoft.AspNetCore.Mvc.RazorPages (1)
Infrastructure\DefaultPageLoader.cs (1)
62var viewDescriptor = await Compiler.CompileAsync(actionDescriptor.RelativePath);
Microsoft.AspNetCore.Mvc.RazorPages.Test (1)
Infrastructure\DefaultPageLoaderTest.cs (1)
360compiler.Setup(c => c.CompileAsync(It.IsAny<string>()))