I need to convert a project started as a Web Application to a Class Libray, is this possible?
Thanks
|
I need to convert a project started as a Web Application to a Class Libray, is this possible? Thanks |
|||
|
|
|
The correct answer is yes. Just edit the csproj (msbuild) file and change the ProjectGuid and remove the ProjectTypeGuids:
It really is that simple. |
|||
|
|
No. Your best bet is to create a Class.Library and copy the .cs files into your new project. A Class Library won't do anything with .aspx pages, it will see those as files in the solution. |
|||
|
|
I came here to have a class library with mvc menu items. This is, right click on views folder to add view or controller to add controller within a classlibrary. I was able to achieve this by editing my mvc.web.app.csproj, copy the For more context on what I am doing, see: Area as a virtual on other websites. |
|||
|
|