Skip to content

Commit d11315a

Browse files
committed
refactor! vsix project moved to other folder
1 parent 38de9cb commit d11315a

16 files changed

+81
-14
lines changed

OA.sln

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OA.Test.Unit", "src\OA.Test
1717
EndProject
1818
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OA.Test.Integration", "src\OA.Test.Integration\OA.Test.Integration.csproj", "{4150259A-1CC5-4BB2-A0D4-891F56338028}"
1919
EndProject
20-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OATemplate", "src\OATemplate\OATemplate.csproj", "{A5926428-D707-4D5E-B785-82DFE8C5AC85}"
21-
EndProject
2220
Global
2321
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2422
Debug|Any CPU = Debug|Any CPU
@@ -53,10 +51,6 @@ Global
5351
{4150259A-1CC5-4BB2-A0D4-891F56338028}.Debug|Any CPU.Build.0 = Debug|Any CPU
5452
{4150259A-1CC5-4BB2-A0D4-891F56338028}.Release|Any CPU.ActiveCfg = Release|Any CPU
5553
{4150259A-1CC5-4BB2-A0D4-891F56338028}.Release|Any CPU.Build.0 = Release|Any CPU
56-
{A5926428-D707-4D5E-B785-82DFE8C5AC85}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
57-
{A5926428-D707-4D5E-B785-82DFE8C5AC85}.Debug|Any CPU.Build.0 = Debug|Any CPU
58-
{A5926428-D707-4D5E-B785-82DFE8C5AC85}.Release|Any CPU.ActiveCfg = Release|Any CPU
59-
{A5926428-D707-4D5E-B785-82DFE8C5AC85}.Release|Any CPU.Build.0 = Release|Any CPU
6054
EndGlobalSection
6155
GlobalSection(SolutionProperties) = preSolution
6256
HideSolutionNode = FALSE

src/.template.config/template.json renamed to vsix/.template.config/template.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,25 @@
1515
"guids": [],
1616
"primaryOutputs": [
1717
{
18-
"path": "OA\\OA.csproj"
18+
"path": "..\\src\\OA\\OA.csproj"
1919
},
2020
{
21-
"path": "OA.Domain\\OA.Domain.csproj"
21+
"path": "..\\src\\OA\\OA.Domain\\OA.Domain.csproj"
2222
},
2323
{
24-
"path": "OA.Infrastructure\\OA.Infrastructure.csproj"
24+
"path": "..\\src\\OA\\OA.Infrastructure\\OA.Infrastructure.csproj"
2525
},
2626
{
27-
"path": "OA.Persistence\\OA.Persistence.csproj"
27+
"path": "..\\src\\OA\\OA.Persistence\\OA.Persistence.csproj"
2828
},
2929
{
30-
"path": "OA.Service\\OA.Service.csproj"
30+
"path": "..\\src\\OA\\OA.Service\\OA.Service.csproj"
3131
},
3232
{
33-
"path": "OA.Test.Integration\\OA.Test.Integration.csproj"
33+
"path": "..\\src\\OA\\OA.Test.Integration\\OA.Test.Integration.csproj"
3434
},
3535
{
36-
"path": "OA.Test.Unit\\OA.Test.Unit.csproj"
36+
"path": "..\\src\\OA\\OA.Test.Unit\\OA.Test.Unit.csproj"
3737
}
3838
]
3939
}

vsix/OA.Vsix.sln

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.30114.105
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OA", "..\src\OA\OA.csproj", "{5CE8523B-CD37-4F3E-9F41-9A3D2DAB3D39}"
7+
EndProject
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OA.Domain", "..\src\OA.Domain\OA.Domain.csproj", "{74D8BF98-D40C-447E-BB40-29B1BAA363AB}"
9+
EndProject
10+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OA.Infrastructure", "..\src\OA.Infrastructure\OA.Infrastructure.csproj", "{97A14F11-44A9-443C-ADC4-CF5696BC64F7}"
11+
EndProject
12+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OA.Persistence", "..\src\OA.Persistence\OA.Persistence.csproj", "{5F6B0320-95CE-4D4C-82D6-7A0972243716}"
13+
EndProject
14+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OA.Service", "..\src\OA.Service\OA.Service.csproj", "{B20723E2-C6FC-41B2-8807-FC1E52B012F0}"
15+
EndProject
16+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OA.Test.Unit", "..\src\OA.Test.Unit\OA.Test.Unit.csproj", "{FDDC1E0E-296B-448C-90C2-9364B118F5E2}"
17+
EndProject
18+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OA.Test.Integration", "..\src\OA.Test.Integration\OA.Test.Integration.csproj", "{4150259A-1CC5-4BB2-A0D4-891F56338028}"
19+
EndProject
20+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OATemplate", "OATemplate\OATemplate.csproj", "{A5926428-D707-4D5E-B785-82DFE8C5AC85}"
21+
EndProject
22+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VsixProject", "VsixProject\VsixProject.csproj", "{3FA41BD3-218A-40FA-AC87-12B8675F8A28}"
23+
EndProject
24+
Global
25+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
26+
Debug|Any CPU = Debug|Any CPU
27+
Release|Any CPU = Release|Any CPU
28+
EndGlobalSection
29+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
30+
{5CE8523B-CD37-4F3E-9F41-9A3D2DAB3D39}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
31+
{5CE8523B-CD37-4F3E-9F41-9A3D2DAB3D39}.Debug|Any CPU.Build.0 = Debug|Any CPU
32+
{5CE8523B-CD37-4F3E-9F41-9A3D2DAB3D39}.Release|Any CPU.ActiveCfg = Release|Any CPU
33+
{5CE8523B-CD37-4F3E-9F41-9A3D2DAB3D39}.Release|Any CPU.Build.0 = Release|Any CPU
34+
{74D8BF98-D40C-447E-BB40-29B1BAA363AB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
35+
{74D8BF98-D40C-447E-BB40-29B1BAA363AB}.Debug|Any CPU.Build.0 = Debug|Any CPU
36+
{74D8BF98-D40C-447E-BB40-29B1BAA363AB}.Release|Any CPU.ActiveCfg = Release|Any CPU
37+
{74D8BF98-D40C-447E-BB40-29B1BAA363AB}.Release|Any CPU.Build.0 = Release|Any CPU
38+
{97A14F11-44A9-443C-ADC4-CF5696BC64F7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
39+
{97A14F11-44A9-443C-ADC4-CF5696BC64F7}.Debug|Any CPU.Build.0 = Debug|Any CPU
40+
{97A14F11-44A9-443C-ADC4-CF5696BC64F7}.Release|Any CPU.ActiveCfg = Release|Any CPU
41+
{97A14F11-44A9-443C-ADC4-CF5696BC64F7}.Release|Any CPU.Build.0 = Release|Any CPU
42+
{5F6B0320-95CE-4D4C-82D6-7A0972243716}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
43+
{5F6B0320-95CE-4D4C-82D6-7A0972243716}.Debug|Any CPU.Build.0 = Debug|Any CPU
44+
{5F6B0320-95CE-4D4C-82D6-7A0972243716}.Release|Any CPU.ActiveCfg = Release|Any CPU
45+
{5F6B0320-95CE-4D4C-82D6-7A0972243716}.Release|Any CPU.Build.0 = Release|Any CPU
46+
{B20723E2-C6FC-41B2-8807-FC1E52B012F0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
47+
{B20723E2-C6FC-41B2-8807-FC1E52B012F0}.Debug|Any CPU.Build.0 = Debug|Any CPU
48+
{B20723E2-C6FC-41B2-8807-FC1E52B012F0}.Release|Any CPU.ActiveCfg = Release|Any CPU
49+
{B20723E2-C6FC-41B2-8807-FC1E52B012F0}.Release|Any CPU.Build.0 = Release|Any CPU
50+
{FDDC1E0E-296B-448C-90C2-9364B118F5E2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
51+
{FDDC1E0E-296B-448C-90C2-9364B118F5E2}.Debug|Any CPU.Build.0 = Debug|Any CPU
52+
{FDDC1E0E-296B-448C-90C2-9364B118F5E2}.Release|Any CPU.ActiveCfg = Release|Any CPU
53+
{FDDC1E0E-296B-448C-90C2-9364B118F5E2}.Release|Any CPU.Build.0 = Release|Any CPU
54+
{4150259A-1CC5-4BB2-A0D4-891F56338028}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
55+
{4150259A-1CC5-4BB2-A0D4-891F56338028}.Debug|Any CPU.Build.0 = Debug|Any CPU
56+
{4150259A-1CC5-4BB2-A0D4-891F56338028}.Release|Any CPU.ActiveCfg = Release|Any CPU
57+
{4150259A-1CC5-4BB2-A0D4-891F56338028}.Release|Any CPU.Build.0 = Release|Any CPU
58+
{A5926428-D707-4D5E-B785-82DFE8C5AC85}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
59+
{A5926428-D707-4D5E-B785-82DFE8C5AC85}.Debug|Any CPU.Build.0 = Debug|Any CPU
60+
{A5926428-D707-4D5E-B785-82DFE8C5AC85}.Release|Any CPU.ActiveCfg = Release|Any CPU
61+
{A5926428-D707-4D5E-B785-82DFE8C5AC85}.Release|Any CPU.Build.0 = Release|Any CPU
62+
{3FA41BD3-218A-40FA-AC87-12B8675F8A28}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
63+
{3FA41BD3-218A-40FA-AC87-12B8675F8A28}.Debug|Any CPU.Build.0 = Debug|Any CPU
64+
{3FA41BD3-218A-40FA-AC87-12B8675F8A28}.Release|Any CPU.ActiveCfg = Release|Any CPU
65+
{3FA41BD3-218A-40FA-AC87-12B8675F8A28}.Release|Any CPU.Build.0 = Release|Any CPU
66+
EndGlobalSection
67+
GlobalSection(SolutionProperties) = preSolution
68+
HideSolutionNode = FALSE
69+
EndGlobalSection
70+
GlobalSection(ExtensibilityGlobals) = postSolution
71+
SolutionGuid = {5E5A61BE-464E-48CF-88FA-7982CFBAED9E}
72+
EndGlobalSection
73+
EndGlobal
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)