-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVendingMachineSimulator.sln
61 lines (61 loc) · 3.55 KB
/
VendingMachineSimulator.sln
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
53
54
55
56
57
58
59
60
61
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27004.2000
MinimumVisualStudioVersion = 15.0.0
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{9CC6EE25-2FCF-4ABB-82D4-CE5DF3986EC5}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{D9AB84CA-CC7A-4C01-9832-4C157ED4B391}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Vending.Machine.App", "src\Vending.Machine.App\Vending.Machine.App.csproj", "{EFE5D1D0-ABA4-4F41-9AD0-DA19FEF518CB}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Vending.Machine.Abstraction", "src\Vending.Machine.Abstraction\Vending.Machine.Abstraction.csproj", "{264CFBB9-B7E1-4CA1-BB75-B8B07ECFED31}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Vending.Machine.Console", "src\Vending.Machine.Console\Vending.Machine.Console.csproj", "{0F656BA0-9F82-4F02-B133-D029C9234409}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Vending.Machine.Test", "test\Vending.Machine.Test\Vending.Machine.Test.csproj", "{6EEA74DB-B4E3-48D6-AF1B-F5B929852EB2}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{4360D9AD-5189-4365-ADD5-80FE94970A6B}"
ProjectSection(SolutionItems) = preProject
.gitattributes = .gitattributes
.gitignore = .gitignore
LICENSE = LICENSE
README.md = README.md
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{EFE5D1D0-ABA4-4F41-9AD0-DA19FEF518CB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EFE5D1D0-ABA4-4F41-9AD0-DA19FEF518CB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EFE5D1D0-ABA4-4F41-9AD0-DA19FEF518CB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EFE5D1D0-ABA4-4F41-9AD0-DA19FEF518CB}.Release|Any CPU.Build.0 = Release|Any CPU
{264CFBB9-B7E1-4CA1-BB75-B8B07ECFED31}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{264CFBB9-B7E1-4CA1-BB75-B8B07ECFED31}.Debug|Any CPU.Build.0 = Debug|Any CPU
{264CFBB9-B7E1-4CA1-BB75-B8B07ECFED31}.Release|Any CPU.ActiveCfg = Release|Any CPU
{264CFBB9-B7E1-4CA1-BB75-B8B07ECFED31}.Release|Any CPU.Build.0 = Release|Any CPU
{0F656BA0-9F82-4F02-B133-D029C9234409}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0F656BA0-9F82-4F02-B133-D029C9234409}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0F656BA0-9F82-4F02-B133-D029C9234409}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0F656BA0-9F82-4F02-B133-D029C9234409}.Release|Any CPU.Build.0 = Release|Any CPU
{6EEA74DB-B4E3-48D6-AF1B-F5B929852EB2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6EEA74DB-B4E3-48D6-AF1B-F5B929852EB2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6EEA74DB-B4E3-48D6-AF1B-F5B929852EB2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6EEA74DB-B4E3-48D6-AF1B-F5B929852EB2}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{EFE5D1D0-ABA4-4F41-9AD0-DA19FEF518CB} = {9CC6EE25-2FCF-4ABB-82D4-CE5DF3986EC5}
{264CFBB9-B7E1-4CA1-BB75-B8B07ECFED31} = {9CC6EE25-2FCF-4ABB-82D4-CE5DF3986EC5}
{0F656BA0-9F82-4F02-B133-D029C9234409} = {9CC6EE25-2FCF-4ABB-82D4-CE5DF3986EC5}
{6EEA74DB-B4E3-48D6-AF1B-F5B929852EB2} = {D9AB84CA-CC7A-4C01-9832-4C157ED4B391}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {5B495B89-958A-48B9-B067-956A8F378957}
EndGlobalSection
EndGlobal