├── .gitattributes
├── .gitignore
├── Chapter02
└── Codes.zip
├── Chapter03
└── Codes.zip
├── Chapter06
└── Codes.zip
├── Chapter07
└── Codes.zip
├── Chapter10
├── CAS.zip
└── Codes.zip
├── Chapter11
├── backend.zip
└── frontend.zip
├── LICENSE
└── README.md
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Auto detect text files and perform LF normalization
2 | * text=auto
3 |
4 | # Custom for Visual Studio
5 | *.cs diff=csharp
6 |
7 | # Standard to msysgit
8 | *.doc diff=astextplain
9 | *.DOC diff=astextplain
10 | *.docx diff=astextplain
11 | *.DOCX diff=astextplain
12 | *.dot diff=astextplain
13 | *.DOT diff=astextplain
14 | *.pdf diff=astextplain
15 | *.PDF diff=astextplain
16 | *.rtf diff=astextplain
17 | *.RTF diff=astextplain
18 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Windows image file caches
2 | Thumbs.db
3 | ehthumbs.db
4 |
5 | # Folder config file
6 | Desktop.ini
7 |
8 | # Recycle Bin used on file shares
9 | $RECYCLE.BIN/
10 |
11 | # Windows Installer files
12 | *.cab
13 | *.msi
14 | *.msm
15 | *.msp
16 |
17 | # Windows shortcuts
18 | *.lnk
19 |
20 | # =========================
21 | # Operating System Files
22 | # =========================
23 |
24 | # OSX
25 | # =========================
26 |
27 | .DS_Store
28 | .AppleDouble
29 | .LSOverride
30 |
31 | # Thumbnails
32 | ._*
33 |
34 | # Files that might appear in the root of a volume
35 | .DocumentRevisions-V100
36 | .fseventsd
37 | .Spotlight-V100
38 | .TemporaryItems
39 | .Trashes
40 | .VolumeIcon.icns
41 |
42 | # Directories potentially created on remote AFP share
43 | .AppleDB
44 | .AppleDesktop
45 | Network Trash Folder
46 | Temporary Items
47 | .apdisk
48 |
--------------------------------------------------------------------------------
/Chapter02/Codes.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Enterprise-Application-Architecture-with-NET-Core/cab33f5006245cc10a0627f62f6c1087438258a0/Chapter02/Codes.zip
--------------------------------------------------------------------------------
/Chapter03/Codes.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Enterprise-Application-Architecture-with-NET-Core/cab33f5006245cc10a0627f62f6c1087438258a0/Chapter03/Codes.zip
--------------------------------------------------------------------------------
/Chapter06/Codes.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Enterprise-Application-Architecture-with-NET-Core/cab33f5006245cc10a0627f62f6c1087438258a0/Chapter06/Codes.zip
--------------------------------------------------------------------------------
/Chapter07/Codes.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Enterprise-Application-Architecture-with-NET-Core/cab33f5006245cc10a0627f62f6c1087438258a0/Chapter07/Codes.zip
--------------------------------------------------------------------------------
/Chapter10/CAS.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Enterprise-Application-Architecture-with-NET-Core/cab33f5006245cc10a0627f62f6c1087438258a0/Chapter10/CAS.zip
--------------------------------------------------------------------------------
/Chapter10/Codes.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Enterprise-Application-Architecture-with-NET-Core/cab33f5006245cc10a0627f62f6c1087438258a0/Chapter10/Codes.zip
--------------------------------------------------------------------------------
/Chapter11/backend.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Enterprise-Application-Architecture-with-NET-Core/cab33f5006245cc10a0627f62f6c1087438258a0/Chapter11/backend.zip
--------------------------------------------------------------------------------
/Chapter11/frontend.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Enterprise-Application-Architecture-with-NET-Core/cab33f5006245cc10a0627f62f6c1087438258a0/Chapter11/frontend.zip
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2017 Packt
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | # Enterprise Application Architecture with .NET Core
5 | This is the code repository for [Enterprise Application Architecture with .NET Core](https://www.packtpub.com/application-development/enterprise-application-architecture-net-core?utm_source=github&utm_medium=repository&utm_campaign=9781786468888), published by [Packt](https://www.packtpub.com/?utm_source=github). It contains all the supporting project files necessary to work through the book from start to finish.
6 | ## About the Book
7 | If you want to design and develop enterprise applications using .NET Core as the development framework and learn about industry-wide best practices and guidelines, then this book is for you.
8 |
9 | The book starts with a brief introduction to Enterprise Architecture, which will help you to understand what enterprise architecture is and what the key components are. It will then teach you about the types of patterns and principles for software development and explain the various aspects of distributed computing to keep your applications effective and scalable. These chapters act as a catalyst to start the practical implementation, and design and develop applications using different architectural approaches such as Layered architecture, Service Oriented Architecture, Microservices and Cloud-specific solutions.
10 | ## Instructions and Navigation
11 |
12 | All of the code is organized into folders.For example, Chapter02.
13 |
14 |
15 |
16 | The code will look like the following:
17 | ```
18 | namespace Chapter2.SRP.Decorator
19 | {
20 | public class Student
21 | {
22 | public string Name;
23 | public string Id;
24 | public DateTime DOB;
25 | }
26 | }
27 | ```
28 |
29 | Chapters 1, 4, 5, 8, and 9 does not have any code files.
30 |
31 | #### Software:
32 |
33 | * Development Environment: Visual Studio 2015/2017 Community Edition
34 | * Execution Environment: .NET Core
35 | * OS Environment: Oracle VM VirtualBox with Windows or Linux
36 | * Microsoft Azure Account
37 |
38 | ## Related Products
39 | * [C# 7 and .NET Core: Modern Cross-Platform Development - Second Edition](https://www.packtpub.com/application-development/c-7-and-net-core-modern-cross-platform-development-second-edition?utm_source=github&utm_medium=repository&utm_campaign=9781787129559)
40 |
41 | * [Learning ASP.NET Core MVC Programming](https://www.packtpub.com/application-development/learning-aspnet-core-mvc-programming?utm_source=github&utm_medium=repository&utm_campaign=9781786463838)
42 |
43 | * [ASP.NET Core Essentials](https://www.packtpub.com/web-development/aspnet-core-essentials?utm_source=github&utm_medium=repository&utm_campaign=9781785889158)
44 |
45 |
46 | ### Suggestions and Feedback
47 | [Click here](https://docs.google.com/forms/d/e/1FAIpQLSe5qwunkGf6PUvzPirPDtuy1Du5Rlzew23UBp2S-P3wB-GcwQ/viewform) if you have any feedback or suggestions.
48 | ### Download a free PDF
49 |
50 | If you have already purchased a print or Kindle version of this book, you can get a DRM-free PDF version at no cost.
Simply click on the link to claim your free PDF.
51 |