I'm rebuilding a small project which is built using .aspx
, i'm simply converting it to Razor(manually - converters do not work.)
In the .aspx project
I have code-behind
a page & an auto-generated
file that start as follow:
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
Question, do I just create a new controller file and add the Code-behind
and ignore the auto-generated file
? I'd really appreciate your guidance!