diff --git a/.gitignore b/.gitignore index 9965de2..d291003 100644 --- a/.gitignore +++ b/.gitignore @@ -15,7 +15,7 @@ # Mono auto generated files mono_crash.* - +cyber-boom-files/ # Build results [Dd]ebug/ [Dd]ebugPublic/ diff --git a/CyberBoom.sln b/CyberBoom.sln index 886f16b..7e6f95d 100644 --- a/CyberBoom.sln +++ b/CyberBoom.sln @@ -1,25 +1,22 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.5.002.0 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CyberBoom", "CyberBoom.csproj", "{A8F9D7D8-DDA5-479B-8735-00E706A5827F}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {A8F9D7D8-DDA5-479B-8735-00E706A5827F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {A8F9D7D8-DDA5-479B-8735-00E706A5827F}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A8F9D7D8-DDA5-479B-8735-00E706A5827F}.Release|Any CPU.ActiveCfg = Release|Any CPU - {A8F9D7D8-DDA5-479B-8735-00E706A5827F}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {674E1E42-AF3F-4DDA-A4F1-EDD84025DB24} - EndGlobalSection -EndGlobal + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31903.59 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CyberBoom", "CyberBoom\CyberBoom.csproj", "{A88E5329-6720-412D-9FB7-E7F794A4F065}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A88E5329-6720-412D-9FB7-E7F794A4F065}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A88E5329-6720-412D-9FB7-E7F794A4F065}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A88E5329-6720-412D-9FB7-E7F794A4F065}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A88E5329-6720-412D-9FB7-E7F794A4F065}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/Controllers/UserController.cs b/CyberBoom/Controllers/UserController.cs similarity index 100% rename from Controllers/UserController.cs rename to CyberBoom/Controllers/UserController.cs diff --git a/CyberBoom.csproj b/CyberBoom/CyberBoom.csproj similarity index 100% rename from CyberBoom.csproj rename to CyberBoom/CyberBoom.csproj diff --git a/CyberBoom/CyberBoom.sln b/CyberBoom/CyberBoom.sln new file mode 100644 index 0000000..886f16b --- /dev/null +++ b/CyberBoom/CyberBoom.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.5.002.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CyberBoom", "CyberBoom.csproj", "{A8F9D7D8-DDA5-479B-8735-00E706A5827F}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A8F9D7D8-DDA5-479B-8735-00E706A5827F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A8F9D7D8-DDA5-479B-8735-00E706A5827F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A8F9D7D8-DDA5-479B-8735-00E706A5827F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A8F9D7D8-DDA5-479B-8735-00E706A5827F}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {674E1E42-AF3F-4DDA-A4F1-EDD84025DB24} + EndGlobalSection +EndGlobal diff --git a/DbContext/User.cs b/CyberBoom/DbContext/User.cs similarity index 100% rename from DbContext/User.cs rename to CyberBoom/DbContext/User.cs diff --git a/Program.cs b/CyberBoom/Program.cs similarity index 100% rename from Program.cs rename to CyberBoom/Program.cs diff --git a/Properties/launchSettings.json b/CyberBoom/Properties/launchSettings.json similarity index 100% rename from Properties/launchSettings.json rename to CyberBoom/Properties/launchSettings.json diff --git a/WeatherForecast.cs b/CyberBoom/WeatherForecast.cs similarity index 100% rename from WeatherForecast.cs rename to CyberBoom/WeatherForecast.cs diff --git a/appsettings.Development.json b/CyberBoom/appsettings.Development.json similarity index 100% rename from appsettings.Development.json rename to CyberBoom/appsettings.Development.json diff --git a/appsettings.json b/CyberBoom/appsettings.json similarity index 100% rename from appsettings.json rename to CyberBoom/appsettings.json diff --git a/cyber-boom-files/_gitlab-ci.yml b/cyber-boom-files/_gitlab-ci.yml deleted file mode 100644 index b6ac224..0000000 --- a/cyber-boom-files/_gitlab-ci.yml +++ /dev/null @@ -1,21 +0,0 @@ -variables: - DOCKER_IMAGE_NAME: '$CI_REGISTRY_USER/$CI_COMMIT_BRANCH' - -default: - image: docker:latest - services: - - docker:dind - before_script: - - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY - -stages: - - build-docker-image - - - -build-docker-image: - stage: build - - script: - - docker build -t '$DOCKER_IMAGE_NAME' . - - docker push '$DOCKER_IMAGE_NAME' \ No newline at end of file diff --git a/cyber-boom-files/client_secret_1074677274720-anq59r07nlu1nh7r444pg7llstsu9qp3.apps.googleusercontent.com.json b/cyber-boom-files/client_secret_1074677274720-anq59r07nlu1nh7r444pg7llstsu9qp3.apps.googleusercontent.com.json deleted file mode 100644 index cf2cb0f..0000000 --- a/cyber-boom-files/client_secret_1074677274720-anq59r07nlu1nh7r444pg7llstsu9qp3.apps.googleusercontent.com.json +++ /dev/null @@ -1,11 +0,0 @@ -{"web": - { - "client_id":"1074677274720-anq59r07nlu1nh7r444pg7llstsu9qp3.apps.googleusercontent.com", - "project_id":"charged-mind-237506", - "auth_uri":"https://accounts.google.com/o/oauth2/auth", - "token_uri":"https://oauth2.googleapis.com/token", - "auth_provider_x509_cert_url":"https://www.googleapis.com/oauth2/v1/certs", - "client_secret":"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", - "redirect_uris":["https://localhost:7223"] - } -} \ No newline at end of file