You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unfortunately the instructions for .net core don't work with 3+. This is installed on a blank .net core MVC web project.
In the startup.cs you get the error
'RazorViewEngineOptions' does not contain a definition for 'FileProviders'
On changing it to MvcRazorRuntimeCompilationOptions for .net core 3+ it works but you then need Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation package
Then when you run it you get "The partial view 'FormFactory/Form.Property' was not found."
If you then install the FormTemplate package you get swamped with files in the root of the project (as per issue #98) and the following error:
'DateAttribute' is a type, which is not valid in the given context C\packages\formfactory.templates\5.0.71\contentFiles\any\netstandard1.6\Cell.System.DateTime.cshtml
Cheers
The text was updated successfully, but these errors were encountered:
Hi,
Unfortunately the instructions for .net core don't work with 3+. This is installed on a blank .net core MVC web project.
In the startup.cs you get the error
'RazorViewEngineOptions' does not contain a definition for 'FileProviders'
On changing it to MvcRazorRuntimeCompilationOptions for .net core 3+ it works but you then need Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation package
Then when you run it you get "The partial view 'FormFactory/Form.Property' was not found."
If you then install the FormTemplate package you get swamped with files in the root of the project (as per issue #98) and the following error:
'DateAttribute' is a type, which is not valid in the given context C\packages\formfactory.templates\5.0.71\contentFiles\any\netstandard1.6\Cell.System.DateTime.cshtml
Cheers
The text was updated successfully, but these errors were encountered: