I am currently working on a project which is basically conversion of VisualFoxPro projects to ASP MVC project dynamically
I have created all folders,controllers,views files in my code on a button click by simply creating a file with that particular extension and giving path to it
In the same way i created (.sln) file but it is not running when i generate my project on button click
All the files of a blank MVC project is created in this way
File.WriteAllText(Path.Combine(ModelsFolder, "AccountViewModels.cs"), "here i put the code which is in the default files");
now i am facing problem in creating .sln file , should i use SLNTools to create .sln file or is there any other way of doing it
i forgot to mention that there is some file reading of foxpro projects so after reading files i am creating like a view and a controller for a single form,menu dynamically and i dont think so using SDK i am able to do that if yes then any help would be appreciated