Search code examples
.netscrum

How to use Scrum in .NET Framework


I want to know how to use Scrum in .NET Framework and why to do this?

I've studied both Scrum and the .NET Framework, but I want to know how to implement Scrum in .NET Framework.


Solution

  • Scrum doesn't distinguish by technology. The key issue is learning how to do a lot of the agile development practices in a ".NET context." For example

    • Learn to use Visual Studio to write unit tests
    • Refactoring your code with Visual Studio (thanks to @KentMuntheCaspersen for reminding me of this critical point.)
    • Integrate MSBuild with Jenkins or TeamCity for continuous integration
    • Add documentation with ///

    This of course pertains to the day-to-day developer activities aspect of Scrum. Of course, tools you use to organize your Product Backlog or track Sprint Burndown (like a simple whiteboard with yellow stickies) are the same no matter what you are developing with.

    Good luck with your project!