-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdotnet-with-esproj-example.sln
81 lines (81 loc) · 4.24 KB
/
dotnet-with-esproj-example.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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.2.32505.173
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "files", "files", "{7592EEA2-3C6C-4ED0-9EB7-5EC6DBB51DE5}"
ProjectSection(SolutionItems) = preProject
README.md = README.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "client", "client", "{B459F914-7484-4E8F-BEE8-B8464005B06C}"
ProjectSection(SolutionItems) = preProject
.node-version = .node-version
client\Directory.Build.props = client\Directory.Build.props
client\Directory.Build.targets = client\Directory.Build.targets
client\eslint.config.js = client\eslint.config.js
package.json = package.json
pnpm-lock.yaml = pnpm-lock.yaml
pnpm-workspace.yaml = pnpm-workspace.yaml
client\tsconfig.json = client\tsconfig.json
client\vitest.config.ts = client\vitest.config.ts
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "server", "server", "{8CE9A197-C77E-40CB-B19E-97DC0AA5D36E}"
ProjectSection(SolutionItems) = preProject
coverage.runsettings = coverage.runsettings
server\Directory.Build.props = server\Directory.Build.props
server\Directory.Packages.props = server\Directory.Packages.props
global.json = global.json
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "shared", "shared", "{1617285C-95A0-4AF2-9C07-CE02BC254905}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
.gitattributes = .gitattributes
.gitignore = .gitignore
ci-build.ps1 = ci-build.ps1
Directory.Solution.targets = Directory.Solution.targets
LICENSE = LICENSE
.github\workflows\pipeline.yaml = .github\workflows\pipeline.yaml
Workspace.props = Workspace.props
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "projects", "projects", "{2E75741F-092F-4C2C-A182-AAF9F38CEC58}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "hello-cs", "server\hello-cs\hello-cs.csproj", "{CA70F551-74BE-49DB-B5CC-D64C0D321478}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "hello-cs-test", "server\hello-cs-test\hello-cs-test.csproj", "{2652DC61-0D21-423D-BF0E-FA67ED4A68F7}"
EndProject
Project("{54A90642-561A-4BB1-A94E-469ADEE60C69}") = "hello-js", "client\hello-js\hello-js.esproj", "{1EFD455E-783E-44B2-9FFA-18D456E7BE62}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{CA70F551-74BE-49DB-B5CC-D64C0D321478}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CA70F551-74BE-49DB-B5CC-D64C0D321478}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CA70F551-74BE-49DB-B5CC-D64C0D321478}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CA70F551-74BE-49DB-B5CC-D64C0D321478}.Release|Any CPU.Build.0 = Release|Any CPU
{2652DC61-0D21-423D-BF0E-FA67ED4A68F7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2652DC61-0D21-423D-BF0E-FA67ED4A68F7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2652DC61-0D21-423D-BF0E-FA67ED4A68F7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2652DC61-0D21-423D-BF0E-FA67ED4A68F7}.Release|Any CPU.Build.0 = Release|Any CPU
{1EFD455E-783E-44B2-9FFA-18D456E7BE62}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1EFD455E-783E-44B2-9FFA-18D456E7BE62}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1EFD455E-783E-44B2-9FFA-18D456E7BE62}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1EFD455E-783E-44B2-9FFA-18D456E7BE62}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{CA70F551-74BE-49DB-B5CC-D64C0D321478} = {2E75741F-092F-4C2C-A182-AAF9F38CEC58}
{2652DC61-0D21-423D-BF0E-FA67ED4A68F7} = {2E75741F-092F-4C2C-A182-AAF9F38CEC58}
{8CE9A197-C77E-40CB-B19E-97DC0AA5D36E} = {7592EEA2-3C6C-4ED0-9EB7-5EC6DBB51DE5}
{1617285C-95A0-4AF2-9C07-CE02BC254905} = {7592EEA2-3C6C-4ED0-9EB7-5EC6DBB51DE5}
{B459F914-7484-4E8F-BEE8-B8464005B06C} = {7592EEA2-3C6C-4ED0-9EB7-5EC6DBB51DE5}
{1EFD455E-783E-44B2-9FFA-18D456E7BE62} = {2E75741F-092F-4C2C-A182-AAF9F38CEC58}
EndGlobalSection
EndGlobal