-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathExpressionParserZero.sln
More file actions
60 lines (60 loc) · 3.3 KB
/
ExpressionParserZero.sln
File metadata and controls
60 lines (60 loc) · 3.3 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
53
54
55
56
57
58
59
60
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.7.34031.279
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExpressionParserUnitTests", "Tests\ExpressionParserUnitTests.csproj", "{CC31CD6E-69A2-4DAC-99A8-2044C5DFCE6D}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{0C4FC1D4-5306-4FF8-A8E9-5B5C01843288}"
ProjectSection(SolutionItems) = preProject
License.txt = License.txt
ReadMe.md = ReadMe.md
Readme.NuGet.md = Readme.NuGet.md
ReadMe.v3.md = ReadMe.v3.md
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ExpressionParserZero", "Parser\ExpressionParserZero.csproj", "{F71FC8A4-5952-4D47-99E2-14EDA90F36C2}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Images", "Images", "{C100780A-934E-49A5-AF52-0FAF6D914D7E}"
ProjectSection(SolutionItems) = preProject
Images\BasicFlowchart.png = Images\BasicFlowchart.png
Images\F0 gravatar.png = Images\F0 gravatar.png
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VariableStoreZero", "VariableStoreZero\VariableStoreZero.csproj", "{95937A11-204C-4150-BDFC-7C75167EA772}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MatrixCodeGen", "MatrixCodeGen\MatrixCodeGen.csproj", "{52E154D7-5A7D-418A-94BD-F2CB0E716453}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{CC31CD6E-69A2-4DAC-99A8-2044C5DFCE6D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CC31CD6E-69A2-4DAC-99A8-2044C5DFCE6D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CC31CD6E-69A2-4DAC-99A8-2044C5DFCE6D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CC31CD6E-69A2-4DAC-99A8-2044C5DFCE6D}.Release|Any CPU.Build.0 = Release|Any CPU
{F71FC8A4-5952-4D47-99E2-14EDA90F36C2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F71FC8A4-5952-4D47-99E2-14EDA90F36C2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F71FC8A4-5952-4D47-99E2-14EDA90F36C2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F71FC8A4-5952-4D47-99E2-14EDA90F36C2}.Release|Any CPU.Build.0 = Release|Any CPU
{95937A11-204C-4150-BDFC-7C75167EA772}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{95937A11-204C-4150-BDFC-7C75167EA772}.Debug|Any CPU.Build.0 = Debug|Any CPU
{95937A11-204C-4150-BDFC-7C75167EA772}.Release|Any CPU.ActiveCfg = Release|Any CPU
{95937A11-204C-4150-BDFC-7C75167EA772}.Release|Any CPU.Build.0 = Release|Any CPU
{52E154D7-5A7D-418A-94BD-F2CB0E716453}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{52E154D7-5A7D-418A-94BD-F2CB0E716453}.Debug|Any CPU.Build.0 = Debug|Any CPU
{52E154D7-5A7D-418A-94BD-F2CB0E716453}.Release|Any CPU.ActiveCfg = Release|Any CPU
{52E154D7-5A7D-418A-94BD-F2CB0E716453}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{C100780A-934E-49A5-AF52-0FAF6D914D7E} = {0C4FC1D4-5306-4FF8-A8E9-5B5C01843288}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {042BBC39-6478-41CD-915D-176E58FB5819}
EndGlobalSection
EndGlobal