Skip to content

Commit

Permalink
Add a missing paranth to rid inference.
Browse files Browse the repository at this point in the history
  • Loading branch information
nagilson committed Dec 13, 2022
1 parent c3a68ec commit 6f17fc9
Showing 1 changed file with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,13 @@ Copyright (c) .NET Foundation. All rights reserved.
(
'$(SelfContained)' == 'true' or
('$(_IsPublishing)' == 'true' and
(
'$(PublishReadyToRun)' == 'true' or
'$(PublishSingleFile)' == 'true' or
'$(PublishAot)' == 'true'
)
)">true</UseCurrentRuntimeIdentifier>
(
'$(PublishReadyToRun)' == 'true' or
'$(PublishSingleFile)' == 'true' or
'$(PublishAot)' == 'true'
)
)
)">true</UseCurrentRuntimeIdentifier>
</PropertyGroup>

<PropertyGroup Condition="'$(UseCurrentRuntimeIdentifier)' == 'true'">
Expand Down

0 comments on commit 6f17fc9

Please sign in to comment.