GildedRose-Refactoring-Kata/csharpcore
2020-12-19 17:00:48 +01:00
..
.gitignore C# for .net core 2018-06-14 16:54:48 +02:00
ApprovalTest.cs fix approval tests to work on windows, and use Approvals framework 2019-08-28 10:30:34 +02:00
csharpcore.csproj fix approval tests to work on windows, and use Approvals framework 2019-08-28 10:30:34 +02:00
GildedRose.cs Refactoring for code style consistancy 2020-12-19 16:44:27 +01:00
GildedRoseTest.cs Refactoring for code style consistancy 2020-12-19 16:44:27 +01:00
Item.cs C# for .net core 2018-06-14 16:54:48 +02:00
Program.cs Adding code to handle the Conjured Items 2020-12-19 16:37:09 +01:00
README.md Adding a simple readme 2020-12-19 17:00:48 +01:00

Gilded Rose Program

This is a simple program that will update the Quality and SellIn values of all items sold by the Gilded Rose !

How to build/Run the program

The simpliest way to build and run this example program is to open the .csproj inside Visual Studio and then run in debug/release the project.

You can of course build the project by using:

$ dotnet build csharpcore.csproj

and then you can run the .dll program by using:

$ dotnet bin/Debug/netcoreapp2.1/csharpcore.dll

Where the .dll path is actually the path given as a result of the dotnet build command.