From 2439de87673c6f7e9aee25e83b95d563ed082624 Mon Sep 17 00:00:00 2001 From: Jordan Matthiesen <1333029+jmatthiesen@users.noreply.github.com> Date: Thu, 26 Sep 2024 12:12:28 -0700 Subject: [PATCH] Updated best practices for C# samples --- docs/structure-samples/csharp/csharp.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/docs/structure-samples/csharp/csharp.md b/docs/structure-samples/csharp/csharp.md index ebf6eb7..c2a35fd 100644 --- a/docs/structure-samples/csharp/csharp.md +++ b/docs/structure-samples/csharp/csharp.md @@ -27,9 +27,12 @@ The following guidelines and the folders included, represent the conventional st │ │ ├── Services/ │ │ ├── Repositories/ │ │ └── ... -│ ├── ProjectName.Web/ -│ │ ├── Controllers/ -│ │ ├── Views/ +│ ├── ProjectName.Web (Blazor)/ +│ │ ├── Components/ +| | |──── +| | |──── Layout +| | |──── Pages +│ │ ├── Services/ │ │ ├── wwwroot/ │ │ └── ... │ ├── ProjectName.Tests/ @@ -54,4 +57,4 @@ The following guidelines and the folders included, represent the conventional st # Recommended coding styleguide -C# AZD templates follow the [common C# code conventions](https://learn.microsoft.com/en-us/dotnet/csharp/fundamentals/coding-style/coding-conventions) used for documentation & samples. \ No newline at end of file +C# AZD templates follow the [common C# code conventions](https://learn.microsoft.com/en-us/dotnet/csharp/fundamentals/coding-style/coding-conventions) used for documentation & samples.