-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBonusSystem.sln
More file actions
52 lines (46 loc) · 2.81 KB
/
BonusSystem.sln
File metadata and controls
52 lines (46 loc) · 2.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
Microsoft Visual Studio Solution File, Format Version 12.00
# Rider Solution File
VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{FF7CD3A9-5E8A-4C6C-B81D-BEBFE0E75A3C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BonusSystem.Api", "src/BonusSystem.Api/BonusSystem.Api.csproj", "{1A8DE7D5-8C6B-4CC3-B8A0-2F4B45B26716}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BonusSystem.Core", "src/BonusSystem.Core/BonusSystem.Core.csproj", "{FAB55BE9-73CE-4C55-9A8E-D2924AB8E78A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BonusSystem.Infrastructure", "src/BonusSystem.Infrastructure/BonusSystem.Infrastructure.csproj", "{8B13F4A5-84E1-4A78-A6A3-3E1A3D2DAFBB}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BonusSystem.Shared", "src/BonusSystem.Shared/BonusSystem.Shared.csproj", "{FFDF6C65-C8C5-4FE6-A5C8-C4D9EA9B92FA}"
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(NestedProjects) = preSolution
{1A8DE7D5-8C6B-4CC3-B8A0-2F4B45B26716} = {FF7CD3A9-5E8A-4C6C-B81D-BEBFE0E75A3C}
{FAB55BE9-73CE-4C55-9A8E-D2924AB8E78A} = {FF7CD3A9-5E8A-4C6C-B81D-BEBFE0E75A3C}
{8B13F4A5-84E1-4A78-A6A3-3E1A3D2DAFBB} = {FF7CD3A9-5E8A-4C6C-B81D-BEBFE0E75A3C}
{FFDF6C65-C8C5-4FE6-A5C8-C4D9EA9B92FA} = {FF7CD3A9-5E8A-4C6C-B81D-BEBFE0E75A3C}
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{1A8DE7D5-8C6B-4CC3-B8A0-2F4B45B26716}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1A8DE7D5-8C6B-4CC3-B8A0-2F4B45B26716}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FAB55BE9-73CE-4C55-9A8E-D2924AB8E78A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FAB55BE9-73CE-4C55-9A8E-D2924AB8E78A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8B13F4A5-84E1-4A78-A6A3-3E1A3D2DAFBB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8B13F4A5-84E1-4A78-A6A3-3E1A3D2DAFBB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FFDF6C65-C8C5-4FE6-A5C8-C4D9EA9B92FA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FFDF6C65-C8C5-4FE6-A5C8-C4D9EA9B92FA}.Debug|Any CPU.Build.0 = Debug|Any CPU
EndGlobalSection
EndGlobal
Explanation
Project Paths: Updated paths to use forward slashes (/) for consistency.
Test Projects: Added entries for the test projects located in the tests directory.
Nested Projects: Ensured that the test projects are nested under the tests solution folder.
This should align with your folder structure and ensure that all projects are correctly referenced in the solution file. If you encounter any issues or need further adjustments, feel free to ask!
Edit in Pages
AI-generated content may be incorrect