Kino
Kino is a small web based RSS feed creator. It was made as a backend to these articles.
- Part 1: Design and architecture
- Part 2: Dependency injection with Unity and XML configuration
- Part 3: Structured unit testing
- Part 4: Keep yourself covered with NCover
- Part 5: Easy error handling with ELMAH
Download Source
Note that express editions does not have support for MsTest unit testing. That is why I've switched framework here to NUnit 2.5. You will also need to install ASP.NET MVC 1.0.
Quick start
How to get started with this source code
Requirements
- Visual Studio 2008
- Microsoft .NET Framework 3.5 SP1
- ASP.NET MVC 1.0
Step by step
- Open up the Kino.sln file in Visual Studio 2008
- Make sure that Kino (web project) is marked as StartUp project
- Open up Unity.config inside Kino project and edit line 57 with a directory that contain movies
<value value="C:\Movies" type="System.String" />
- Press F5, (or whatever key you have bound to "Run project")
- Click the link RSS Movies on the webpage
Study the code.