-
Notifications
You must be signed in to change notification settings - Fork 10
/
VsixTesting.sln
98 lines (98 loc) · 6.21 KB
/
VsixTesting.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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27703.2018
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{57DC6192-9049-4023-B6B8-F0587F704BFE}"
ProjectSection(SolutionItems) = preProject
.gitattributes = .gitattributes
.gitignore = .gitignore
appveyor.yml = appveyor.yml
Directory.Build.props = Directory.Build.props
Directory.Build.targets = Directory.Build.targets
key.snk = key.snk
LICENSE.md = LICENSE.md
.github\workflows\main.yaml = .github\workflows\main.yaml
NuGet.Config = NuGet.Config
README.md = README.md
stylecop.json = stylecop.json
version.json = version.json
VsixTesting.png = VsixTesting.png
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VsixTesting.Installer", "src\VsixTesting.Installer\VsixTesting.Installer.csproj", "{51DB3A8A-C551-4D8D-A7A5-FCA2B76DE4B1}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VsixTesting.Xunit", "src\VsixTesting.Xunit\VsixTesting.Xunit.csproj", "{5B2D4187-0A44-4FD1-9B17-4D090F0001D3}"
ProjectSection(ProjectDependencies) = postProject
{1E08940F-AF0E-47F4-AFE6-34DEFF0C44FE} = {1E08940F-AF0E-47F4-AFE6-34DEFF0C44FE}
{51DB3A8A-C551-4D8D-A7A5-FCA2B76DE4B1} = {51DB3A8A-C551-4D8D-A7A5-FCA2B76DE4B1}
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VsixTesting.Invoker", "src\VsixTesting.Invoker\VsixTesting.Invoker.csproj", "{1E08940F-AF0E-47F4-AFE6-34DEFF0C44FE}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VsixTesting", "src\VsixTesting\VsixTesting.csproj", "{D592D582-B012-425E-8B4D-A2067D040363}"
ProjectSection(ProjectDependencies) = postProject
{1E08940F-AF0E-47F4-AFE6-34DEFF0C44FE} = {1E08940F-AF0E-47F4-AFE6-34DEFF0C44FE}
{51DB3A8A-C551-4D8D-A7A5-FCA2B76DE4B1} = {51DB3A8A-C551-4D8D-A7A5-FCA2B76DE4B1}
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VsixTesting.Xunit.Tests", "test\VsixTesting.Xunit.Tests\VsixTesting.Xunit.Tests.csproj", "{7367D06A-C4D7-48B8-8FFC-436568B45618}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VsixTesting.Tests", "test\VsixTesting.Tests\VsixTesting.Tests.csproj", "{BEBF4C01-C29C-49D7-93C3-234273940D1C}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VsixTesting.Installer.Tests", "test\VsixTesting.Installer.Tests\VsixTesting.Installer.Tests.csproj", "{C0291053-3322-41F2-8107-89381C1F67DC}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VsixTesting.Installer.x64", "src\VsixTesting.Installer\VsixTesting.Installer.x64.csproj", "{A2C44214-BB2E-4F86-A3B8-FB5F2ADB5A1E}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VsixTesting.Invoker.17", "src\VsixTesting.Invoker\17\VsixTesting.Invoker.17.csproj", "{1A3C5130-61DB-4DE0-85C0-30847F2807F6}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{51DB3A8A-C551-4D8D-A7A5-FCA2B76DE4B1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{51DB3A8A-C551-4D8D-A7A5-FCA2B76DE4B1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{51DB3A8A-C551-4D8D-A7A5-FCA2B76DE4B1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{51DB3A8A-C551-4D8D-A7A5-FCA2B76DE4B1}.Release|Any CPU.Build.0 = Release|Any CPU
{5B2D4187-0A44-4FD1-9B17-4D090F0001D3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5B2D4187-0A44-4FD1-9B17-4D090F0001D3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5B2D4187-0A44-4FD1-9B17-4D090F0001D3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5B2D4187-0A44-4FD1-9B17-4D090F0001D3}.Release|Any CPU.Build.0 = Release|Any CPU
{1E08940F-AF0E-47F4-AFE6-34DEFF0C44FE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1E08940F-AF0E-47F4-AFE6-34DEFF0C44FE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1E08940F-AF0E-47F4-AFE6-34DEFF0C44FE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1E08940F-AF0E-47F4-AFE6-34DEFF0C44FE}.Release|Any CPU.Build.0 = Release|Any CPU
{D592D582-B012-425E-8B4D-A2067D040363}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D592D582-B012-425E-8B4D-A2067D040363}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D592D582-B012-425E-8B4D-A2067D040363}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D592D582-B012-425E-8B4D-A2067D040363}.Release|Any CPU.Build.0 = Release|Any CPU
{7367D06A-C4D7-48B8-8FFC-436568B45618}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7367D06A-C4D7-48B8-8FFC-436568B45618}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7367D06A-C4D7-48B8-8FFC-436568B45618}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7367D06A-C4D7-48B8-8FFC-436568B45618}.Release|Any CPU.Build.0 = Release|Any CPU
{BEBF4C01-C29C-49D7-93C3-234273940D1C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BEBF4C01-C29C-49D7-93C3-234273940D1C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BEBF4C01-C29C-49D7-93C3-234273940D1C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BEBF4C01-C29C-49D7-93C3-234273940D1C}.Release|Any CPU.Build.0 = Release|Any CPU
{C0291053-3322-41F2-8107-89381C1F67DC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C0291053-3322-41F2-8107-89381C1F67DC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C0291053-3322-41F2-8107-89381C1F67DC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C0291053-3322-41F2-8107-89381C1F67DC}.Release|Any CPU.Build.0 = Release|Any CPU
{A2C44214-BB2E-4F86-A3B8-FB5F2ADB5A1E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A2C44214-BB2E-4F86-A3B8-FB5F2ADB5A1E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A2C44214-BB2E-4F86-A3B8-FB5F2ADB5A1E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A2C44214-BB2E-4F86-A3B8-FB5F2ADB5A1E}.Release|Any CPU.Build.0 = Release|Any CPU
{1A3C5130-61DB-4DE0-85C0-30847F2807F6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1A3C5130-61DB-4DE0-85C0-30847F2807F6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1A3C5130-61DB-4DE0-85C0-30847F2807F6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1A3C5130-61DB-4DE0-85C0-30847F2807F6}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {EEA30FC1-DE80-4F3A-A71A-FE28650D0700}
EndGlobalSection
EndGlobal