forked from DavidObando/gsharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GSharp.sln
77 lines (77 loc) · 4.64 KB
/
GSharp.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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.28803.202
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Compiler", "src\Compiler\Compiler.csproj", "{A37572EA-AA34-4026-B5E2-B89493AC72B6}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{92730C2B-ADEB-41BF-9DEC-78F35AB8FCAD}"
ProjectSection(SolutionItems) = preProject
build\.stylecop.json = build\.stylecop.json
build\gsharp.build.props = build\gsharp.build.props
build\gsharp.build.ruleset = build\gsharp.build.ruleset
build\gsharp.build.targets = build\gsharp.build.targets
build\gsharp.props = build\gsharp.props
build\notest.targets = build\notest.targets
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Source", "Source", "{F1284A86-E814-4187-B20F-06B74D63C92F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{A181298C-7433-4724-808A-E343FC9DC633}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Core", "src\Core\Core.csproj", "{5DBF9A1E-652B-47B3-A471-B6510A0E46EC}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Core.Tests", "test\Core.Tests\Core.Tests.csproj", "{0B2E708C-8B72-4EA7-A7AD-C47AC8EBCDCB}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Interpreter", "src\Interpreter\Interpreter.csproj", "{3B003A65-1C59-4C42-9A9D-70FB365C962F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "GSharpInputFiles", "GSharpInputFiles", "{A70F00FB-E49D-4C8D-9A84-D738524277AF}"
ProjectSection(SolutionItems) = preProject
test\GSharpInputFiles\HelloWorld.gs = test\GSharpInputFiles\HelloWorld.gs
test\GSharpInputFiles\Loop.gs = test\GSharpInputFiles\Loop.gs
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LanguageServer", "src\LanguageServer\LanguageServer.csproj", "{704E201F-254B-42B7-8EB1-A2AEAB240EFC}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{A37572EA-AA34-4026-B5E2-B89493AC72B6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A37572EA-AA34-4026-B5E2-B89493AC72B6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A37572EA-AA34-4026-B5E2-B89493AC72B6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A37572EA-AA34-4026-B5E2-B89493AC72B6}.Release|Any CPU.Build.0 = Release|Any CPU
{5DBF9A1E-652B-47B3-A471-B6510A0E46EC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5DBF9A1E-652B-47B3-A471-B6510A0E46EC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5DBF9A1E-652B-47B3-A471-B6510A0E46EC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5DBF9A1E-652B-47B3-A471-B6510A0E46EC}.Release|Any CPU.Build.0 = Release|Any CPU
{0B2E708C-8B72-4EA7-A7AD-C47AC8EBCDCB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0B2E708C-8B72-4EA7-A7AD-C47AC8EBCDCB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0B2E708C-8B72-4EA7-A7AD-C47AC8EBCDCB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0B2E708C-8B72-4EA7-A7AD-C47AC8EBCDCB}.Release|Any CPU.Build.0 = Release|Any CPU
{3B003A65-1C59-4C42-9A9D-70FB365C962F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3B003A65-1C59-4C42-9A9D-70FB365C962F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3B003A65-1C59-4C42-9A9D-70FB365C962F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3B003A65-1C59-4C42-9A9D-70FB365C962F}.Release|Any CPU.Build.0 = Release|Any CPU
{704E201F-254B-42B7-8EB1-A2AEAB240EFC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{704E201F-254B-42B7-8EB1-A2AEAB240EFC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{704E201F-254B-42B7-8EB1-A2AEAB240EFC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{704E201F-254B-42B7-8EB1-A2AEAB240EFC}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{A37572EA-AA34-4026-B5E2-B89493AC72B6} = {F1284A86-E814-4187-B20F-06B74D63C92F}
{5DBF9A1E-652B-47B3-A471-B6510A0E46EC} = {F1284A86-E814-4187-B20F-06B74D63C92F}
{0B2E708C-8B72-4EA7-A7AD-C47AC8EBCDCB} = {A181298C-7433-4724-808A-E343FC9DC633}
{3B003A65-1C59-4C42-9A9D-70FB365C962F} = {F1284A86-E814-4187-B20F-06B74D63C92F}
{A70F00FB-E49D-4C8D-9A84-D738524277AF} = {A181298C-7433-4724-808A-E343FC9DC633}
{704E201F-254B-42B7-8EB1-A2AEAB240EFC} = {F1284A86-E814-4187-B20F-06B74D63C92F}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {6F06C89F-C7AA-47E2-BB0B-E9F7727EB4B0}
EndGlobalSection
EndGlobal