-
Notifications
You must be signed in to change notification settings - Fork 146
/
SQLProvider.Tests.sln
104 lines (104 loc) · 6.19 KB
/
SQLProvider.Tests.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.3.32804.467
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".paket", ".paket", "{116D77B0-B9B2-4516-8DAF-485D43FE4B18}"
ProjectSection(SolutionItems) = preProject
paket.dependencies = paket.dependencies
paket.lock = paket.lock
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{14373A98-84EF-4EE2-A4E8-96DEE9FF5BEA}"
ProjectSection(SolutionItems) = preProject
build.fsx = build.fsx
README.md = README.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "docs", "docs", "{D383A6BC-FD4A-4C9C-99CA-5AE5C8A7B261}"
ProjectSection(SolutionItems) = preProject
docs\content\index.fsx = docs\content\index.fsx
README.md = README.md
RELEASE_NOTES.md = RELEASE_NOTES.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "core", "core", "{C7E85487-91DA-43CE-B343-C54614949C13}"
ProjectSection(SolutionItems) = preProject
docs\content\general.fsx = docs\content\general.fsx
docs\content\oracle.fsx = docs\content\oracle.fsx
EndProjectSection
EndProject
Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "SqlProvider.Tests", "tests\SqlProvider.Tests\SqlProvider.Tests.fsproj", "{B5E56E66-5EE2-4C81-A242-9973AAAE9C99}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Scripts", "Scripts", "{DB8153B0-4B4F-4CD8-8500-C61D66E75426}"
ProjectSection(SolutionItems) = preProject
tests\SqlProvider.Tests\scripts\FirebirdTests.fsx = tests\SqlProvider.Tests\scripts\FirebirdTests.fsx
tests\SqlProvider.Tests\scripts\MSAccessTests.fsx = tests\SqlProvider.Tests\scripts\MSAccessTests.fsx
tests\SqlProvider.Tests\scripts\MySqlTests.fsx = tests\SqlProvider.Tests\scripts\MySqlTests.fsx
tests\SqlProvider.Tests\scripts\OdbcTests.fsx = tests\SqlProvider.Tests\scripts\OdbcTests.fsx
tests\SqlProvider.Tests\scripts\OracleTests.fsx = tests\SqlProvider.Tests\scripts\OracleTests.fsx
tests\SqlProvider.Tests\scripts\PostgreSQLTests.fsx = tests\SqlProvider.Tests\scripts\PostgreSQLTests.fsx
tests\SqlProvider.Tests\scripts\SQLLiteTests.fsx = tests\SqlProvider.Tests\scripts\SQLLiteTests.fsx
tests\SqlProvider.Tests\scripts\SqlServerTests.fsx = tests\SqlProvider.Tests\scripts\SqlServerTests.fsx
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{7BB500F4-9F6A-4AE2-848B-72204AFC706C}"
EndProject
Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "MsSqlSsdt.Tests", "tests\SqlProvider.Core.Tests\MsSqlSsdt\MsSqlSsdt.Tests\MsSqlSsdt.Tests.fsproj", "{A4EF7241-F3C2-4149-9AB8-9F23D6DFC877}"
ProjectSection(ProjectDependencies) = postProject
{6DE61DDD-AFBC-4646-B409-2266B456D06F} = {6DE61DDD-AFBC-4646-B409-2266B456D06F}
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SSDT", "SSDT", "{E1968454-7F5E-4EC7-BA12-2CD200F74324}"
EndProject
Project("{00D1A9C2-B5F0-4AF3-8072-F6C62B433612}") = "AdventureWorks_SSDT", "tests\SqlProvider.Core.Tests\MsSqlSsdt\MsSqlSsdt.Tests\AdventureWorks_SSDT\AdventureWorks_SSDT.fsproj", "{6DE61DDD-AFBC-4646-B409-2266B456D06F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{B5E56E66-5EE2-4C81-A242-9973AAAE9C99}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B5E56E66-5EE2-4C81-A242-9973AAAE9C99}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B5E56E66-5EE2-4C81-A242-9973AAAE9C99}.Debug|x86.ActiveCfg = Debug|Any CPU
{B5E56E66-5EE2-4C81-A242-9973AAAE9C99}.Debug|x86.Build.0 = Debug|Any CPU
{B5E56E66-5EE2-4C81-A242-9973AAAE9C99}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B5E56E66-5EE2-4C81-A242-9973AAAE9C99}.Release|Any CPU.Build.0 = Release|Any CPU
{B5E56E66-5EE2-4C81-A242-9973AAAE9C99}.Release|x86.ActiveCfg = Release|Any CPU
{B5E56E66-5EE2-4C81-A242-9973AAAE9C99}.Release|x86.Build.0 = Release|Any CPU
{A4EF7241-F3C2-4149-9AB8-9F23D6DFC877}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A4EF7241-F3C2-4149-9AB8-9F23D6DFC877}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A4EF7241-F3C2-4149-9AB8-9F23D6DFC877}.Debug|x86.ActiveCfg = Debug|Any CPU
{A4EF7241-F3C2-4149-9AB8-9F23D6DFC877}.Debug|x86.Build.0 = Debug|Any CPU
{A4EF7241-F3C2-4149-9AB8-9F23D6DFC877}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A4EF7241-F3C2-4149-9AB8-9F23D6DFC877}.Release|Any CPU.Build.0 = Release|Any CPU
{A4EF7241-F3C2-4149-9AB8-9F23D6DFC877}.Release|x86.ActiveCfg = Release|Any CPU
{A4EF7241-F3C2-4149-9AB8-9F23D6DFC877}.Release|x86.Build.0 = Release|Any CPU
{6DE61DDD-AFBC-4646-B409-2266B456D06F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6DE61DDD-AFBC-4646-B409-2266B456D06F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6DE61DDD-AFBC-4646-B409-2266B456D06F}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{6DE61DDD-AFBC-4646-B409-2266B456D06F}.Debug|x86.ActiveCfg = Debug|Any CPU
{6DE61DDD-AFBC-4646-B409-2266B456D06F}.Debug|x86.Build.0 = Debug|Any CPU
{6DE61DDD-AFBC-4646-B409-2266B456D06F}.Debug|x86.Deploy.0 = Debug|Any CPU
{6DE61DDD-AFBC-4646-B409-2266B456D06F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6DE61DDD-AFBC-4646-B409-2266B456D06F}.Release|Any CPU.Build.0 = Release|Any CPU
{6DE61DDD-AFBC-4646-B409-2266B456D06F}.Release|Any CPU.Deploy.0 = Release|Any CPU
{6DE61DDD-AFBC-4646-B409-2266B456D06F}.Release|x86.ActiveCfg = Release|Any CPU
{6DE61DDD-AFBC-4646-B409-2266B456D06F}.Release|x86.Build.0 = Release|Any CPU
{6DE61DDD-AFBC-4646-B409-2266B456D06F}.Release|x86.Deploy.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{C7E85487-91DA-43CE-B343-C54614949C13} = {D383A6BC-FD4A-4C9C-99CA-5AE5C8A7B261}
{A4EF7241-F3C2-4149-9AB8-9F23D6DFC877} = {E1968454-7F5E-4EC7-BA12-2CD200F74324}
{6DE61DDD-AFBC-4646-B409-2266B456D06F} = {E1968454-7F5E-4EC7-BA12-2CD200F74324}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {266D1D48-A28A-48A9-AAB2-3BE4132FBA88}
EndGlobalSection
EndGlobal