-
Notifications
You must be signed in to change notification settings - Fork 0
/
Compiler.sln
49 lines (49 loc) · 3.05 KB
/
Compiler.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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.31624.102
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Compiler.Lexer", "Compiler.Lexer\Compiler.Lexer.csproj", "{56FA74EC-8B70-4F1D-A83C-14E6F9C9AFCA}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Compiler.Console", "Compiler.Console\Compiler.Console.csproj", "{DD8D2483-4AF0-44F8-986A-F43622B3E744}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Compiler.Parser", "Compiler.Parser\Compiler.Parser.csproj", "{63E98F77-4F0B-421E-BBD3-05A33557D2CC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Compiler.AbstractSyntaxTree", "Compiler.AbstractSyntaxTree\Compiler.AbstractSyntaxTree.csproj", "{0CC4438E-1456-48C1-8DAC-FC1A2F8ADF67}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Compiler.Core", "Compiler.Core\Compiler.Core.csproj", "{FBC8D6A6-B6F0-4947-B001-EAD7E4306AD3}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{56FA74EC-8B70-4F1D-A83C-14E6F9C9AFCA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{56FA74EC-8B70-4F1D-A83C-14E6F9C9AFCA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{56FA74EC-8B70-4F1D-A83C-14E6F9C9AFCA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{56FA74EC-8B70-4F1D-A83C-14E6F9C9AFCA}.Release|Any CPU.Build.0 = Release|Any CPU
{DD8D2483-4AF0-44F8-986A-F43622B3E744}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DD8D2483-4AF0-44F8-986A-F43622B3E744}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DD8D2483-4AF0-44F8-986A-F43622B3E744}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DD8D2483-4AF0-44F8-986A-F43622B3E744}.Release|Any CPU.Build.0 = Release|Any CPU
{63E98F77-4F0B-421E-BBD3-05A33557D2CC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{63E98F77-4F0B-421E-BBD3-05A33557D2CC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{63E98F77-4F0B-421E-BBD3-05A33557D2CC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{63E98F77-4F0B-421E-BBD3-05A33557D2CC}.Release|Any CPU.Build.0 = Release|Any CPU
{0CC4438E-1456-48C1-8DAC-FC1A2F8ADF67}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0CC4438E-1456-48C1-8DAC-FC1A2F8ADF67}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0CC4438E-1456-48C1-8DAC-FC1A2F8ADF67}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0CC4438E-1456-48C1-8DAC-FC1A2F8ADF67}.Release|Any CPU.Build.0 = Release|Any CPU
{FBC8D6A6-B6F0-4947-B001-EAD7E4306AD3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FBC8D6A6-B6F0-4947-B001-EAD7E4306AD3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FBC8D6A6-B6F0-4947-B001-EAD7E4306AD3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FBC8D6A6-B6F0-4947-B001-EAD7E4306AD3}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {C0C448AF-E634-483F-A4A1-10FF1AEC5315}
EndGlobalSection
EndGlobal