1
0
Fork 0
mirror of https://github.com/VSadov/Satori.git synced 2025-06-10 18:11:04 +09:00
Satori/docs
Jacob Bundgaard 9daa4b41eb
Add support for primary constructors in LoggerMessageGenerator (#101660)
* Add support for primary constructors in LoggerMessageGenerator

* Get the primary constructor parameters types from the constructor symbol instead of from the semantic model

* Prioritize fields over primary constructor parameters and ignore shadowed parameters when finding a logger

* Make checking for primary constructors non-conditional on Roslyn version and simplify project setup

* Reintroduce Roslyn 4.8 test project

* Add info-level diagnostic for logger primary constructor parameters that are shadowed by field

* Update list of diagnostics with new logging message generator diagnostic

* Only add non-logger field names to set of shadowed names

* Add comment explaining the use of the set of shadowed names with an example
2024-05-28 09:13:32 -07:00
..
coding-guidelines Update link to dotnet-format tool (#101619) 2024-04-26 12:27:36 -07:00
design Change the ReciprocalEstimate and ReciprocalSqrtEstimate APIs to be mustExpand on RyuJIT (#102098) 2024-05-13 14:01:21 -07:00
infra FabricBot: Onboarding to GitOps.ResourceManagement because of FabricBot decommissioning (#99169) 2024-03-06 22:39:50 -08:00
issue-mappings Old repo issue number mapped to new repo issue number (#31981) 2020-02-08 12:20:38 -08:00
project Add support for primary constructors in LoggerMessageGenerator (#101660) 2024-05-28 09:13:32 -07:00
tools/illink Use Program.dll instead of Program.exe in illink docs (#95752) 2023-12-08 20:52:37 +01:00
workflow Merge JIT/Methodical tests into the merged runners (#101317) 2024-05-07 23:50:37 -07:00
area-owners.md Update area owners (#102022) 2024-05-08 12:42:57 -05:00
deep-dive-blog-posts.md Add Performance Improvements in .NET 8 to deep-dive-posts.md (#92003) 2023-09-13 11:26:06 -04:00
issue-cleanup.md Add issue cleanup documentation and update automation (#69857) 2022-05-30 11:34:44 +01:00
issues-pr-management.md Quick doc formatting update to test checkout without bundle. 2021-01-14 11:28:34 -08:00
README.md Delete broken link (#93378) 2023-10-12 08:39:07 -04:00

Documents Index

This repo includes several documents that explain both high-level and low-level concepts about the .NET runtime and libraries. These are very useful for contributors, to get context that can be very difficult to acquire from just reading code.

Intro to .NET

.NET is a self-contained .NET runtime and framework that implements ECMA 335. It can be (and has been) ported to multiple architectures and platforms. It support a variety of installation options, having no specific deployment requirements itself.

Getting Started

Workflow (Building, testing, benchmarking, profiling, etc.)

If you want to contribute a code change to this repo, start here.

Design Docs

The Book of the Runtime is a set of chapters that go in depth into various interesting aspects of the design of the .NET Framework.

For your convenience, here are a few quick links to popular chapters:

For additional information, see this list of blog posts that provide a 'deep-dive' into the CoreCLR source code

Coding Guidelines

Project Docs

To be added. Visit the project docs folder directly meanwhile.

Other Information