Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to convert a project started as a Web Application to a Class Libray, is this possible?

Thanks

share|improve this question

3 Answers

up vote 21 down vote accepted

The correct answer is yes. Just edit the csproj (msbuild) file and change the ProjectGuid and remove the ProjectTypeGuids:

<ProjectGuid>{9845066A-3C9E-4F51-8F5F-8F513E8D03C1}</ProjectGuid>

It really is that simple.

share|improve this answer
I have VS2010 and this Guid didn't work for me,I've tried this one: <ProjectGuid>{2CAAF0E8-A840-4ABF-BF2A-BCD4338D80B5}</ProjectGuid> – alaa9jo Apr 25 at 11:09

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.

share|improve this answer
I have a main Web Application that loads Controls from another Web Application. It should load them from a Class Library, because right now I have two web.config files and this is boring. – Marco Bettiolo Feb 13 '09 at 19:57

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 <ProjectTypeGuids /> to my class.lib.csproj project.

For more context on what I am doing, see: Area as a virtual on other websites.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.