From 53c496ccfa9516598d6313b7e5536bd539ed6d3a Mon Sep 17 00:00:00 2001 From: Stephan Johansen Date: Thu, 15 Aug 2024 11:40:05 +0200 Subject: [PATCH] Rename SpecGurka project to SyncGurka --- specgurka.sln => SyncGurka.sln | 0 source/{SpecGurka => SyncGurka}/.dockerignore | 0 source/{SpecGurka => SyncGurka}/Config/AzureDevOpsConfig.cs | 0 source/{SpecGurka => SyncGurka}/Config/GithubConfig.cs | 0 source/{SpecGurka => SyncGurka}/Config/MondayConfig.cs | 0 .../Exceptions/InvalidArgumentException.cs | 0 source/{SpecGurka => SyncGurka}/Exceptions/NotFeatureException.cs | 0 source/{SpecGurka => SyncGurka}/Exceptions/NotFoundException.cs | 0 .../Exceptions/TooManyFeatureIdsException.cs | 0 .../Exceptions/UnableToReadFileException.cs | 0 .../Exceptions/WrongFeatureConfigurationException.cs | 0 source/{SpecGurka => SyncGurka}/Feature.cs | 0 source/{SpecGurka => SyncGurka}/GherkinTools/GherkinFileReader.cs | 0 .../{SpecGurka => SyncGurka}/GherkinTools/GherkinFileService.cs | 0 .../{SpecGurka => SyncGurka}/GherkinTools/GherkinFolderReader.cs | 0 source/{SpecGurka => SyncGurka}/Interfaces/IBaseConfig.cs | 0 source/{SpecGurka => SyncGurka}/Interfaces/IBoardConfig.cs | 0 source/{SpecGurka => SyncGurka}/Interfaces/IFieldIdConfig.cs | 0 source/{SpecGurka => SyncGurka}/Interfaces/IOwnerProjectConfig.cs | 0 source/{SpecGurka => SyncGurka}/Interfaces/ISystemClient.cs | 0 .../{SpecGurka => SyncGurka}/Interfaces/ISystemFileLinkService.cs | 0 .../{SpecGurka => SyncGurka}/Interfaces/ISystemSpecflowService.cs | 0 .../Interfaces/ISystemUserStoryService.cs | 0 source/{SpecGurka => SyncGurka}/Interfaces/IWorkItemService.cs | 0 source/{SpecGurka => SyncGurka}/Program.cs | 0 source/{SpecGurka => SyncGurka}/ServiceFactory.cs | 0 source/{SpecGurka => SyncGurka}/SpecGurka.csproj | 0 source/{SpecGurka => SyncGurka}/Specflow/Scenario.cs | 0 source/{SpecGurka => SyncGurka}/Specflow/SpecflowFeatureResult.cs | 0 source/{SpecGurka => SyncGurka}/Specflow/SpecflowFileReader.cs | 0 source/{SpecGurka => SyncGurka}/Specflow/SpecflowFileService.cs | 0 source/{SpecGurka => SyncGurka}/UIHelper.cs | 0 source/{SpecGurka => SyncGurka}/WorkItem.cs | 0 .../WorkSystems/AzureDevOps/AzureDevOpsClient.cs | 0 .../WorkSystems/AzureDevOps/AzureDevOpsFileLinkService.cs | 0 .../WorkSystems/AzureDevOps/AzureDevOpsSpecflowService.cs | 0 .../WorkSystems/AzureDevOps/AzureDevOpsUserStoryService.cs | 0 .../WorkSystems/AzureDevOps/AzureDevOpsWorkItemService.cs | 0 .../{SpecGurka => SyncGurka}/WorkSystems/Github/GithubClient.cs | 0 .../WorkSystems/Github/GithubFileLinkService.cs | 0 .../WorkSystems/Github/GithubSpecflowService.cs | 0 .../WorkSystems/Github/GithubUserStoryService.cs | 0 .../WorkSystems/Github/GithubWorkItemService.cs | 0 .../{SpecGurka => SyncGurka}/WorkSystems/Monday/MondayClient.cs | 0 .../WorkSystems/Monday/MondayFileLinkService.cs | 0 .../WorkSystems/Monday/MondaySpecflowService.cs | 0 .../WorkSystems/Monday/MondayUserStory.cs | 0 .../WorkSystems/Monday/MondayWorkItemService.cs | 0 source/{SpecGurka => SyncGurka}/appsettings.json.template | 0 source/{SpecGurka => SyncGurka}/dockerfile | 0 .../SpecGurka.UnitTests.csproj | 0 tests/{SpecGurka.UnitTests => SyncGurka.UnitTests}/UnitTest1.cs | 0 tests/{SpecGurka.UnitTests => SyncGurka.UnitTests}/Usings.cs | 0 53 files changed, 0 insertions(+), 0 deletions(-) rename specgurka.sln => SyncGurka.sln (100%) rename source/{SpecGurka => SyncGurka}/.dockerignore (100%) rename source/{SpecGurka => SyncGurka}/Config/AzureDevOpsConfig.cs (100%) rename source/{SpecGurka => SyncGurka}/Config/GithubConfig.cs (100%) rename source/{SpecGurka => SyncGurka}/Config/MondayConfig.cs (100%) rename source/{SpecGurka => SyncGurka}/Exceptions/InvalidArgumentException.cs (100%) rename source/{SpecGurka => SyncGurka}/Exceptions/NotFeatureException.cs (100%) rename source/{SpecGurka => SyncGurka}/Exceptions/NotFoundException.cs (100%) rename source/{SpecGurka => SyncGurka}/Exceptions/TooManyFeatureIdsException.cs (100%) rename source/{SpecGurka => SyncGurka}/Exceptions/UnableToReadFileException.cs (100%) rename source/{SpecGurka => SyncGurka}/Exceptions/WrongFeatureConfigurationException.cs (100%) rename source/{SpecGurka => SyncGurka}/Feature.cs (100%) rename source/{SpecGurka => SyncGurka}/GherkinTools/GherkinFileReader.cs (100%) rename source/{SpecGurka => SyncGurka}/GherkinTools/GherkinFileService.cs (100%) rename source/{SpecGurka => SyncGurka}/GherkinTools/GherkinFolderReader.cs (100%) rename source/{SpecGurka => SyncGurka}/Interfaces/IBaseConfig.cs (100%) rename source/{SpecGurka => SyncGurka}/Interfaces/IBoardConfig.cs (100%) rename source/{SpecGurka => SyncGurka}/Interfaces/IFieldIdConfig.cs (100%) rename source/{SpecGurka => SyncGurka}/Interfaces/IOwnerProjectConfig.cs (100%) rename source/{SpecGurka => SyncGurka}/Interfaces/ISystemClient.cs (100%) rename source/{SpecGurka => SyncGurka}/Interfaces/ISystemFileLinkService.cs (100%) rename source/{SpecGurka => SyncGurka}/Interfaces/ISystemSpecflowService.cs (100%) rename source/{SpecGurka => SyncGurka}/Interfaces/ISystemUserStoryService.cs (100%) rename source/{SpecGurka => SyncGurka}/Interfaces/IWorkItemService.cs (100%) rename source/{SpecGurka => SyncGurka}/Program.cs (100%) rename source/{SpecGurka => SyncGurka}/ServiceFactory.cs (100%) rename source/{SpecGurka => SyncGurka}/SpecGurka.csproj (100%) rename source/{SpecGurka => SyncGurka}/Specflow/Scenario.cs (100%) rename source/{SpecGurka => SyncGurka}/Specflow/SpecflowFeatureResult.cs (100%) rename source/{SpecGurka => SyncGurka}/Specflow/SpecflowFileReader.cs (100%) rename source/{SpecGurka => SyncGurka}/Specflow/SpecflowFileService.cs (100%) rename source/{SpecGurka => SyncGurka}/UIHelper.cs (100%) rename source/{SpecGurka => SyncGurka}/WorkItem.cs (100%) rename source/{SpecGurka => SyncGurka}/WorkSystems/AzureDevOps/AzureDevOpsClient.cs (100%) rename source/{SpecGurka => SyncGurka}/WorkSystems/AzureDevOps/AzureDevOpsFileLinkService.cs (100%) rename source/{SpecGurka => SyncGurka}/WorkSystems/AzureDevOps/AzureDevOpsSpecflowService.cs (100%) rename source/{SpecGurka => SyncGurka}/WorkSystems/AzureDevOps/AzureDevOpsUserStoryService.cs (100%) rename source/{SpecGurka => SyncGurka}/WorkSystems/AzureDevOps/AzureDevOpsWorkItemService.cs (100%) rename source/{SpecGurka => SyncGurka}/WorkSystems/Github/GithubClient.cs (100%) rename source/{SpecGurka => SyncGurka}/WorkSystems/Github/GithubFileLinkService.cs (100%) rename source/{SpecGurka => SyncGurka}/WorkSystems/Github/GithubSpecflowService.cs (100%) rename source/{SpecGurka => SyncGurka}/WorkSystems/Github/GithubUserStoryService.cs (100%) rename source/{SpecGurka => SyncGurka}/WorkSystems/Github/GithubWorkItemService.cs (100%) rename source/{SpecGurka => SyncGurka}/WorkSystems/Monday/MondayClient.cs (100%) rename source/{SpecGurka => SyncGurka}/WorkSystems/Monday/MondayFileLinkService.cs (100%) rename source/{SpecGurka => SyncGurka}/WorkSystems/Monday/MondaySpecflowService.cs (100%) rename source/{SpecGurka => SyncGurka}/WorkSystems/Monday/MondayUserStory.cs (100%) rename source/{SpecGurka => SyncGurka}/WorkSystems/Monday/MondayWorkItemService.cs (100%) rename source/{SpecGurka => SyncGurka}/appsettings.json.template (100%) rename source/{SpecGurka => SyncGurka}/dockerfile (100%) rename tests/{SpecGurka.UnitTests => SyncGurka.UnitTests}/SpecGurka.UnitTests.csproj (100%) rename tests/{SpecGurka.UnitTests => SyncGurka.UnitTests}/UnitTest1.cs (100%) rename tests/{SpecGurka.UnitTests => SyncGurka.UnitTests}/Usings.cs (100%) diff --git a/specgurka.sln b/SyncGurka.sln similarity index 100% rename from specgurka.sln rename to SyncGurka.sln diff --git a/source/SpecGurka/.dockerignore b/source/SyncGurka/.dockerignore similarity index 100% rename from source/SpecGurka/.dockerignore rename to source/SyncGurka/.dockerignore diff --git a/source/SpecGurka/Config/AzureDevOpsConfig.cs b/source/SyncGurka/Config/AzureDevOpsConfig.cs similarity index 100% rename from source/SpecGurka/Config/AzureDevOpsConfig.cs rename to source/SyncGurka/Config/AzureDevOpsConfig.cs diff --git a/source/SpecGurka/Config/GithubConfig.cs b/source/SyncGurka/Config/GithubConfig.cs similarity index 100% rename from source/SpecGurka/Config/GithubConfig.cs rename to source/SyncGurka/Config/GithubConfig.cs diff --git a/source/SpecGurka/Config/MondayConfig.cs b/source/SyncGurka/Config/MondayConfig.cs similarity index 100% rename from source/SpecGurka/Config/MondayConfig.cs rename to source/SyncGurka/Config/MondayConfig.cs diff --git a/source/SpecGurka/Exceptions/InvalidArgumentException.cs b/source/SyncGurka/Exceptions/InvalidArgumentException.cs similarity index 100% rename from source/SpecGurka/Exceptions/InvalidArgumentException.cs rename to source/SyncGurka/Exceptions/InvalidArgumentException.cs diff --git a/source/SpecGurka/Exceptions/NotFeatureException.cs b/source/SyncGurka/Exceptions/NotFeatureException.cs similarity index 100% rename from source/SpecGurka/Exceptions/NotFeatureException.cs rename to source/SyncGurka/Exceptions/NotFeatureException.cs diff --git a/source/SpecGurka/Exceptions/NotFoundException.cs b/source/SyncGurka/Exceptions/NotFoundException.cs similarity index 100% rename from source/SpecGurka/Exceptions/NotFoundException.cs rename to source/SyncGurka/Exceptions/NotFoundException.cs diff --git a/source/SpecGurka/Exceptions/TooManyFeatureIdsException.cs b/source/SyncGurka/Exceptions/TooManyFeatureIdsException.cs similarity index 100% rename from source/SpecGurka/Exceptions/TooManyFeatureIdsException.cs rename to source/SyncGurka/Exceptions/TooManyFeatureIdsException.cs diff --git a/source/SpecGurka/Exceptions/UnableToReadFileException.cs b/source/SyncGurka/Exceptions/UnableToReadFileException.cs similarity index 100% rename from source/SpecGurka/Exceptions/UnableToReadFileException.cs rename to source/SyncGurka/Exceptions/UnableToReadFileException.cs diff --git a/source/SpecGurka/Exceptions/WrongFeatureConfigurationException.cs b/source/SyncGurka/Exceptions/WrongFeatureConfigurationException.cs similarity index 100% rename from source/SpecGurka/Exceptions/WrongFeatureConfigurationException.cs rename to source/SyncGurka/Exceptions/WrongFeatureConfigurationException.cs diff --git a/source/SpecGurka/Feature.cs b/source/SyncGurka/Feature.cs similarity index 100% rename from source/SpecGurka/Feature.cs rename to source/SyncGurka/Feature.cs diff --git a/source/SpecGurka/GherkinTools/GherkinFileReader.cs b/source/SyncGurka/GherkinTools/GherkinFileReader.cs similarity index 100% rename from source/SpecGurka/GherkinTools/GherkinFileReader.cs rename to source/SyncGurka/GherkinTools/GherkinFileReader.cs diff --git a/source/SpecGurka/GherkinTools/GherkinFileService.cs b/source/SyncGurka/GherkinTools/GherkinFileService.cs similarity index 100% rename from source/SpecGurka/GherkinTools/GherkinFileService.cs rename to source/SyncGurka/GherkinTools/GherkinFileService.cs diff --git a/source/SpecGurka/GherkinTools/GherkinFolderReader.cs b/source/SyncGurka/GherkinTools/GherkinFolderReader.cs similarity index 100% rename from source/SpecGurka/GherkinTools/GherkinFolderReader.cs rename to source/SyncGurka/GherkinTools/GherkinFolderReader.cs diff --git a/source/SpecGurka/Interfaces/IBaseConfig.cs b/source/SyncGurka/Interfaces/IBaseConfig.cs similarity index 100% rename from source/SpecGurka/Interfaces/IBaseConfig.cs rename to source/SyncGurka/Interfaces/IBaseConfig.cs diff --git a/source/SpecGurka/Interfaces/IBoardConfig.cs b/source/SyncGurka/Interfaces/IBoardConfig.cs similarity index 100% rename from source/SpecGurka/Interfaces/IBoardConfig.cs rename to source/SyncGurka/Interfaces/IBoardConfig.cs diff --git a/source/SpecGurka/Interfaces/IFieldIdConfig.cs b/source/SyncGurka/Interfaces/IFieldIdConfig.cs similarity index 100% rename from source/SpecGurka/Interfaces/IFieldIdConfig.cs rename to source/SyncGurka/Interfaces/IFieldIdConfig.cs diff --git a/source/SpecGurka/Interfaces/IOwnerProjectConfig.cs b/source/SyncGurka/Interfaces/IOwnerProjectConfig.cs similarity index 100% rename from source/SpecGurka/Interfaces/IOwnerProjectConfig.cs rename to source/SyncGurka/Interfaces/IOwnerProjectConfig.cs diff --git a/source/SpecGurka/Interfaces/ISystemClient.cs b/source/SyncGurka/Interfaces/ISystemClient.cs similarity index 100% rename from source/SpecGurka/Interfaces/ISystemClient.cs rename to source/SyncGurka/Interfaces/ISystemClient.cs diff --git a/source/SpecGurka/Interfaces/ISystemFileLinkService.cs b/source/SyncGurka/Interfaces/ISystemFileLinkService.cs similarity index 100% rename from source/SpecGurka/Interfaces/ISystemFileLinkService.cs rename to source/SyncGurka/Interfaces/ISystemFileLinkService.cs diff --git a/source/SpecGurka/Interfaces/ISystemSpecflowService.cs b/source/SyncGurka/Interfaces/ISystemSpecflowService.cs similarity index 100% rename from source/SpecGurka/Interfaces/ISystemSpecflowService.cs rename to source/SyncGurka/Interfaces/ISystemSpecflowService.cs diff --git a/source/SpecGurka/Interfaces/ISystemUserStoryService.cs b/source/SyncGurka/Interfaces/ISystemUserStoryService.cs similarity index 100% rename from source/SpecGurka/Interfaces/ISystemUserStoryService.cs rename to source/SyncGurka/Interfaces/ISystemUserStoryService.cs diff --git a/source/SpecGurka/Interfaces/IWorkItemService.cs b/source/SyncGurka/Interfaces/IWorkItemService.cs similarity index 100% rename from source/SpecGurka/Interfaces/IWorkItemService.cs rename to source/SyncGurka/Interfaces/IWorkItemService.cs diff --git a/source/SpecGurka/Program.cs b/source/SyncGurka/Program.cs similarity index 100% rename from source/SpecGurka/Program.cs rename to source/SyncGurka/Program.cs diff --git a/source/SpecGurka/ServiceFactory.cs b/source/SyncGurka/ServiceFactory.cs similarity index 100% rename from source/SpecGurka/ServiceFactory.cs rename to source/SyncGurka/ServiceFactory.cs diff --git a/source/SpecGurka/SpecGurka.csproj b/source/SyncGurka/SpecGurka.csproj similarity index 100% rename from source/SpecGurka/SpecGurka.csproj rename to source/SyncGurka/SpecGurka.csproj diff --git a/source/SpecGurka/Specflow/Scenario.cs b/source/SyncGurka/Specflow/Scenario.cs similarity index 100% rename from source/SpecGurka/Specflow/Scenario.cs rename to source/SyncGurka/Specflow/Scenario.cs diff --git a/source/SpecGurka/Specflow/SpecflowFeatureResult.cs b/source/SyncGurka/Specflow/SpecflowFeatureResult.cs similarity index 100% rename from source/SpecGurka/Specflow/SpecflowFeatureResult.cs rename to source/SyncGurka/Specflow/SpecflowFeatureResult.cs diff --git a/source/SpecGurka/Specflow/SpecflowFileReader.cs b/source/SyncGurka/Specflow/SpecflowFileReader.cs similarity index 100% rename from source/SpecGurka/Specflow/SpecflowFileReader.cs rename to source/SyncGurka/Specflow/SpecflowFileReader.cs diff --git a/source/SpecGurka/Specflow/SpecflowFileService.cs b/source/SyncGurka/Specflow/SpecflowFileService.cs similarity index 100% rename from source/SpecGurka/Specflow/SpecflowFileService.cs rename to source/SyncGurka/Specflow/SpecflowFileService.cs diff --git a/source/SpecGurka/UIHelper.cs b/source/SyncGurka/UIHelper.cs similarity index 100% rename from source/SpecGurka/UIHelper.cs rename to source/SyncGurka/UIHelper.cs diff --git a/source/SpecGurka/WorkItem.cs b/source/SyncGurka/WorkItem.cs similarity index 100% rename from source/SpecGurka/WorkItem.cs rename to source/SyncGurka/WorkItem.cs diff --git a/source/SpecGurka/WorkSystems/AzureDevOps/AzureDevOpsClient.cs b/source/SyncGurka/WorkSystems/AzureDevOps/AzureDevOpsClient.cs similarity index 100% rename from source/SpecGurka/WorkSystems/AzureDevOps/AzureDevOpsClient.cs rename to source/SyncGurka/WorkSystems/AzureDevOps/AzureDevOpsClient.cs diff --git a/source/SpecGurka/WorkSystems/AzureDevOps/AzureDevOpsFileLinkService.cs b/source/SyncGurka/WorkSystems/AzureDevOps/AzureDevOpsFileLinkService.cs similarity index 100% rename from source/SpecGurka/WorkSystems/AzureDevOps/AzureDevOpsFileLinkService.cs rename to source/SyncGurka/WorkSystems/AzureDevOps/AzureDevOpsFileLinkService.cs diff --git a/source/SpecGurka/WorkSystems/AzureDevOps/AzureDevOpsSpecflowService.cs b/source/SyncGurka/WorkSystems/AzureDevOps/AzureDevOpsSpecflowService.cs similarity index 100% rename from source/SpecGurka/WorkSystems/AzureDevOps/AzureDevOpsSpecflowService.cs rename to source/SyncGurka/WorkSystems/AzureDevOps/AzureDevOpsSpecflowService.cs diff --git a/source/SpecGurka/WorkSystems/AzureDevOps/AzureDevOpsUserStoryService.cs b/source/SyncGurka/WorkSystems/AzureDevOps/AzureDevOpsUserStoryService.cs similarity index 100% rename from source/SpecGurka/WorkSystems/AzureDevOps/AzureDevOpsUserStoryService.cs rename to source/SyncGurka/WorkSystems/AzureDevOps/AzureDevOpsUserStoryService.cs diff --git a/source/SpecGurka/WorkSystems/AzureDevOps/AzureDevOpsWorkItemService.cs b/source/SyncGurka/WorkSystems/AzureDevOps/AzureDevOpsWorkItemService.cs similarity index 100% rename from source/SpecGurka/WorkSystems/AzureDevOps/AzureDevOpsWorkItemService.cs rename to source/SyncGurka/WorkSystems/AzureDevOps/AzureDevOpsWorkItemService.cs diff --git a/source/SpecGurka/WorkSystems/Github/GithubClient.cs b/source/SyncGurka/WorkSystems/Github/GithubClient.cs similarity index 100% rename from source/SpecGurka/WorkSystems/Github/GithubClient.cs rename to source/SyncGurka/WorkSystems/Github/GithubClient.cs diff --git a/source/SpecGurka/WorkSystems/Github/GithubFileLinkService.cs b/source/SyncGurka/WorkSystems/Github/GithubFileLinkService.cs similarity index 100% rename from source/SpecGurka/WorkSystems/Github/GithubFileLinkService.cs rename to source/SyncGurka/WorkSystems/Github/GithubFileLinkService.cs diff --git a/source/SpecGurka/WorkSystems/Github/GithubSpecflowService.cs b/source/SyncGurka/WorkSystems/Github/GithubSpecflowService.cs similarity index 100% rename from source/SpecGurka/WorkSystems/Github/GithubSpecflowService.cs rename to source/SyncGurka/WorkSystems/Github/GithubSpecflowService.cs diff --git a/source/SpecGurka/WorkSystems/Github/GithubUserStoryService.cs b/source/SyncGurka/WorkSystems/Github/GithubUserStoryService.cs similarity index 100% rename from source/SpecGurka/WorkSystems/Github/GithubUserStoryService.cs rename to source/SyncGurka/WorkSystems/Github/GithubUserStoryService.cs diff --git a/source/SpecGurka/WorkSystems/Github/GithubWorkItemService.cs b/source/SyncGurka/WorkSystems/Github/GithubWorkItemService.cs similarity index 100% rename from source/SpecGurka/WorkSystems/Github/GithubWorkItemService.cs rename to source/SyncGurka/WorkSystems/Github/GithubWorkItemService.cs diff --git a/source/SpecGurka/WorkSystems/Monday/MondayClient.cs b/source/SyncGurka/WorkSystems/Monday/MondayClient.cs similarity index 100% rename from source/SpecGurka/WorkSystems/Monday/MondayClient.cs rename to source/SyncGurka/WorkSystems/Monday/MondayClient.cs diff --git a/source/SpecGurka/WorkSystems/Monday/MondayFileLinkService.cs b/source/SyncGurka/WorkSystems/Monday/MondayFileLinkService.cs similarity index 100% rename from source/SpecGurka/WorkSystems/Monday/MondayFileLinkService.cs rename to source/SyncGurka/WorkSystems/Monday/MondayFileLinkService.cs diff --git a/source/SpecGurka/WorkSystems/Monday/MondaySpecflowService.cs b/source/SyncGurka/WorkSystems/Monday/MondaySpecflowService.cs similarity index 100% rename from source/SpecGurka/WorkSystems/Monday/MondaySpecflowService.cs rename to source/SyncGurka/WorkSystems/Monday/MondaySpecflowService.cs diff --git a/source/SpecGurka/WorkSystems/Monday/MondayUserStory.cs b/source/SyncGurka/WorkSystems/Monday/MondayUserStory.cs similarity index 100% rename from source/SpecGurka/WorkSystems/Monday/MondayUserStory.cs rename to source/SyncGurka/WorkSystems/Monday/MondayUserStory.cs diff --git a/source/SpecGurka/WorkSystems/Monday/MondayWorkItemService.cs b/source/SyncGurka/WorkSystems/Monday/MondayWorkItemService.cs similarity index 100% rename from source/SpecGurka/WorkSystems/Monday/MondayWorkItemService.cs rename to source/SyncGurka/WorkSystems/Monday/MondayWorkItemService.cs diff --git a/source/SpecGurka/appsettings.json.template b/source/SyncGurka/appsettings.json.template similarity index 100% rename from source/SpecGurka/appsettings.json.template rename to source/SyncGurka/appsettings.json.template diff --git a/source/SpecGurka/dockerfile b/source/SyncGurka/dockerfile similarity index 100% rename from source/SpecGurka/dockerfile rename to source/SyncGurka/dockerfile diff --git a/tests/SpecGurka.UnitTests/SpecGurka.UnitTests.csproj b/tests/SyncGurka.UnitTests/SpecGurka.UnitTests.csproj similarity index 100% rename from tests/SpecGurka.UnitTests/SpecGurka.UnitTests.csproj rename to tests/SyncGurka.UnitTests/SpecGurka.UnitTests.csproj diff --git a/tests/SpecGurka.UnitTests/UnitTest1.cs b/tests/SyncGurka.UnitTests/UnitTest1.cs similarity index 100% rename from tests/SpecGurka.UnitTests/UnitTest1.cs rename to tests/SyncGurka.UnitTests/UnitTest1.cs diff --git a/tests/SpecGurka.UnitTests/Usings.cs b/tests/SyncGurka.UnitTests/Usings.cs similarity index 100% rename from tests/SpecGurka.UnitTests/Usings.cs rename to tests/SyncGurka.UnitTests/Usings.cs