GildedRose-Refactoring-Kata/csharp.xUnit
Artur Goloyad 26870381a4 refactor: organize updaters into Interfaces/Factories/Strategies
Pure file move + namespace alignment, no logic changes:
- Interfaces/  IItemUpdater, IItemUpdaterFactory (GildedRoseKata.Interfaces)
- Factories/   ItemUpdaterFactory incl. static Default() (GildedRoseKata.Factories)
- Strategies/  ItemUpdaterBase + the 5 concrete updaters (GildedRoseKata.Strategies)

GildedRose.cs changes only in usings; Item.cs and Program.cs untouched.
Full suite 24/24 green; approval snapshot byte-identical.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-26 11:46:39 +02:00
..
GildedRose refactor: organize updaters into Interfaces/Factories/Strategies 2026-07-26 11:46:39 +02:00
GildedRoseTests test: re-approve ThirtyDays snapshot with Conjured fix 2026-07-25 20:52:03 +02:00
.gitignore Refactor C# projects 2024-05-29 15:01:51 +02:00
GildedRose.sln Refactoring c# projects (#544) 2024-06-06 14:13:44 +02:00
README.md Refactoring c# projects (#544) 2024-06-06 14:13:44 +02:00

Gilded Rose starting position in C# xUnit

Build the project

Use your normal build tools to build the projects in Debug mode. For example, you can use the dotnet command line tool:

dotnet build GildedRose.sln -c Debug

Run the Gilded Rose Command-Line program

For e.g. 10 days:

GildedRose/bin/Debug/net8.0/GildedRose 10

Run all the unit tests

dotnet test