Before starting the development I want to determine the involved frameworks, components and practices.
Web Framework
I will just go with the obvious choice: ASP.NET MVC3 with the Razor view engine. This might not be the most exciting choice, but I haven't used razor before and want to try it.
Specification-/Testframework
I'm really looking forward to using Specflow. On the one hand I want to have automated regression tests to get rid of (or at least reduce) the manual testing. On the other hand I want to have a showcase for the testing team on my current project, because they're always looking for ways to reduce manual testing. I'm not quite sure whether to include the UI, but I'll probably ignore it for starters.
Although I'm fine with MSTest or any other test framework, I'll use NUnit just to try it.
Code Contracts
I've recently introduced code contracts in some components of my current project. I like the idea of code contracts and was excited to see them included in .NET 4.0, but it's a lot of additional work to get them right throughout a project. What is even worse is the tooling. The tools didn't make it into VS2010 so you have to install them separately. That would be ok for me, if the performance wasn't as horrible as it is. Even in a relatively small solutions the static checker completely uses a single core for several minutes and uses up to 1.5GB of ram.
Therefor I'll skip code contracts for now. Hopefully they'll get the tooling right till the next release of VS.
Xml Comments
MediaCommMVC is currently completely document with xml comments and when working in teams I always insist on xml comments. Nevertheless I believe that clean code does not need comments (at least not that verbose), its just much harder (sometimes even impossible) to get people writing clean code than it is to get them writing comments. As I'm working on this alone, I'll try to keep the code clean and not use xml comments.
Solution/Project Structure
In the past I sometimes thougth quite a lot about how to organize projects and split them into assemblies. MVC and DI made me think about physical layers (assemblies) and logical layers separately and after reading an article by Patrick Smacchia I realized that I've no reason to split the project into many assemblies. I'll start with 3 projects in the solution (UI, Core, Test) and try to keep it simple.
[EDIT: VS and Resharper support is significantly better when controller and views are in the same project so I'm down to 2 projects (Web & Tests)]
3rd Parties Libraries
Simple Choice: Nuget. I had some trouble with more complex solutions but this small project it should work just fine.
Database/DAL
It's currently nHibernate with SQL Server. I might look into migrating to Raven DB, but I'm not sure. May be an option for v 0.5 ;)