mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-25 02:57:31 +00:00
refactor: apply default vs transform to xproj
refactor(spa-services): clean code refactor(node-services): clean code, extract classes nto separate files refactor(angular-services): prime cache cleanup
This commit is contained in:
14
src/Microsoft.AspNetCore.NodeServices/NodeServicesOptions.cs
Normal file
14
src/Microsoft.AspNetCore.NodeServices/NodeServicesOptions.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace Microsoft.AspNetCore.NodeServices
|
||||
{
|
||||
public class NodeServicesOptions
|
||||
{
|
||||
public NodeServicesOptions()
|
||||
{
|
||||
HostingModel = NodeHostingModel.Http;
|
||||
}
|
||||
|
||||
public NodeHostingModel HostingModel { get; set; }
|
||||
public string ProjectPath { get; set; }
|
||||
public string[] WatchFileExtensions { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user