What version? MVC or Angular, Core or .NET Framework?
I suggest you use NET core.
What features do you specifically refer to may be restricted?
: )
try
node_modules
folderyarn
Did you restore the package?
Yarn
First check if there is any relevant information in the log.
Then the SendObjectAvailabilityMessageAsync
method needs await
?
navigate to root directory of *.Web.Mvc project and run npm run create-bundles command
Before running the project, we need to run a npm task to bundle and minify the CSS and JavaScript files. In order to do that, we can open a command prompt, navigate to root directory of *.Web.Mvc project and run npm run create-bundles command. This command should be run when a new npm package is being added to the solution. Or you can just build your solution and all bundles will be updated automatically.
https://docs.aspnetzero.com/documents/zero/latest/Getting-Started-Core
Abp SettingScopes cannot be added to the new scope
I think you can refer to ABP to implement your own settings management functions.
YourSettingManager
https://github.com/aspnetboilerplate/aspnetboilerplate/blob/e0ded5d8702f389aa1f5947d3446f16aec845287/src/Abp/Configuration/SettingManager.cs#L228
try DisplayName
[DisplayName("Last Name")]
[Required]
public string LastName { get; set; }
see:https://github.com/aspnetboilerplate/aspnetboilerplate/issues/1360