From dc685661a7dc82bb2ef37ae17770554547e015e8 Mon Sep 17 00:00:00 2001 From: aronmal Date: Wed, 26 Oct 2022 00:12:48 +0200 Subject: [PATCH] Rename old C# backend folder --- {backend => backend-C#}/.gitignore | 0 {backend => backend-C#}/LeakyShipsAPI.sln | 0 {backend => backend-C#}/LeakyShipsAPI/.dockerignore | 0 {backend => backend-C#}/LeakyShipsAPI/Dockerfile | 0 {backend => backend-C#}/LeakyShipsAPI/Hubs/GameHub.cs | 0 {backend => backend-C#}/LeakyShipsAPI/LeakyShipsAPI.csproj | 0 {backend => backend-C#}/LeakyShipsAPI/Model/Board.cs | 0 {backend => backend-C#}/LeakyShipsAPI/Model/Player.cs | 0 {backend => backend-C#}/LeakyShipsAPI/Model/Session.cs | 0 {backend => backend-C#}/LeakyShipsAPI/Program.cs | 0 .../LeakyShipsAPI/Properties/launchSettings.json | 0 {backend => backend-C#}/LeakyShipsAPI/Repositories/IRepository.cs | 0 .../LeakyShipsAPI/Repositories/PlayerRepository.cs | 0 .../LeakyShipsAPI/Repositories/SessionRepository.cs | 0 .../LeakyShipsAPI/appsettings.Development.json | 0 {backend => backend-C#}/LeakyShipsAPI/appsettings.json | 0 16 files changed, 0 insertions(+), 0 deletions(-) rename {backend => backend-C#}/.gitignore (100%) rename {backend => backend-C#}/LeakyShipsAPI.sln (100%) rename {backend => backend-C#}/LeakyShipsAPI/.dockerignore (100%) rename {backend => backend-C#}/LeakyShipsAPI/Dockerfile (100%) rename {backend => backend-C#}/LeakyShipsAPI/Hubs/GameHub.cs (100%) rename {backend => backend-C#}/LeakyShipsAPI/LeakyShipsAPI.csproj (100%) rename {backend => backend-C#}/LeakyShipsAPI/Model/Board.cs (100%) rename {backend => backend-C#}/LeakyShipsAPI/Model/Player.cs (100%) rename {backend => backend-C#}/LeakyShipsAPI/Model/Session.cs (100%) rename {backend => backend-C#}/LeakyShipsAPI/Program.cs (100%) rename {backend => backend-C#}/LeakyShipsAPI/Properties/launchSettings.json (100%) rename {backend => backend-C#}/LeakyShipsAPI/Repositories/IRepository.cs (100%) rename {backend => backend-C#}/LeakyShipsAPI/Repositories/PlayerRepository.cs (100%) rename {backend => backend-C#}/LeakyShipsAPI/Repositories/SessionRepository.cs (100%) rename {backend => backend-C#}/LeakyShipsAPI/appsettings.Development.json (100%) rename {backend => backend-C#}/LeakyShipsAPI/appsettings.json (100%) diff --git a/backend/.gitignore b/backend-C#/.gitignore similarity index 100% rename from backend/.gitignore rename to backend-C#/.gitignore diff --git a/backend/LeakyShipsAPI.sln b/backend-C#/LeakyShipsAPI.sln similarity index 100% rename from backend/LeakyShipsAPI.sln rename to backend-C#/LeakyShipsAPI.sln diff --git a/backend/LeakyShipsAPI/.dockerignore b/backend-C#/LeakyShipsAPI/.dockerignore similarity index 100% rename from backend/LeakyShipsAPI/.dockerignore rename to backend-C#/LeakyShipsAPI/.dockerignore diff --git a/backend/LeakyShipsAPI/Dockerfile b/backend-C#/LeakyShipsAPI/Dockerfile similarity index 100% rename from backend/LeakyShipsAPI/Dockerfile rename to backend-C#/LeakyShipsAPI/Dockerfile diff --git a/backend/LeakyShipsAPI/Hubs/GameHub.cs b/backend-C#/LeakyShipsAPI/Hubs/GameHub.cs similarity index 100% rename from backend/LeakyShipsAPI/Hubs/GameHub.cs rename to backend-C#/LeakyShipsAPI/Hubs/GameHub.cs diff --git a/backend/LeakyShipsAPI/LeakyShipsAPI.csproj b/backend-C#/LeakyShipsAPI/LeakyShipsAPI.csproj similarity index 100% rename from backend/LeakyShipsAPI/LeakyShipsAPI.csproj rename to backend-C#/LeakyShipsAPI/LeakyShipsAPI.csproj diff --git a/backend/LeakyShipsAPI/Model/Board.cs b/backend-C#/LeakyShipsAPI/Model/Board.cs similarity index 100% rename from backend/LeakyShipsAPI/Model/Board.cs rename to backend-C#/LeakyShipsAPI/Model/Board.cs diff --git a/backend/LeakyShipsAPI/Model/Player.cs b/backend-C#/LeakyShipsAPI/Model/Player.cs similarity index 100% rename from backend/LeakyShipsAPI/Model/Player.cs rename to backend-C#/LeakyShipsAPI/Model/Player.cs diff --git a/backend/LeakyShipsAPI/Model/Session.cs b/backend-C#/LeakyShipsAPI/Model/Session.cs similarity index 100% rename from backend/LeakyShipsAPI/Model/Session.cs rename to backend-C#/LeakyShipsAPI/Model/Session.cs diff --git a/backend/LeakyShipsAPI/Program.cs b/backend-C#/LeakyShipsAPI/Program.cs similarity index 100% rename from backend/LeakyShipsAPI/Program.cs rename to backend-C#/LeakyShipsAPI/Program.cs diff --git a/backend/LeakyShipsAPI/Properties/launchSettings.json b/backend-C#/LeakyShipsAPI/Properties/launchSettings.json similarity index 100% rename from backend/LeakyShipsAPI/Properties/launchSettings.json rename to backend-C#/LeakyShipsAPI/Properties/launchSettings.json diff --git a/backend/LeakyShipsAPI/Repositories/IRepository.cs b/backend-C#/LeakyShipsAPI/Repositories/IRepository.cs similarity index 100% rename from backend/LeakyShipsAPI/Repositories/IRepository.cs rename to backend-C#/LeakyShipsAPI/Repositories/IRepository.cs diff --git a/backend/LeakyShipsAPI/Repositories/PlayerRepository.cs b/backend-C#/LeakyShipsAPI/Repositories/PlayerRepository.cs similarity index 100% rename from backend/LeakyShipsAPI/Repositories/PlayerRepository.cs rename to backend-C#/LeakyShipsAPI/Repositories/PlayerRepository.cs diff --git a/backend/LeakyShipsAPI/Repositories/SessionRepository.cs b/backend-C#/LeakyShipsAPI/Repositories/SessionRepository.cs similarity index 100% rename from backend/LeakyShipsAPI/Repositories/SessionRepository.cs rename to backend-C#/LeakyShipsAPI/Repositories/SessionRepository.cs diff --git a/backend/LeakyShipsAPI/appsettings.Development.json b/backend-C#/LeakyShipsAPI/appsettings.Development.json similarity index 100% rename from backend/LeakyShipsAPI/appsettings.Development.json rename to backend-C#/LeakyShipsAPI/appsettings.Development.json diff --git a/backend/LeakyShipsAPI/appsettings.json b/backend-C#/LeakyShipsAPI/appsettings.json similarity index 100% rename from backend/LeakyShipsAPI/appsettings.json rename to backend-C#/LeakyShipsAPI/appsettings.json