- Simplified the .env.example file by removing outdated comments and consolidating environment variable descriptions. - Updated the architecture documentation to reflect the new structure and components of the .NET 10 microservice template. - Enhanced clarity in the README.md to provide a more comprehensive overview of the template's features and requirements. - Removed obsolete appsettings files to streamline the project structure and improve usability.
12 lines
475 B
Plaintext
12 lines
475 B
Plaintext
<Solution>
|
|
<Folder Name="/src/">
|
|
<Project Path="src/MyService.API/MyService.API.csproj" />
|
|
<Project Path="src/MyService.Domain/MyService.Domain.csproj" />
|
|
<Project Path="src/MyService.Infrastructure/MyService.Infrastructure.csproj" />
|
|
</Folder>
|
|
<Folder Name="/tests/">
|
|
<Project Path="tests/MyService.FunctionalTests/MyService.FunctionalTests.csproj" />
|
|
<Project Path="tests/MyService.UnitTests/MyService.UnitTests.csproj" />
|
|
</Folder>
|
|
</Solution>
|