├── .gitattributes
├── .gitignore
├── 1-SingleResponsibility
├── 1-SingleResponsibility.csproj
├── Correct Use
│ └── SendMail.cs
└── False Use
│ └── SendMail.cs
├── 2-OpenClosed
├── 2-OpenClosed.csproj
├── Correct Use
│ └── Logger.cs
├── Enum
│ └── LogType.cs
└── False Use
│ └── Logger.cs
├── 3-LiskovSubstitution
├── 3-LiskovSubstitution.csproj
├── Correct Use
│ └── Printer.cs
└── False Use
│ └── Printer.cs
├── 4-InterfaceSegregation
├── 4-InterfaceSegregation.csproj
├── Correct Use
│ └── BaseApı.cs
└── False Use
│ └── BaseAPI.cs
├── 5-DependencyInversion
├── 5-DependencyInversion.csproj
├── Correct Use
│ └── Logger.cs
└── False Use
│ └── Logger.cs
└── SolidPrinciples.sln
/.gitattributes:
--------------------------------------------------------------------------------
1 | ###############################################################################
2 | # Set default behavior to automatically normalize line endings.
3 | ###############################################################################
4 | * text=auto
5 |
6 | ###############################################################################
7 | # Set default behavior for command prompt diff.
8 | #
9 | # This is need for earlier builds of msysgit that does not have it on by
10 | # default for csharp files.
11 | # Note: This is only used by command line
12 | ###############################################################################
13 | #*.cs diff=csharp
14 |
15 | ###############################################################################
16 | # Set the merge driver for project and solution files
17 | #
18 | # Merging from the command prompt will add diff markers to the files if there
19 | # are conflicts (Merging from VS is not affected by the settings below, in VS
20 | # the diff markers are never inserted). Diff markers may cause the following
21 | # file extensions to fail to load in VS. An alternative would be to treat
22 | # these files as binary and thus will always conflict and require user
23 | # intervention with every merge. To do so, just uncomment the entries below
24 | ###############################################################################
25 | #*.sln merge=binary
26 | #*.csproj merge=binary
27 | #*.vbproj merge=binary
28 | #*.vcxproj merge=binary
29 | #*.vcproj merge=binary
30 | #*.dbproj merge=binary
31 | #*.fsproj merge=binary
32 | #*.lsproj merge=binary
33 | #*.wixproj merge=binary
34 | #*.modelproj merge=binary
35 | #*.sqlproj merge=binary
36 | #*.wwaproj merge=binary
37 |
38 | ###############################################################################
39 | # behavior for image files
40 | #
41 | # image files are treated as binary by default.
42 | ###############################################################################
43 | #*.jpg binary
44 | #*.png binary
45 | #*.gif binary
46 |
47 | ###############################################################################
48 | # diff behavior for common document formats
49 | #
50 | # Convert binary document formats to text before diffing them. This feature
51 | # is only available from the command line. Turn it on by uncommenting the
52 | # entries below.
53 | ###############################################################################
54 | #*.doc diff=astextplain
55 | #*.DOC diff=astextplain
56 | #*.docx diff=astextplain
57 | #*.DOCX diff=astextplain
58 | #*.dot diff=astextplain
59 | #*.DOT diff=astextplain
60 | #*.pdf diff=astextplain
61 | #*.PDF diff=astextplain
62 | #*.rtf diff=astextplain
63 | #*.RTF diff=astextplain
64 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | ## Ignore Visual Studio temporary files, build results, and
2 | ## files generated by popular Visual Studio add-ons.
3 |
4 | # User-specific files
5 | *.suo
6 | *.user
7 | *.userosscache
8 | *.sln.docstates
9 |
10 | # User-specific files (MonoDevelop/Xamarin Studio)
11 | *.userprefs
12 |
13 | # Build results
14 | [Dd]ebug/
15 | [Dd]ebugPublic/
16 | [Rr]elease/
17 | [Rr]eleases/
18 | x64/
19 | x86/
20 | bld/
21 | [Bb]in/
22 | [Oo]bj/
23 | [Ll]og/
24 |
25 | # Visual Studio 2015 cache/options directory
26 | .vs/
27 | # Uncomment if you have tasks that create the project's static files in wwwroot
28 | #wwwroot/
29 |
30 | # MSTest test Results
31 | [Tt]est[Rr]esult*/
32 | [Bb]uild[Ll]og.*
33 |
34 | # NUNIT
35 | *.VisualState.xml
36 | TestResult.xml
37 |
38 | # Build Results of an ATL Project
39 | [Dd]ebugPS/
40 | [Rr]eleasePS/
41 | dlldata.c
42 |
43 | # DNX
44 | project.lock.json
45 | project.fragment.lock.json
46 | artifacts/
47 |
48 | *_i.c
49 | *_p.c
50 | *_i.h
51 | *.ilk
52 | *.meta
53 | *.obj
54 | *.pch
55 | *.pdb
56 | *.pgc
57 | *.pgd
58 | *.rsp
59 | *.sbr
60 | *.tlb
61 | *.tli
62 | *.tlh
63 | *.tmp
64 | *.tmp_proj
65 | *.log
66 | *.vspscc
67 | *.vssscc
68 | .builds
69 | *.pidb
70 | *.svclog
71 | *.scc
72 |
73 | # Chutzpah Test files
74 | _Chutzpah*
75 |
76 | # Visual C++ cache files
77 | ipch/
78 | *.aps
79 | *.ncb
80 | *.opendb
81 | *.opensdf
82 | *.sdf
83 | *.cachefile
84 | *.VC.db
85 | *.VC.VC.opendb
86 |
87 | # Visual Studio profiler
88 | *.psess
89 | *.vsp
90 | *.vspx
91 | *.sap
92 |
93 | # TFS 2012 Local Workspace
94 | $tf/
95 |
96 | # Guidance Automation Toolkit
97 | *.gpState
98 |
99 | # ReSharper is a .NET coding add-in
100 | _ReSharper*/
101 | *.[Rr]e[Ss]harper
102 | *.DotSettings.user
103 |
104 | # JustCode is a .NET coding add-in
105 | .JustCode
106 |
107 | # TeamCity is a build add-in
108 | _TeamCity*
109 |
110 | # DotCover is a Code Coverage Tool
111 | *.dotCover
112 |
113 | # NCrunch
114 | _NCrunch_*
115 | .*crunch*.local.xml
116 | nCrunchTemp_*
117 |
118 | # MightyMoose
119 | *.mm.*
120 | AutoTest.Net/
121 |
122 | # Web workbench (sass)
123 | .sass-cache/
124 |
125 | # Installshield output folder
126 | [Ee]xpress/
127 |
128 | # DocProject is a documentation generator add-in
129 | DocProject/buildhelp/
130 | DocProject/Help/*.HxT
131 | DocProject/Help/*.HxC
132 | DocProject/Help/*.hhc
133 | DocProject/Help/*.hhk
134 | DocProject/Help/*.hhp
135 | DocProject/Help/Html2
136 | DocProject/Help/html
137 |
138 | # Click-Once directory
139 | publish/
140 |
141 | # Publish Web Output
142 | *.[Pp]ublish.xml
143 | *.azurePubxml
144 | # TODO: Comment the next line if you want to checkin your web deploy settings
145 | # but database connection strings (with potential passwords) will be unencrypted
146 | #*.pubxml
147 | *.publishproj
148 |
149 | # Microsoft Azure Web App publish settings. Comment the next line if you want to
150 | # checkin your Azure Web App publish settings, but sensitive information contained
151 | # in these scripts will be unencrypted
152 | PublishScripts/
153 |
154 | # NuGet Packages
155 | *.nupkg
156 | # The packages folder can be ignored because of Package Restore
157 | **/packages/*
158 | # except build/, which is used as an MSBuild target.
159 | !**/packages/build/
160 | # Uncomment if necessary however generally it will be regenerated when needed
161 | #!**/packages/repositories.config
162 | # NuGet v3's project.json files produces more ignoreable files
163 | *.nuget.props
164 | *.nuget.targets
165 |
166 | # Microsoft Azure Build Output
167 | csx/
168 | *.build.csdef
169 |
170 | # Microsoft Azure Emulator
171 | ecf/
172 | rcf/
173 |
174 | # Windows Store app package directories and files
175 | AppPackages/
176 | BundleArtifacts/
177 | Package.StoreAssociation.xml
178 | _pkginfo.txt
179 |
180 | # Visual Studio cache files
181 | # files ending in .cache can be ignored
182 | *.[Cc]ache
183 | # but keep track of directories ending in .cache
184 | !*.[Cc]ache/
185 |
186 | # Others
187 | ClientBin/
188 | ~$*
189 | *~
190 | *.dbmdl
191 | *.dbproj.schemaview
192 | *.jfm
193 | *.pfx
194 | *.publishsettings
195 | node_modules/
196 | orleans.codegen.cs
197 |
198 | # Since there are multiple workflows, uncomment next line to ignore bower_components
199 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
200 | #bower_components/
201 |
202 | # RIA/Silverlight projects
203 | Generated_Code/
204 |
205 | # Backup & report files from converting an old project file
206 | # to a newer Visual Studio version. Backup files are not needed,
207 | # because we have git ;-)
208 | _UpgradeReport_Files/
209 | Backup*/
210 | UpgradeLog*.XML
211 | UpgradeLog*.htm
212 |
213 | # SQL Server files
214 | *.mdf
215 | *.ldf
216 |
217 | # Business Intelligence projects
218 | *.rdl.data
219 | *.bim.layout
220 | *.bim_*.settings
221 |
222 | # Microsoft Fakes
223 | FakesAssemblies/
224 |
225 | # GhostDoc plugin setting file
226 | *.GhostDoc.xml
227 |
228 | # Node.js Tools for Visual Studio
229 | .ntvs_analysis.dat
230 |
231 | # Visual Studio 6 build log
232 | *.plg
233 |
234 | # Visual Studio 6 workspace options file
235 | *.opt
236 |
237 | # Visual Studio LightSwitch build output
238 | **/*.HTMLClient/GeneratedArtifacts
239 | **/*.DesktopClient/GeneratedArtifacts
240 | **/*.DesktopClient/ModelManifest.xml
241 | **/*.Server/GeneratedArtifacts
242 | **/*.Server/ModelManifest.xml
243 | _Pvt_Extensions
244 |
245 | # Paket dependency manager
246 | .paket/paket.exe
247 | paket-files/
248 |
249 | # FAKE - F# Make
250 | .fake/
251 |
252 | # JetBrains Rider
253 | .idea/
254 | *.sln.iml
255 |
256 | # CodeRush
257 | .cr/
258 |
259 | # Python Tools for Visual Studio (PTVS)
260 | __pycache__/
261 | *.pyc
--------------------------------------------------------------------------------
/1-SingleResponsibility/1-SingleResponsibility.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | netstandard2.0
5 | _1_SingleResponsibility
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/1-SingleResponsibility/Correct Use/SendMail.cs:
--------------------------------------------------------------------------------
1 | namespace _1_SingleResponsibility.Correct_Use
2 | {
3 |
4 | public class MailAdressValidator
5 | {
6 | public bool IsMailAdressValid(string input)
7 | {
8 | // Kural denetimini yap
9 | return true;
10 | }
11 | }
12 | public class SendMail
13 | {
14 | private MailAdressValidator _validator = new MailAdressValidator();
15 |
16 | public bool SendMailForX(string input, string mailAdress)
17 | {
18 | // Kural denetimini _validator nesnesine yaptır
19 | if (!_validator.IsMailAdressValid(mailAdress))
20 | return false;
21 |
22 | // Formatlama işlemini yap
23 | return true;
24 | }
25 | }
26 |
27 |
28 | }
29 |
--------------------------------------------------------------------------------
/1-SingleResponsibility/False Use/SendMail.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Text;
4 |
5 | namespace _1_SingleResponsibility.False_Use
6 | {
7 | public class SendMail
8 | {
9 | public bool SendMailForX(string input, string mailAdress)
10 | {
11 | // Kural denetimi talep et
12 | if (!IsMailAdressValid(mailAdress))
13 | return false;
14 |
15 | // Formatlama işlemini yap
16 | return true;
17 | }
18 |
19 | private bool IsMailAdressValid(string mailAdress)
20 | {
21 | // Kural denetimini yap
22 | return true;
23 | }
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/2-OpenClosed/2-OpenClosed.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | netstandard2.0
5 | _2_OpenClosed
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/2-OpenClosed/Correct Use/Logger.cs:
--------------------------------------------------------------------------------
1 | using _2_OpenClosed.Enum;
2 |
3 | namespace _2_OpenClosed.Correct_Use
4 | {
5 | interface ILogger
6 | {
7 | bool Log(string value);
8 | }
9 | class XmlLog: ILogger
10 | {
11 | public bool Log(string value)
12 | {
13 | //işlemler işlemler
14 | return true;
15 | }
16 | }
17 |
18 | class DbLog: ILogger
19 | {
20 | public bool Log(string value)
21 | {
22 | //işlemler işlemler
23 | return true;
24 | }
25 | }
26 |
27 | class JsonLog : ILogger
28 | {
29 | public bool Log(string value)
30 | {
31 | //işlemler işlemler
32 | return true;
33 | }
34 | }
35 |
36 | class Logger
37 | {
38 | private readonly ILogger _logger;
39 |
40 | public Logger(ILogger logger)
41 | {
42 | _logger = logger;
43 | }
44 |
45 | public void Log(string value)
46 | {
47 | _logger.Log(value);
48 | }
49 | }
50 | }
51 |
--------------------------------------------------------------------------------
/2-OpenClosed/Enum/LogType.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Text;
4 |
5 | namespace _2_OpenClosed.Enum
6 | {
7 | enum LogType
8 | {
9 | Xml,
10 | Db
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/2-OpenClosed/False Use/Logger.cs:
--------------------------------------------------------------------------------
1 | using _2_OpenClosed.Enum;
2 |
3 | namespace _2_OpenClosed.False_Use
4 | {
5 | class XmlLog
6 | {
7 | public bool Log(string value)
8 | {
9 | //işlemler işlemler
10 | return true;
11 | }
12 | }
13 |
14 | class DbLog
15 | {
16 | public bool Log(string value)
17 | {
18 | //işlemler işlemler
19 | return true;
20 | }
21 | }
22 |
23 | class Logger
24 | {
25 | private readonly XmlLog _xmlLog;
26 | private readonly DbLog _dbLog;
27 |
28 | public Logger(XmlLog xmlLog, DbLog dbLog)
29 | {
30 | _xmlLog = xmlLog;
31 | _dbLog = dbLog;
32 | }
33 |
34 | public void Log(LogType type, string value)
35 | {
36 | switch (type)
37 | {
38 | case LogType.Xml:
39 | _xmlLog.Log(value);
40 | break;
41 | case LogType.Db:
42 | _dbLog.Log(value);
43 | break;
44 | }
45 |
46 | }
47 | }
48 | }
49 |
--------------------------------------------------------------------------------
/3-LiskovSubstitution/3-LiskovSubstitution.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | netstandard2.0
5 | _3_LiskovSubstitution
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/3-LiskovSubstitution/Correct Use/Printer.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace _3_LiskovSubstitution.Correct_Use
4 | {
5 | abstract class BasePrinter
6 | {
7 | public abstract void Print(string value);
8 | }
9 |
10 | interface IScan
11 | {
12 | void Scan(string value);
13 | }
14 |
15 | class HpPrinter : BasePrinter
16 | {
17 | public override void Print(string value)
18 | {
19 | //işlemler falan
20 | }
21 |
22 |
23 | }
24 |
25 | class CanonPrinter : BasePrinter,IScan
26 | {
27 | public override void Print(string value)
28 | {
29 | //işlemler falan
30 | }
31 |
32 | public void Scan(string value)
33 | {
34 | //işlemler falan
35 | }
36 | }
37 |
38 | class Printer
39 | {
40 | readonly BasePrinter _canonPrinter = new CanonPrinter();
41 | readonly CanonPrinter _canonScaner = new CanonPrinter();
42 | readonly BasePrinter _hpPrinter = new HpPrinter();
43 |
44 | public void Print(string value)
45 | {
46 |
47 | _canonPrinter.Print(value);
48 | _canonScaner.Scan(value);
49 |
50 | _hpPrinter.Print(value);
51 |
52 | }
53 |
54 | }
55 |
56 | }
57 |
--------------------------------------------------------------------------------
/3-LiskovSubstitution/False Use/Printer.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Text;
4 |
5 | namespace _3_LiskovSubstitution.False_Use
6 | {
7 | abstract class BasePrinter
8 | {
9 | public abstract void Print(string value);
10 | public abstract void Scan(string value);
11 | }
12 |
13 | class HpPrinter : BasePrinter
14 | {
15 | public override void Print(string value)
16 | {
17 | //işlemler falan
18 | }
19 |
20 | public override void Scan(string value)
21 | {
22 | throw new NotImplementedException();
23 | }
24 | }
25 |
26 | class CanonPrinter : BasePrinter
27 | {
28 | public override void Print(string value)
29 | {
30 | //işlemler falan
31 | }
32 |
33 | public override void Scan(string value)
34 | {
35 | //işlemler falan
36 | }
37 | }
38 |
39 | class Printer
40 | {
41 | readonly BasePrinter _canonPrinter = new CanonPrinter();
42 | readonly BasePrinter _hpPrinter = new HpPrinter();
43 |
44 | public void Print(string value)
45 | {
46 | //canon için herhangi bir sorun yok
47 | _canonPrinter.Print(value);
48 | _canonPrinter.Scan(value);
49 |
50 |
51 | //hp de ise Scan özelliği olmadığından NotImplementedException hatası alacağız
52 | _hpPrinter.Print(value);
53 | _hpPrinter.Scan(value);
54 | }
55 |
56 | }
57 |
58 | }
59 |
--------------------------------------------------------------------------------
/4-InterfaceSegregation/4-InterfaceSegregation.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | netstandard2.0
5 | _4_InterfaceSegregation
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/4-InterfaceSegregation/Correct Use/BaseApı.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Text;
4 |
5 | namespace _4_InterfaceSegregation.Correct_Use
6 | {
7 | interface IGet
8 | {
9 | void Get(int id);
10 | }
11 | interface IBaseApi : IGet
12 | {
13 | void Put(int id);
14 | void Post(int id);
15 | void Delete(int id);
16 | }
17 |
18 | public class News : IBaseApi
19 | {
20 | public void Put(int id)
21 | {
22 | throw new NotImplementedException();
23 | }
24 |
25 | public void Post(int id)
26 | {
27 | throw new NotImplementedException();
28 | }
29 |
30 | public void Get(int id)
31 | {
32 | throw new NotImplementedException();
33 | }
34 |
35 | public void Delete(int id)
36 | {
37 | throw new NotImplementedException();
38 | }
39 | }
40 |
41 | public class Video : IBaseApi
42 | {
43 | public void Put(int id)
44 | {
45 | throw new NotImplementedException();
46 | }
47 |
48 | public void Post(int id)
49 | {
50 | throw new NotImplementedException();
51 | }
52 |
53 | public void Get(int id)
54 | {
55 | throw new NotImplementedException();
56 | }
57 |
58 | public void Delete(int id)
59 | {
60 | throw new NotImplementedException();
61 | }
62 | }
63 |
64 | public class Notification : IGet
65 | {
66 | public void Get(int id)
67 | {
68 | throw new NotImplementedException();
69 | }
70 |
71 | }
72 | }
73 |
--------------------------------------------------------------------------------
/4-InterfaceSegregation/False Use/BaseAPI.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Text;
4 |
5 | namespace _4_InterfaceSegregation.False_Use
6 | {
7 | public interface IBaseApi
8 | {
9 | void Put(int id);
10 | void Post(int id);
11 | void Get(int id);
12 | void Delete(int id);
13 | }
14 |
15 | public class News : IBaseApi
16 | {
17 | public void Put(int id)
18 | {
19 | throw new NotImplementedException();
20 | }
21 |
22 | public void Post(int id)
23 | {
24 | throw new NotImplementedException();
25 | }
26 |
27 | public void Get(int id)
28 | {
29 | throw new NotImplementedException();
30 | }
31 |
32 | public void Delete(int id)
33 | {
34 | throw new NotImplementedException();
35 | }
36 | }
37 |
38 | public class Video : IBaseApi
39 | {
40 | public void Put(int id)
41 | {
42 | throw new NotImplementedException();
43 | }
44 |
45 | public void Post(int id)
46 | {
47 | throw new NotImplementedException();
48 | }
49 |
50 | public void Get(int id)
51 | {
52 | throw new NotImplementedException();
53 | }
54 |
55 | public void Delete(int id)
56 | {
57 | throw new NotImplementedException();
58 | }
59 | }
60 |
61 | public class Notification : IBaseApi
62 | {
63 | public void Put(int id)
64 | {
65 | throw new NotImplementedException();
66 | }
67 |
68 | public void Post(int id)
69 | {
70 | throw new NotImplementedException();
71 | }
72 |
73 | public void Get(int id)
74 | {
75 | throw new NotImplementedException();
76 | }
77 |
78 | public void Delete(int id)
79 | {
80 | throw new NotImplementedException();
81 | }
82 | }
83 | }
84 |
--------------------------------------------------------------------------------
/5-DependencyInversion/5-DependencyInversion.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | netstandard2.0
5 | _5_DependencyInversion
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/5-DependencyInversion/Correct Use/Logger.cs:
--------------------------------------------------------------------------------
1 | namespace _5_DependencyInversion.Correct_Use
2 | {
3 | interface ILogger
4 | {
5 | bool Log(string value);
6 | }
7 | class XmlLog: ILogger
8 | {
9 | public bool Log(string value)
10 | {
11 | //işlemler işlemler
12 | return true;
13 | }
14 | }
15 |
16 | class Logger
17 | {
18 | private readonly ILogger _logger;
19 |
20 | public Logger(ILogger logger)
21 | {
22 | _logger = logger;
23 | }
24 |
25 | public void Log(string value)
26 | {
27 | _logger.Log(value);
28 | }
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/5-DependencyInversion/False Use/Logger.cs:
--------------------------------------------------------------------------------
1 | namespace _5_DependencyInversion.False_Use
2 | {
3 | class XmlLog
4 | {
5 | public bool Log(string value)
6 | {
7 | //işlemler işlemler
8 | return true;
9 | }
10 | }
11 |
12 | class Logger
13 | {
14 | private readonly XmlLog _xmlLog= new XmlLog();
15 |
16 | public void Log(string value)
17 | {
18 | _xmlLog.Log(value);
19 | }
20 |
21 | }
22 | }
23 |
24 |
--------------------------------------------------------------------------------
/SolidPrinciples.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio 15
4 | VisualStudioVersion = 15.0.28010.0
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "1-SingleResponsibility", "1-SingleResponsibility\1-SingleResponsibility.csproj", "{40C8458B-CEFF-4109-A073-87D9B5509B19}"
7 | EndProject
8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "2-OpenClosed", "2-OpenClosed\2-OpenClosed.csproj", "{121D6B52-9FE5-4B10-8565-7DA3D0912424}"
9 | EndProject
10 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "3-LiskovSubstitution", "3-LiskovSubstitution\3-LiskovSubstitution.csproj", "{63F55E73-F191-455A-BBD1-2AEFDFB1EB1C}"
11 | EndProject
12 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "4-InterfaceSegregation", "4-InterfaceSegregation\4-InterfaceSegregation.csproj", "{0F5417FA-C94D-42FF-8901-0E970E90640D}"
13 | EndProject
14 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "5-DependencyInversion", "5-DependencyInversion\5-DependencyInversion.csproj", "{759730A9-01CD-48C0-A781-18886B776A6D}"
15 | EndProject
16 | Global
17 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
18 | Debug|Any CPU = Debug|Any CPU
19 | Release|Any CPU = Release|Any CPU
20 | EndGlobalSection
21 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
22 | {40C8458B-CEFF-4109-A073-87D9B5509B19}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
23 | {40C8458B-CEFF-4109-A073-87D9B5509B19}.Debug|Any CPU.Build.0 = Debug|Any CPU
24 | {40C8458B-CEFF-4109-A073-87D9B5509B19}.Release|Any CPU.ActiveCfg = Release|Any CPU
25 | {40C8458B-CEFF-4109-A073-87D9B5509B19}.Release|Any CPU.Build.0 = Release|Any CPU
26 | {121D6B52-9FE5-4B10-8565-7DA3D0912424}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
27 | {121D6B52-9FE5-4B10-8565-7DA3D0912424}.Debug|Any CPU.Build.0 = Debug|Any CPU
28 | {121D6B52-9FE5-4B10-8565-7DA3D0912424}.Release|Any CPU.ActiveCfg = Release|Any CPU
29 | {121D6B52-9FE5-4B10-8565-7DA3D0912424}.Release|Any CPU.Build.0 = Release|Any CPU
30 | {63F55E73-F191-455A-BBD1-2AEFDFB1EB1C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
31 | {63F55E73-F191-455A-BBD1-2AEFDFB1EB1C}.Debug|Any CPU.Build.0 = Debug|Any CPU
32 | {63F55E73-F191-455A-BBD1-2AEFDFB1EB1C}.Release|Any CPU.ActiveCfg = Release|Any CPU
33 | {63F55E73-F191-455A-BBD1-2AEFDFB1EB1C}.Release|Any CPU.Build.0 = Release|Any CPU
34 | {0F5417FA-C94D-42FF-8901-0E970E90640D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
35 | {0F5417FA-C94D-42FF-8901-0E970E90640D}.Debug|Any CPU.Build.0 = Debug|Any CPU
36 | {0F5417FA-C94D-42FF-8901-0E970E90640D}.Release|Any CPU.ActiveCfg = Release|Any CPU
37 | {0F5417FA-C94D-42FF-8901-0E970E90640D}.Release|Any CPU.Build.0 = Release|Any CPU
38 | {759730A9-01CD-48C0-A781-18886B776A6D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
39 | {759730A9-01CD-48C0-A781-18886B776A6D}.Debug|Any CPU.Build.0 = Debug|Any CPU
40 | {759730A9-01CD-48C0-A781-18886B776A6D}.Release|Any CPU.ActiveCfg = Release|Any CPU
41 | {759730A9-01CD-48C0-A781-18886B776A6D}.Release|Any CPU.Build.0 = Release|Any CPU
42 | EndGlobalSection
43 | GlobalSection(SolutionProperties) = preSolution
44 | HideSolutionNode = FALSE
45 | EndGlobalSection
46 | GlobalSection(ExtensibilityGlobals) = postSolution
47 | SolutionGuid = {47AD84DB-1A2B-4245-9E23-1EB0574B7FDF}
48 | EndGlobalSection
49 | EndGlobal
50 |
--------------------------------------------------------------------------------