-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Add static fields guidance to /mt spec. #13442
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
b9531cf
45b6263
fdaa6be
d219087
8231cfd
116bdb6
7fc4f2c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -51,6 +51,12 @@ public interface IBuildEngine4 : IBuildEngine3 | |||||||||||||||||||||
| /// manage limited process memory resources. | ||||||||||||||||||||||
| /// </para> | ||||||||||||||||||||||
| /// <para> | ||||||||||||||||||||||
| /// This method is thread-safe. If multiple threads concurrently attempt to register an object with the | ||||||||||||||||||||||
| /// same <paramref name="key"/> and <paramref name="lifetime"/>, only the first registration takes effect | ||||||||||||||||||||||
| /// and subsequent registrations are ignored. Callers should use <see cref="GetRegisteredTaskObject"/> after | ||||||||||||||||||||||
| /// registration to obtain the authoritative instance. | ||||||||||||||||||||||
|
AR-May marked this conversation as resolved.
Comment on lines
+54
to
+57
|
||||||||||||||||||||||
| /// This method is thread-safe. If multiple threads concurrently attempt to register an object with the | |
| /// same <paramref name="key"/> and <paramref name="lifetime"/>, only the first registration takes effect | |
| /// and subsequent registrations are ignored. Callers should use <see cref="GetRegisteredTaskObject"/> after | |
| /// registration to obtain the authoritative instance. | |
| /// This method is thread-safe and may be called concurrently from multiple threads. Implementations may | |
| /// choose different strategies when multiple threads attempt to register an object with the same | |
| /// <paramref name="key"/> and <paramref name="lifetime"/>. In MSBuild's default build engine | |
| /// implementation, only the first registration takes effect and subsequent registrations are ignored; | |
| /// callers should use <see cref="GetRegisteredTaskObject"/> after registration to obtain the authoritative | |
| /// instance. |
Uh oh!
There was an error while loading. Please reload this page.