You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- [Workers](mdc:application/back-office/Workers): A .NET Console job.
54
54
- [Tests](mdc:application/back-office/Tests): xUnit tests for backend.
55
-
- [AppHost](mdc:application/AppHost): .NET Aspire project for orchestrating SCSs and Docker containers. Never run directly—typically running in watch mode.
56
-
- [AppGateway](mdc:application/AppGateway): Main entry point using .NET YARP as reverse proxy for all SCSs.
55
+
- [AppHost](mdc:application/AppHost): Aspire project for orchestrating SCSs and Docker containers. Never run directly—typically running in watch mode.
56
+
- [AppGateway](mdc:application/AppGateway): Main entry point using YARP as reverse proxy for all SCSs.
57
57
- [shared-kernel](mdc:application/shared-kernel): Reusable .NET backend shared by all SCSs.
58
58
- [shared-webapp](mdc:application/shared-webapp): Reusable frontend shared by all SCSs.
59
59
- [cloud-infrastructure](mdc:cloud-infrastructure): Bash and Azure Bicep scripts (IaC).
-[Workers](/application/back-office/Workers): A .NET Console job.
54
54
-[Tests](/application/back-office/Tests): xUnit tests for backend.
55
-
-[AppHost](/application/AppHost): .NET Aspire project for orchestrating SCSs and Docker containers. Never run directly—typically running in watch mode.
56
-
-[AppGateway](/application/AppGateway): Main entry point using .NET YARP as reverse proxy for all SCSs.
55
+
-[AppHost](/application/AppHost): Aspire project for orchestrating SCSs and Docker containers. Never run directly—typically running in watch mode.
56
+
-[AppGateway](/application/AppGateway): Main entry point using YARP as reverse proxy for all SCSs.
57
57
-[shared-kernel](/application/shared-kernel): Reusable .NET backend shared by all SCSs.
58
58
-[shared-webapp](/application/shared-webapp): Reusable frontend shared by all SCSs.
59
59
-[cloud-infrastructure](/cloud-infrastructure): Bash and Azure Bicep scripts (IaC).
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ Built to demonstrate seamless flow—backend contracts feed a fully-typed React
27
27
28
28
## What's inside
29
29
30
-
***Backend** - .NET 9 and C# adhering to the principles of vertical slice architecture, DDD, CQRS, and clean code
30
+
***Backend** - .NET 10 and C# 14 adhering to the principles of vertical slice architecture, DDD, CQRS, and clean code
31
31
***Frontend** – React 19, TypeScript, TanStack Router & Query, React Aria for accessible and UI
32
32
***CI/CD** - GitHub actions for fast passwordless deployments of docker containers and infrastructure (Bicep)
33
33
***Infrastructure** - Cost efficient and scalable Azure PaaS services like Azure Container Apps, Azure SQL, etc.
@@ -59,7 +59,7 @@ For development, you need .NET, Docker, and Node. And GitHub and Azure CLI for s
59
59
2. From an Administrator PowerShell terminal, use [winget](https://learn.microsoft.com/en-us/windows/package-manager/winget/) (preinstalled on Windows 11) to install any missing packages:
60
60
61
61
```powershell
62
-
winget install Microsoft.DotNet.SDK.9
62
+
winget install Microsoft.DotNet.SDK.10
63
63
winget install Git.Git
64
64
winget install Docker.DockerDesktop
65
65
winget install OpenJS.NodeJS
@@ -125,10 +125,10 @@ Open a terminal and run the following commands (if not installed):
125
125
sudo apt-get update
126
126
```
127
127
128
-
- Install .NET SDK 9.0, Node, GitHub CLI
128
+
- Install .NET SDK 10.0, Node, GitHub CLI
129
129
130
130
```bash
131
-
sudo apt-get install -y dotnet-sdk-9.0 nodejs gh
131
+
sudo apt-get install -y dotnet-sdk-10.0 nodejs gh
132
132
```
133
133
134
134
- Install Azure CLI
@@ -233,11 +233,11 @@ PlatformPlatform is a [monorepo](https://en.wikipedia.org/wiki/Monorepo) contain
233
233
234
234
# Technologies
235
235
236
-
### .NET 9 Backend With Vertical Sliced Architecture, DDD, CQRS, Minimal API, and Aspire
236
+
### .NET 10 Backend With Vertical Sliced Architecture, DDD, CQRS, Minimal API, and Aspire
237
237
238
238
The backend is built using the most popular, mature, and commonly used technologies in the .NET ecosystem:
239
239
240
-
-[.NET 9](https://dotnet.microsoft.com) and [C# 13](https://learn.microsoft.com/en-us/dotnet/csharp/tour-of-csharp)
240
+
-[.NET 10](https://dotnet.microsoft.com) and [C# 14](https://learn.microsoft.com/en-us/dotnet/csharp/tour-of-csharp)
0 commit comments