-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSimpleRecursiveDescentParser.sln
51 lines (51 loc) · 2.96 KB
/
SimpleRecursiveDescentParser.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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.1.32421.90
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ArithmeticParser", "ArithmeticParser\ArithmeticParser.csproj", "{AEE04BDB-97AC-44DD-B6F4-7AC8214615FB}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ArithmeticParser.Test", "ArithmeticParser.Test\ArithmeticParser.Test.csproj", "{31BA1B18-E2DC-432D-9D75-2744C11E937E}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LambdaCalculusParser", "LambdaCalculusParser\LambdaCalculusParser.csproj", "{00CF7D56-DF13-4CBC-A975-F47C2F9F229F}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LambdaCalculusParser.Test", "LambdaCalculusParser.Test\LambdaCalculusParser.Test.csproj", "{A39B54C6-FAA8-4E56-87A3-DF13FDA847EF}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build Config", "Build Config", "{B9AA074D-7B04-4104-850B-7FE5CAE2E376}"
ProjectSection(SolutionItems) = preProject
Directory.Build.props = Directory.Build.props
Directory.Packages.props = Directory.Packages.props
global.json = global.json
nuget.config = nuget.config
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{AEE04BDB-97AC-44DD-B6F4-7AC8214615FB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{AEE04BDB-97AC-44DD-B6F4-7AC8214615FB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AEE04BDB-97AC-44DD-B6F4-7AC8214615FB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AEE04BDB-97AC-44DD-B6F4-7AC8214615FB}.Release|Any CPU.Build.0 = Release|Any CPU
{31BA1B18-E2DC-432D-9D75-2744C11E937E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{31BA1B18-E2DC-432D-9D75-2744C11E937E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{31BA1B18-E2DC-432D-9D75-2744C11E937E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{31BA1B18-E2DC-432D-9D75-2744C11E937E}.Release|Any CPU.Build.0 = Release|Any CPU
{00CF7D56-DF13-4CBC-A975-F47C2F9F229F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{00CF7D56-DF13-4CBC-A975-F47C2F9F229F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{00CF7D56-DF13-4CBC-A975-F47C2F9F229F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{00CF7D56-DF13-4CBC-A975-F47C2F9F229F}.Release|Any CPU.Build.0 = Release|Any CPU
{A39B54C6-FAA8-4E56-87A3-DF13FDA847EF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A39B54C6-FAA8-4E56-87A3-DF13FDA847EF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A39B54C6-FAA8-4E56-87A3-DF13FDA847EF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A39B54C6-FAA8-4E56-87A3-DF13FDA847EF}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {3F3EA397-360A-4288-89EA-EE2347E2B1B1}
EndGlobalSection
EndGlobal