Skip to content

Commit

Permalink
Merge pull request #2 from Redacted-Team/shahan-sprint-4
Browse files Browse the repository at this point in the history
Renaming folders and solutions and namespaces
  • Loading branch information
brewerkm1 authored Apr 2, 2024
2 parents 6adcbe0 + e74e829 commit 1d72d27
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion GameMicroServer.sln → APIGateway.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.7.34221.43
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GameMicroServer", "GameMicroServer\GameMicroServer.csproj", "{C8787DE3-73A1-4FA9-BC23-865FCF0560AF}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "APIGateway", "APIGateway\APIGateway.csproj", "{C8787DE3-73A1-4FA9-BC23-865FCF0560AF}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
using Microsoft.Extensions.Caching.Distributed;
using System.Text.Json;

namespace Micro
namespace Gateway
{
[ApiController]
[Route("[controller]")]
public class MicroController : ControllerBase
public class GatewayController : ControllerBase
{
private static readonly List<GameInfo> TheInfo = new List<GameInfo>
{
Expand Down Expand Up @@ -54,9 +54,9 @@ public class MicroController : ControllerBase

};

private readonly ILogger<MicroController> _logger;
private readonly ILogger<GatewayController> _logger;

public MicroController(ILogger<MicroController> logger)
public GatewayController(ILogger<GatewayController> logger)
{
_logger = logger;
}
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion GameMicroServer/GameInfo.cs → APIGateway/GameInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Micro
namespace Gateway
{
public class GameInfo
{
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"profiles": {
"GameMicroServer": {
"APIGateway": {
"commandName": "Project",
"launchBrowser": true,
"launchUrl": "swagger",
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 1d72d27

Please sign in to comment.