Skip to content

Commit

Permalink
Merge branch 'main' into merge/vs17.9-to-main
Browse files Browse the repository at this point in the history
  • Loading branch information
rokonec committed Dec 11, 2023
2 parents 9276c4e + 7a81dc1 commit 84f7f98
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the MIT license. See License.txt in the project root for full license information. -->
<Project>
<PropertyGroup>
<VersionPrefix>17.9.0</VersionPrefix>
<VersionPrefix>17.10.0</VersionPrefix>
<PackageValidationBaselineVersion>17.8.3</PackageValidationBaselineVersion>
<AssemblyVersion>15.1.0.0</AssemblyVersion>
<PreReleaseVersionLabel>preview</PreReleaseVersionLabel>
Expand Down
12 changes: 12 additions & 0 deletions src/Tasks/Microsoft.Common.CurrentVersion.targets
Original file line number Diff line number Diff line change
Expand Up @@ -1376,6 +1376,18 @@ Copyright (C) Microsoft Corporation. All rights reserved.
<_Temp Remove="@(_Temp)" />
</ItemGroup>

<!-- RESOURCE ITEMS -->
<AssignLinkMetadata Items="@(Resource)"
Condition="'@(Resource)' != '' and '%(Resource.DefiningProjectFullPath)' != '$(MSBuildProjectFullPath)' and $([MSBuild]::AreFeaturesEnabled('17.10'))">
<Output TaskParameter="OutputItems" ItemName="_Temp" />
</AssignLinkMetadata>

<ItemGroup Condition="$([MSBuild]::AreFeaturesEnabled('17.10'))">
<Resource Remove="@(_Temp)" />
<Resource Include="@(_Temp)" />
<_Temp Remove="@(_Temp)" />
</ItemGroup>

</Target>

<!--
Expand Down

0 comments on commit 84f7f98

Please sign in to comment.