-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDualityScriptingPlugins.sln
More file actions
95 lines (95 loc) · 6.24 KB
/
DualityScriptingPlugins.sln
File metadata and controls
95 lines (95 loc) · 6.24 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.21005.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{F75B19F0-0A5A-4214-AE68-DA0F1D6E484F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{BD6E9743-00ED-4C0E-96D1-2038A97D83D8}"
ProjectSection(SolutionItems) = preProject
.nuget\NuGet.Config = .nuget\NuGet.Config
.nuget\NuGet.exe = .nuget\NuGet.exe
.nuget\NuGet.targets = .nuget\NuGet.targets
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CorePlugin", "CorePlugin\CorePlugin.csproj", "{AFE883F3-72B4-4C7C-A1D1-44EDC09C8F6E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EditorPlugin", "EditorPlugin\EditorPlugin.csproj", "{78DBC94D-EE9D-4AC0-95ED-91A0AE2F6652}"
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "CorePlugin.Tests", "CorePlugin.Tests\CorePlugin.Tests.fsproj", "{53863E4D-A1C6-454D-BD30-DF64D084B112}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EditorPlugin.Tests", "EditorPlugin.Tests\EditorPlugin.Tests.csproj", "{17D36FD0-A019-4DF9-AA6A-9EAA5F7158A6}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CorePlugin.Test.CSharp", "CorePlugin.Test.CSharp\CorePlugin.Test.CSharp.csproj", "{BCA20AAB-0855-41B2-931C-762266C19749}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ScriptingCSCorePlugin", "ScriptingCSCorePlugin\ScriptingCSCorePlugin.csproj", "{192B3A39-FCD1-4A18-AC61-4A2A01EF6DC0}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ScriptingFSCorePlugin", "ScriptingFSCorePlugin\ScriptingFSCorePlugin.csproj", "{9D402F09-EC11-4F14-95CE-8E1393D12EC9}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SolutionFilles", "SolutionFilles", "{88574E22-7018-4B51-9895-676956B3B822}"
ProjectSection(SolutionItems) = preProject
appveyor.yml = appveyor.yml
Build.bat = Build.bat
completeBuild.fsx = completeBuild.fsx
nuget\ScriptingPlugin.CsEditor.nuspec = nuget\ScriptingPlugin.CsEditor.nuspec
nuget\ScriptingPlugin.CSharp.nuspec = nuget\ScriptingPlugin.CSharp.nuspec
nuget\ScriptingPlugin.FsEditor.nuspec = nuget\ScriptingPlugin.FsEditor.nuspec
nuget\ScriptingPlugin.FSharp.nuspec = nuget\ScriptingPlugin.FSharp.nuspec
nuget\ScriptingPlugin.nuspec = nuget\ScriptingPlugin.nuspec
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EditorFSPlugin", "EditorFSPlugin\EditorFSPlugin.csproj", "{FE4EFF7D-FD62-4B75-BF5B-BDF659A6F322}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EditorCSPlugin", "EditorCSPlugin\EditorCSPlugin.csproj", "{0EE7F21F-0B63-44F5-B6B5-2E3A2AA85CA8}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{AFE883F3-72B4-4C7C-A1D1-44EDC09C8F6E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{AFE883F3-72B4-4C7C-A1D1-44EDC09C8F6E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AFE883F3-72B4-4C7C-A1D1-44EDC09C8F6E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AFE883F3-72B4-4C7C-A1D1-44EDC09C8F6E}.Release|Any CPU.Build.0 = Release|Any CPU
{78DBC94D-EE9D-4AC0-95ED-91A0AE2F6652}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{78DBC94D-EE9D-4AC0-95ED-91A0AE2F6652}.Debug|Any CPU.Build.0 = Debug|Any CPU
{78DBC94D-EE9D-4AC0-95ED-91A0AE2F6652}.Release|Any CPU.ActiveCfg = Release|Any CPU
{78DBC94D-EE9D-4AC0-95ED-91A0AE2F6652}.Release|Any CPU.Build.0 = Release|Any CPU
{53863E4D-A1C6-454D-BD30-DF64D084B112}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{53863E4D-A1C6-454D-BD30-DF64D084B112}.Debug|Any CPU.Build.0 = Debug|Any CPU
{53863E4D-A1C6-454D-BD30-DF64D084B112}.Release|Any CPU.ActiveCfg = Release|Any CPU
{53863E4D-A1C6-454D-BD30-DF64D084B112}.Release|Any CPU.Build.0 = Release|Any CPU
{17D36FD0-A019-4DF9-AA6A-9EAA5F7158A6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{17D36FD0-A019-4DF9-AA6A-9EAA5F7158A6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{17D36FD0-A019-4DF9-AA6A-9EAA5F7158A6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{17D36FD0-A019-4DF9-AA6A-9EAA5F7158A6}.Release|Any CPU.Build.0 = Release|Any CPU
{BCA20AAB-0855-41B2-931C-762266C19749}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BCA20AAB-0855-41B2-931C-762266C19749}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BCA20AAB-0855-41B2-931C-762266C19749}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BCA20AAB-0855-41B2-931C-762266C19749}.Release|Any CPU.Build.0 = Release|Any CPU
{192B3A39-FCD1-4A18-AC61-4A2A01EF6DC0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{192B3A39-FCD1-4A18-AC61-4A2A01EF6DC0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{192B3A39-FCD1-4A18-AC61-4A2A01EF6DC0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{192B3A39-FCD1-4A18-AC61-4A2A01EF6DC0}.Release|Any CPU.Build.0 = Release|Any CPU
{9D402F09-EC11-4F14-95CE-8E1393D12EC9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9D402F09-EC11-4F14-95CE-8E1393D12EC9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9D402F09-EC11-4F14-95CE-8E1393D12EC9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9D402F09-EC11-4F14-95CE-8E1393D12EC9}.Release|Any CPU.Build.0 = Release|Any CPU
{FE4EFF7D-FD62-4B75-BF5B-BDF659A6F322}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FE4EFF7D-FD62-4B75-BF5B-BDF659A6F322}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FE4EFF7D-FD62-4B75-BF5B-BDF659A6F322}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FE4EFF7D-FD62-4B75-BF5B-BDF659A6F322}.Release|Any CPU.Build.0 = Release|Any CPU
{0EE7F21F-0B63-44F5-B6B5-2E3A2AA85CA8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0EE7F21F-0B63-44F5-B6B5-2E3A2AA85CA8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0EE7F21F-0B63-44F5-B6B5-2E3A2AA85CA8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0EE7F21F-0B63-44F5-B6B5-2E3A2AA85CA8}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{53863E4D-A1C6-454D-BD30-DF64D084B112} = {F75B19F0-0A5A-4214-AE68-DA0F1D6E484F}
{17D36FD0-A019-4DF9-AA6A-9EAA5F7158A6} = {F75B19F0-0A5A-4214-AE68-DA0F1D6E484F}
{BCA20AAB-0855-41B2-931C-762266C19749} = {F75B19F0-0A5A-4214-AE68-DA0F1D6E484F}
EndGlobalSection
EndGlobal