-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathCalculator.sln
83 lines (83 loc) · 4.74 KB
/
Calculator.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.28803.156
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Calculator.Core", "Calculator.Core\Calculator.Core.csproj", "{FB776AD3-D01F-4DCF-9E99-2697BFFB21F3}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Calculator.Core.Tests", "Calculator.Core.Tests\Calculator.Core.Tests.csproj", "{013A7C74-2291-43E5-AF1D-502F2ED62987}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Calculator.Win32", "Calculator.Win32\Calculator.Win32.vcxproj", "{4DB1CA14-5035-4848-BCDE-10F0A7DC0F50}"
ProjectSection(ProjectDependencies) = postProject
{FB776AD3-D01F-4DCF-9E99-2697BFFB21F3} = {FB776AD3-D01F-4DCF-9E99-2697BFFB21F3}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Calculator.UEFI", "Calculator.UEFI\Calculator.UEFI.vcxproj", "{B4BC66C2-9D98-40BC-BB24-94CA3D0E3DD5}"
ProjectSection(ProjectDependencies) = postProject
{FB776AD3-D01F-4DCF-9E99-2697BFFB21F3} = {FB776AD3-D01F-4DCF-9E99-2697BFFB21F3}
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{043B61D4-4009-455C-8D70-DCD2A50BA920}"
ProjectSection(SolutionItems) = preProject
README.md = README.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Generated", "Generated", "{51D4E42A-82E9-436C-BB94-1143DC140A40}"
ProjectSection(SolutionItems) = preProject
Generated\.gitignore = Generated\.gitignore
Generated\build.bat = Generated\build.bat
Generated\CMakeLists.txt = Generated\CMakeLists.txt
Generated\main.c = Generated\main.c
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{FB776AD3-D01F-4DCF-9E99-2697BFFB21F3}.Debug|x64.ActiveCfg = Debug|Any CPU
{FB776AD3-D01F-4DCF-9E99-2697BFFB21F3}.Debug|x64.Build.0 = Debug|Any CPU
{FB776AD3-D01F-4DCF-9E99-2697BFFB21F3}.Debug|x86.ActiveCfg = Debug|Any CPU
{FB776AD3-D01F-4DCF-9E99-2697BFFB21F3}.Debug|x86.Build.0 = Debug|Any CPU
{FB776AD3-D01F-4DCF-9E99-2697BFFB21F3}.Release|x64.ActiveCfg = Release|Any CPU
{FB776AD3-D01F-4DCF-9E99-2697BFFB21F3}.Release|x64.Build.0 = Release|Any CPU
{FB776AD3-D01F-4DCF-9E99-2697BFFB21F3}.Release|x86.ActiveCfg = Release|Any CPU
{FB776AD3-D01F-4DCF-9E99-2697BFFB21F3}.Release|x86.Build.0 = Release|Any CPU
{013A7C74-2291-43E5-AF1D-502F2ED62987}.Debug|x64.ActiveCfg = Debug|Any CPU
{013A7C74-2291-43E5-AF1D-502F2ED62987}.Debug|x64.Build.0 = Debug|Any CPU
{013A7C74-2291-43E5-AF1D-502F2ED62987}.Debug|x86.ActiveCfg = Debug|Any CPU
{013A7C74-2291-43E5-AF1D-502F2ED62987}.Debug|x86.Build.0 = Debug|Any CPU
{013A7C74-2291-43E5-AF1D-502F2ED62987}.Release|x64.ActiveCfg = Release|Any CPU
{013A7C74-2291-43E5-AF1D-502F2ED62987}.Release|x64.Build.0 = Release|Any CPU
{013A7C74-2291-43E5-AF1D-502F2ED62987}.Release|x86.ActiveCfg = Release|Any CPU
{013A7C74-2291-43E5-AF1D-502F2ED62987}.Release|x86.Build.0 = Release|Any CPU
{4DB1CA14-5035-4848-BCDE-10F0A7DC0F50}.Debug|x64.ActiveCfg = Debug|x64
{4DB1CA14-5035-4848-BCDE-10F0A7DC0F50}.Debug|x64.Build.0 = Debug|x64
{4DB1CA14-5035-4848-BCDE-10F0A7DC0F50}.Debug|x86.ActiveCfg = Debug|Win32
{4DB1CA14-5035-4848-BCDE-10F0A7DC0F50}.Debug|x86.Build.0 = Debug|Win32
{4DB1CA14-5035-4848-BCDE-10F0A7DC0F50}.Release|x64.ActiveCfg = Release|x64
{4DB1CA14-5035-4848-BCDE-10F0A7DC0F50}.Release|x64.Build.0 = Release|x64
{4DB1CA14-5035-4848-BCDE-10F0A7DC0F50}.Release|x86.ActiveCfg = Release|Win32
{4DB1CA14-5035-4848-BCDE-10F0A7DC0F50}.Release|x86.Build.0 = Release|Win32
{B4BC66C2-9D98-40BC-BB24-94CA3D0E3DD5}.Debug|x64.ActiveCfg = Debug|x64
{B4BC66C2-9D98-40BC-BB24-94CA3D0E3DD5}.Debug|x64.Build.0 = Debug|x64
{B4BC66C2-9D98-40BC-BB24-94CA3D0E3DD5}.Debug|x86.ActiveCfg = Debug|Win32
{B4BC66C2-9D98-40BC-BB24-94CA3D0E3DD5}.Debug|x86.Build.0 = Debug|Win32
{B4BC66C2-9D98-40BC-BB24-94CA3D0E3DD5}.Release|x64.ActiveCfg = Release|x64
{B4BC66C2-9D98-40BC-BB24-94CA3D0E3DD5}.Release|x64.Build.0 = Release|x64
{B4BC66C2-9D98-40BC-BB24-94CA3D0E3DD5}.Release|x86.ActiveCfg = Release|Win32
{B4BC66C2-9D98-40BC-BB24-94CA3D0E3DD5}.Release|x86.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{51D4E42A-82E9-436C-BB94-1143DC140A40} = {043B61D4-4009-455C-8D70-DCD2A50BA920}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {740853F2-042F-4244-A0A1-D41746959DB2}
EndGlobalSection
EndGlobal