GildedRose-Refactoring-Kata/csharp
Emmanuel 7df32e4a34 Create README.md
- Included a Readme.md for commentary.
2021-04-27 10:05:36 +02:00
..
Properties Added files needed to run the csharp project on VS15/17 2017-09-01 00:00:42 -03:00
.gitignore Added .gitignore file 2017-08-31 23:58:11 -03:00
App.config Added files needed to run the csharp project on VS15/17 2017-09-01 00:00:42 -03:00
ApprovalTest.cs fix approval tests to work on windows, and use Approvals framework 2019-08-28 10:30:34 +02:00
csharp.csproj fix approval tests to work on windows, and use Approvals framework 2019-08-28 10:30:34 +02:00
csharp.sln Added files needed to run the csharp project on VS15/17 2017-09-01 00:00:42 -03:00
GildedRose.cs Added files needed to run the csharp project on VS15/17 2017-09-01 00:00:42 -03:00
GildedRoseTest.cs Added files needed to run the csharp project on VS15/17 2017-09-01 00:00:42 -03:00
Item.cs remove ApprovalTest since the other languages don't have one 2018-08-10 14:43:38 +02:00
packages.config Updated NUnit to 3.9 2017-11-19 12:12:04 +01:00
Program.cs remove ApprovalTest since the other languages don't have one 2018-08-10 14:43:38 +02:00
README.md Create README.md 2021-04-27 10:05:36 +02:00

Gilded Rose Refactoring Kata

Introduction: I will try as much as I can to write my thought processes here as it's one of the requirements. I will just write the relevant parts and not my whole thoughts. That would be weird since I was thinking of lunch just before I started. :D

1: One of the first things I want to do is just get the program to run. so am not fixing anything except what will make the program run.

2: After this I want to include some Unit tests to ensure all parts are working as they should. This may require some fixing. Not sure.

3: Then when all tests are good. I can start working with an aim of not breaking any tests.