Files
JavaScriptServices/src/Microsoft.AspNetCore.NodeServices/NodeServicesOptions.cs

14 lines
385 B
C#

namespace Microsoft.AspNetCore.NodeServices
{
public class NodeServicesOptions
{
public NodeServicesOptions()
{
HostingModel = Configuration.DefaultNodeHostingModel;
}
public NodeHostingModel HostingModel { get; set; }
public string ProjectPath { get; set; }
public string[] WatchFileExtensions { get; set; }
}
}