📝 Updates C# and MSBuild instructions for clarity

This commit is contained in:
2026-04-25 16:30:29 +03:00
parent 3074c580dc
commit ad4aa99cfa
2 changed files with 2 additions and 1 deletions
@@ -15,3 +15,4 @@ Code style is enforced by `.editorconfig`, `.globalconfig`, and StyleCop analyze
- Prefer **records** for DTOs, value objects, and other immutable data carriers. - Prefer **records** for DTOs, value objects, and other immutable data carriers.
- Use `LoggerMessage`-generated `partial` methods on a `partial class` — never log inline (e.g., `logger.LogInformation(…)`). - Use `LoggerMessage`-generated `partial` methods on a `partial class` — never log inline (e.g., `logger.LogInformation(…)`).
+1 -1
View File
@@ -32,7 +32,7 @@ These are configured in the root `Directory.Build.props` — do **not** set them
Handled automatically via `<InternalsVisibleToSuffix>` in the root props. Default suffixes are `.Tests` and `Tests`. To add custom visibility: Handled automatically via `<InternalsVisibleToSuffix>` in the root props. Default suffixes are `.Tests` and `Tests`. To add custom visibility:
<parameter name="newString">```xml ```xml
<ItemGroup> <ItemGroup>
<InternalsVisibleTo Include="MyProject.IntegrationTests" /> <InternalsVisibleTo Include="MyProject.IntegrationTests" />
</ItemGroup> </ItemGroup>