F.B. ten Kate wrote:Is there any update on this? I'd really like to get this integrated in a Webapplication. I've got it running just fine in a Website, but beeing a bit of a geek i'd like to get some tests written aswell. Sadly i can't reference to a Website like you can to a web application so yeah.
It's either integrate this or forget about my cute little idea of actually writing some unit tests for a change.
I was able to do it without too much trouble. (after several restarts)
1)rename the recommended-NETv3.5-web.config from the webconfigs directory to web.config in the YetAnotherForum.net directory
2) open the 2008 solution.
3) create a web application project off the main solution called YAF
4) Highlight everything in the YetAnotherForum.net, right mouse click - copy, and paste it into the YAF project
5) In the YAF project right click the references and choose add reference. From the projects tab choose all. From the browse tab browse to YAF/bin and choose the ajaxcontroltoolkit and Cookcomputer... dlls
6) Right click the YAF project and choose 'Convert To Web Application'
7) You need to convert all the other project to write to the YAF/bin directory. I did it by loading all the *.cprojs to a text editor and gobal replacing YetAnotherForum.net with YAF
8 ) Under the <controls> tag in the web.config add: <add tagPrefix="YAF" namespace="YAF" assembly="YAF"/>
9) Delete the YetAnotherForum.net project
10) clean and compile everything.
I think that is all the steps I had to take.