Added ability for Runtime and RenderMode to be set per Site - enabling the framework to support multiple hosting models concurrently in the same installation. Fixed WebAssembly Prerendering issue (this also resolved the issue where the component taghelper was not passing parameters correctly to the app when running on WebAssembly). Fix #1702 - remove web,config from upgrade package.
This commit is contained in:
@ -58,6 +58,16 @@ namespace Oqtane.Models
|
||||
/// </summary>
|
||||
public string SiteGuid { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The hosting model for the site (ie. Server or WebAssembly ).
|
||||
/// </summary>
|
||||
public string Runtime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The render mode for the site (ie. Server, ServerPrerendered, WebAssembly, WebAssemblyPrerendered ).
|
||||
/// </summary>
|
||||
public string RenderMode { get; set; }
|
||||
|
||||
#region IAuditable Properties
|
||||
|
||||
/// <inheritdoc/>
|
||||
|
Reference in New Issue
Block a user