Skip to content

Commit 457e5ea

Browse files
authored
Merge pull request #13 from NiceOneFox/T11_Rename_Project_Folder
Close Rename Project Folder
2 parents 05d6741 + b3b043a commit 457e5ea

File tree

10 files changed

+10
-7
lines changed

10 files changed

+10
-7
lines changed
File renamed without changes.

backend/ServiceSimulation/WebApplication2/Configuration/ApiMapperConfigurator.cs renamed to backend/ServiceSimulation/Api/Configuration/ApiMapperConfigurator.cs

File renamed without changes.

backend/ServiceSimulation/WebApplication2/Configuration/MapperRegistration.cs renamed to backend/ServiceSimulation/Api/Configuration/MapperRegistration.cs

File renamed without changes.

backend/ServiceSimulation/WebApplication2/Controllers/Simulation.cs renamed to backend/ServiceSimulation/Api/Controllers/Simulation.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ public class Simulation : Controller
1515
private readonly IResults _results;
1616
private readonly IResultManager _resultManager;
1717
private readonly IMapper _mapper;
18-
public Simulation(ISimulationService simulationService, ITimeProvider time, IResults results, IResultManager resultManager, IMapper mapper)
18+
public Simulation(ISimulationService simulationService,
19+
ITimeProvider time, IResults results,
20+
IResultManager resultManager,
21+
IMapper mapper)
1922
{
2023
_simulationService = simulationService;
2124
_time = time;

backend/ServiceSimulation/WebApplication2/Entities/ApiResults.cs renamed to backend/ServiceSimulation/Api/Entities/ApiResults.cs

File renamed without changes.
File renamed without changes.

backend/ServiceSimulation/WebApplication2/Properties/launchSettings.json renamed to backend/ServiceSimulation/Api/Properties/launchSettings.json

File renamed without changes.

backend/ServiceSimulation/WebApplication2/appsettings.Development.json renamed to backend/ServiceSimulation/Api/appsettings.Development.json

File renamed without changes.
File renamed without changes.

backend/ServiceSimulation/ServiceSimulation.sln

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,24 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
44
VisualStudioVersion = 17.1.32210.238
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Api", "WebApplication2\Api.csproj", "{88B914B8-60F4-480A-9BA0-21E08CA53257}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Bll.Domain", "Bll.Domain\Bll.Domain.csproj", "{A2F40071-9955-4AB9-9C6E-6BB2B34BC580}"
77
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bll.Domain", "Bll.Domain\Bll.Domain.csproj", "{A2F40071-9955-4AB9-9C6E-6BB2B34BC580}"
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Api", "Api\Api.csproj", "{22B0B8F3-C889-42A4-AE31-C858C99EDEFF}"
99
EndProject
1010
Global
1111
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1212
Debug|Any CPU = Debug|Any CPU
1313
Release|Any CPU = Release|Any CPU
1414
EndGlobalSection
1515
GlobalSection(ProjectConfigurationPlatforms) = postSolution
16-
{88B914B8-60F4-480A-9BA0-21E08CA53257}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
17-
{88B914B8-60F4-480A-9BA0-21E08CA53257}.Debug|Any CPU.Build.0 = Debug|Any CPU
18-
{88B914B8-60F4-480A-9BA0-21E08CA53257}.Release|Any CPU.ActiveCfg = Release|Any CPU
19-
{88B914B8-60F4-480A-9BA0-21E08CA53257}.Release|Any CPU.Build.0 = Release|Any CPU
2016
{A2F40071-9955-4AB9-9C6E-6BB2B34BC580}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
2117
{A2F40071-9955-4AB9-9C6E-6BB2B34BC580}.Debug|Any CPU.Build.0 = Debug|Any CPU
2218
{A2F40071-9955-4AB9-9C6E-6BB2B34BC580}.Release|Any CPU.ActiveCfg = Release|Any CPU
2319
{A2F40071-9955-4AB9-9C6E-6BB2B34BC580}.Release|Any CPU.Build.0 = Release|Any CPU
20+
{22B0B8F3-C889-42A4-AE31-C858C99EDEFF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
21+
{22B0B8F3-C889-42A4-AE31-C858C99EDEFF}.Debug|Any CPU.Build.0 = Debug|Any CPU
22+
{22B0B8F3-C889-42A4-AE31-C858C99EDEFF}.Release|Any CPU.ActiveCfg = Release|Any CPU
23+
{22B0B8F3-C889-42A4-AE31-C858C99EDEFF}.Release|Any CPU.Build.0 = Release|Any CPU
2424
EndGlobalSection
2525
GlobalSection(SolutionProperties) = preSolution
2626
HideSolutionNode = FALSE

0 commit comments

Comments
 (0)