This repository was archived by the owner on Feb 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDependencyInjection.sln
More file actions
74 lines (74 loc) · 4.28 KB
/
DependencyInjection.sln
File metadata and controls
74 lines (74 loc) · 4.28 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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29418.71
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Spring.Extensions.DependencyInjection", "src\Spring.Extensions.DependencyInjection\Spring.Extensions.DependencyInjection.csproj", "{5E909F19-E729-4AD7-A3A6-DC555EB4A488}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{873C60EF-F515-4735-96F8-7B7784D93130}"
ProjectSection(SolutionItems) = preProject
src\Directory.Build.props = src\Directory.Build.props
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{9FB328A8-ECB2-4F2E-9C3F-7E65F4A05DA8}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Spring.Extensions.DependencyInjection.Tests", "test\Spring.Extensions.DependencyInjection.Tests\Spring.Extensions.DependencyInjection.Tests.csproj", "{F413D20B-499B-4C04-BAF7-257FF868D3BE}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{301E2C12-1835-4E1A-820E-D78BE6E55FF7}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
.gitignore = .gitignore
.github\workflows\cd.yml = .github\workflows\cd.yml
.github\workflows\ci.yml = .github\workflows\ci.yml
.github\dependabot.yml = .github\dependabot.yml
Directory.Build.props = Directory.Build.props
.config\dotnet-tools.json = .config\dotnet-tools.json
README.md = README.md
Directory.Packages.props = Directory.Packages.props
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{B1FFCB66-AA48-45C8-A4C4-D6E0BFB551DE}"
ProjectSection(SolutionItems) = preProject
samples\Directory.Build.props = samples\Directory.Build.props
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AspNetCoreWebSample", "samples\AspNetCoreWebSample\AspNetCoreWebSample.csproj", "{AD50418F-0F72-4738-9B60-E035F1730193}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ConsoleSample", "samples\ConsoleSample\ConsoleSample.csproj", "{D868E782-5579-4F90-BB38-5A814BB2C323}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{5E909F19-E729-4AD7-A3A6-DC555EB4A488}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5E909F19-E729-4AD7-A3A6-DC555EB4A488}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5E909F19-E729-4AD7-A3A6-DC555EB4A488}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5E909F19-E729-4AD7-A3A6-DC555EB4A488}.Release|Any CPU.Build.0 = Release|Any CPU
{F413D20B-499B-4C04-BAF7-257FF868D3BE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F413D20B-499B-4C04-BAF7-257FF868D3BE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F413D20B-499B-4C04-BAF7-257FF868D3BE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F413D20B-499B-4C04-BAF7-257FF868D3BE}.Release|Any CPU.Build.0 = Release|Any CPU
{AD50418F-0F72-4738-9B60-E035F1730193}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{AD50418F-0F72-4738-9B60-E035F1730193}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AD50418F-0F72-4738-9B60-E035F1730193}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AD50418F-0F72-4738-9B60-E035F1730193}.Release|Any CPU.Build.0 = Release|Any CPU
{D868E782-5579-4F90-BB38-5A814BB2C323}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D868E782-5579-4F90-BB38-5A814BB2C323}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D868E782-5579-4F90-BB38-5A814BB2C323}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D868E782-5579-4F90-BB38-5A814BB2C323}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{5E909F19-E729-4AD7-A3A6-DC555EB4A488} = {873C60EF-F515-4735-96F8-7B7784D93130}
{F413D20B-499B-4C04-BAF7-257FF868D3BE} = {9FB328A8-ECB2-4F2E-9C3F-7E65F4A05DA8}
{AD50418F-0F72-4738-9B60-E035F1730193} = {B1FFCB66-AA48-45C8-A4C4-D6E0BFB551DE}
{D868E782-5579-4F90-BB38-5A814BB2C323} = {B1FFCB66-AA48-45C8-A4C4-D6E0BFB551DE}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {D3276495-E4F4-4B6C-91D5-79E641D18C68}
EndGlobalSection
EndGlobal