Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/tasks
diff options
context:
space:
mode:
authorStephen Toub <stoub@microsoft.com>2022-06-09 07:23:35 +0300
committerGitHub <noreply@github.com>2022-06-09 07:23:35 +0300
commit76b5b76ceb08baa587178f8654df1a964547930b (patch)
treebd1c1d3a7c76705287236d5d0a7becf6a8487e50 /src/tasks
parent8ce62ab80e11103da60a9dcf0fc1099c818767c2 (diff)
Enable IDE0074 (Use compound assignment) (#70402)
Diffstat (limited to 'src/tasks')
-rw-r--r--src/tasks/installer.tasks/BuildTask.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tasks/installer.tasks/BuildTask.cs b/src/tasks/installer.tasks/BuildTask.cs
index e0190b91a8e..e7a7a1a0a53 100644
--- a/src/tasks/installer.tasks/BuildTask.cs
+++ b/src/tasks/installer.tasks/BuildTask.cs
@@ -12,7 +12,7 @@ namespace Microsoft.DotNet.Build.Tasks
internal TaskLoggingHelper Log
{
- get { return _log ?? (_log = new TaskLoggingHelper(this)); }
+ get { return _log ??= new TaskLoggingHelper(this); }
}
public BuildTask()