-4

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.

Sam
  • 7,252
  • 16
  • 46
  • 65
stack
  • 21
  • 2

3 Answers3

3

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!

Vidya
  • 29,932
  • 7
  • 42
  • 70
  • 1
    A 4th key issue could be getting used to re-factor your code with Visual Studio. – Kent Munthe Caspersen Oct 24 '13 at 17:34
  • Thank you so much for pointing out this oversight. I edited the post accordingly. – Vidya Oct 24 '13 at 17:39
  • I thought your answer was really great, so I upvoted it. I had a small additional point with a coupling to your answer, so instead of posting a new answer I just left it in the comment to your answer. I do not accuse you for overseeing things, nor do I think the point I mentioned is more critical than any of your points. I hoped to give this guy some more ideas about what Scrum is since he sounds a bit confused. I perceived your response as some kind of hostility against me, hence I just want to let you know that my only intent was to be helpful, not taking credits for you excellent answer. – Kent Munthe Caspersen Oct 24 '13 at 20:06
  • Oh no. That wasn't sarcasm at all haha. I can't believe I forgot refactoring, and I'm glad you spoke up so we could give the OP a complete answer. Sorry for the confusion, and thanks for the insight! – Vidya Oct 24 '13 at 20:10
  • Glad to hear, I am sorry for the accusation :) – Kent Munthe Caspersen Oct 24 '13 at 20:16
  • why we use scrum in .net framework? – stack Oct 29 '13 at 14:49
2

Scrum has nothing to do with specific software frameworks. It is a development strategy and workflow which would work while developing any software. You wouldn't use Scrum "in .NET", but could easily follow Scrum principles while developing software targetting the .NET Framework, or any other technology, as it's completely technology neutral.

Reed Copsey
  • 554,122
  • 78
  • 1,158
  • 1,373
0

Scrum doesn't constrain you to specific software frameworks. However, Team Foundation Server does support Scrum development by default if you want something that is integrated with Visual Studio.

bruestle2
  • 727
  • 1
  • 8
  • 22