Rename BuildOnDemand to BootModuleBuilder
This commit is contained in:
Родитель
c8b337ebaa
Коммит
a16343681b
|
@ -54,7 +54,7 @@ namespace Microsoft.AspNetCore.Builder
|
||||||
}
|
}
|
||||||
|
|
||||||
// If we're building on demand, start that process in the background now
|
// If we're building on demand, start that process in the background now
|
||||||
var buildOnDemandTask = options.BuildOnDemand?.Build(spaBuilder);
|
var buildOnDemandTask = options.BootModuleBuilder?.Build(spaBuilder);
|
||||||
|
|
||||||
// Get all the necessary context info that will be used for each prerendering call
|
// Get all the necessary context info that will be used for each prerendering call
|
||||||
var applicationBuilder = spaBuilder.ApplicationBuilder;
|
var applicationBuilder = spaBuilder.ApplicationBuilder;
|
||||||
|
|
|
@ -21,7 +21,7 @@ namespace Microsoft.AspNetCore.Builder
|
||||||
/// file automatically when the application runs. This property should be left as <c>null</c> in
|
/// file automatically when the application runs. This property should be left as <c>null</c> in
|
||||||
/// production applications.
|
/// production applications.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public ISpaPrerendererBuilder BuildOnDemand { get; set; }
|
public ISpaPrerendererBuilder BootModuleBuilder { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the path, relative to your application root, of the JavaScript file
|
/// Gets or sets the path, relative to your application root, of the JavaScript file
|
||||||
|
|
Загрузка…
Ссылка в новой задаче