The problem is the code for both of these was moved from the App_Code folder to the Mises.Domain project.
The RSSToolkit isn't working because it uses a code generator which is specified in the web.config file.
<buildProviders>
<add extension=".rss" type="RssToolkit.Rss.CodeGeneration.RssBuildProvider,RssToolkit"/>
<add extension=".rssdl" type="RssToolkit.Rss.CodeGeneration.RssdlBuildProvider,RssToolkit"/>
</buildProviders>
Since Services/Articles.rss is now in the Mises.Domain project this isn't being found by the code generator and thus the classes are not being generated.
I also had to do the same for the Media.rss file.
The WCF service isn't working because the code file being referenced in Feeds/Articles.svc has been moved to the same Mises.Domain project
CodeBehind="~/App_Code/Articles/ArticlesFeed.cs"
The same is true for the Events.svc and Media.svc. Looks like the Literature.svc wasn't defined in the web.config, so maybe it isn't used anymore.
I think it is a good idea to use the Mises.Domain project for business objects, but it looks like a few things we'll need to keep in the App_Code folder for now.
I have made the changes and it appears the feeds are working and we came compile without errors :) The only WCF feed that is still giving me errors is the Articles.svc, so I'm not sure what I'm doing wrong there. I will need an account to checkin the changes though, or I can email them.
Thanks,
Randall