This is a template repository for C# katas. It contains a basic project structure and a sample test.
This boilerplate include:
- ➕ .NET 7.0 as language version
- 🧪 xUnit as testing framework
- ✅ FluentAssertions as assertion library
- 🐋 Docker as containerization platform
- Install JetBrains Rider
- Open the repository in JetBrains Rider
- Run the tests with the Test Explorer
- The tests should run and pass
- Install Visual Studio Code
- Install the C# extension
- Open the repository in Visual Studio Code
- Run the tests with the Test Explorer
- The tests should run and pass
- You can also run the tests with the command
dotnet test
in the root directory of the repository