├── .gitattributes ├── .github ├── CODEOWNERS └── workflows │ ├── git-pr.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── azure-pipelines.yml ├── katas ├── Pull-Request-Erstellen.md └── to-roman-numerals │ └── ToRomanNumerals.md └── solutions ├── dotnet ├── .devcontainer │ ├── Dockerfile │ └── devcontainer.json ├── sonar-project.properties └── to-roman-numerals │ ├── kaufm │ ├── .editorconfig │ ├── ToRomanNumerals.sln │ ├── src │ │ └── ToRomanNumerals │ │ │ ├── Extensions.cs │ │ │ └── ToRomanNumerals.csproj │ └── tests │ │ └── ToRomanNumerals.Tests │ │ ├── ToRomanNumerals.Tests.csproj │ │ └── ToRomanNumeralsTests.cs │ └── tests │ └── ToRomanNumerals.Tests │ ├── ToRomanNumerals.Tests.csproj │ └── ToRomandNumeralsTests.cs └── git └── pull-request-erstellen.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulfland/CodingDojo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulfland/CodingDojo/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/git-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulfland/CodingDojo/HEAD/.github/workflows/git-pr.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulfland/CodingDojo/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulfland/CodingDojo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulfland/CodingDojo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulfland/CodingDojo/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulfland/CodingDojo/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /katas/Pull-Request-Erstellen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulfland/CodingDojo/HEAD/katas/Pull-Request-Erstellen.md -------------------------------------------------------------------------------- /katas/to-roman-numerals/ToRomanNumerals.md: -------------------------------------------------------------------------------- 1 | # To Roman Numerals -------------------------------------------------------------------------------- /solutions/dotnet/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulfland/CodingDojo/HEAD/solutions/dotnet/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /solutions/dotnet/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulfland/CodingDojo/HEAD/solutions/dotnet/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /solutions/dotnet/sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulfland/CodingDojo/HEAD/solutions/dotnet/sonar-project.properties -------------------------------------------------------------------------------- /solutions/dotnet/to-roman-numerals/kaufm/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulfland/CodingDojo/HEAD/solutions/dotnet/to-roman-numerals/kaufm/.editorconfig -------------------------------------------------------------------------------- /solutions/dotnet/to-roman-numerals/kaufm/ToRomanNumerals.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulfland/CodingDojo/HEAD/solutions/dotnet/to-roman-numerals/kaufm/ToRomanNumerals.sln -------------------------------------------------------------------------------- /solutions/dotnet/to-roman-numerals/kaufm/src/ToRomanNumerals/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulfland/CodingDojo/HEAD/solutions/dotnet/to-roman-numerals/kaufm/src/ToRomanNumerals/Extensions.cs -------------------------------------------------------------------------------- /solutions/dotnet/to-roman-numerals/kaufm/src/ToRomanNumerals/ToRomanNumerals.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulfland/CodingDojo/HEAD/solutions/dotnet/to-roman-numerals/kaufm/src/ToRomanNumerals/ToRomanNumerals.csproj -------------------------------------------------------------------------------- /solutions/dotnet/to-roman-numerals/kaufm/tests/ToRomanNumerals.Tests/ToRomanNumerals.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulfland/CodingDojo/HEAD/solutions/dotnet/to-roman-numerals/kaufm/tests/ToRomanNumerals.Tests/ToRomanNumerals.Tests.csproj -------------------------------------------------------------------------------- /solutions/dotnet/to-roman-numerals/kaufm/tests/ToRomanNumerals.Tests/ToRomanNumeralsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulfland/CodingDojo/HEAD/solutions/dotnet/to-roman-numerals/kaufm/tests/ToRomanNumerals.Tests/ToRomanNumeralsTests.cs -------------------------------------------------------------------------------- /solutions/dotnet/to-roman-numerals/tests/ToRomanNumerals.Tests/ToRomanNumerals.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulfland/CodingDojo/HEAD/solutions/dotnet/to-roman-numerals/tests/ToRomanNumerals.Tests/ToRomanNumerals.Tests.csproj -------------------------------------------------------------------------------- /solutions/dotnet/to-roman-numerals/tests/ToRomanNumerals.Tests/ToRomandNumeralsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulfland/CodingDojo/HEAD/solutions/dotnet/to-roman-numerals/tests/ToRomanNumerals.Tests/ToRomandNumeralsTests.cs -------------------------------------------------------------------------------- /solutions/git/pull-request-erstellen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulfland/CodingDojo/HEAD/solutions/git/pull-request-erstellen.md --------------------------------------------------------------------------------