I am using Visual Studio 2019, with .NET Framework 4.8, creating ASP.NET MVC 5 software (not Core).
I would like to use the CRUD Scaffolder from an older version of Visual Studio (e.g. 2017 or 2015). I have searched on internet and on Microsoft site; I cannot find anything. I do not have the older versions of software now.
In one of the older versions, the CRUD scaffolder created Views with simple code-
@Html.EditorFor(model => model.xxx)
@Html.EditorFor(model => model.yyy)
@Html.EditorFor(model => model.zzz)
along with of course the rest of the view code. And this is what I would like to do in VS 2019 (for just the scaffolded Views). I am looking to simplify the scaffolded view code (as was the case in older versions of VS).
QUESTIONS:
Is there a way to download and install/copy the older scaffolders?
If not the above, is it possible and easy to copy and modify the current VS2018 scaffolder code? Where could I find info on how to do it?