Skip to content
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

Remove -runtime version suffix hack for M.E. #34464

Merged
merged 1 commit into from
Apr 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
<PatchVersion>0</PatchVersion>
<PreReleaseVersionLabel>preview</PreReleaseVersionLabel>
<PreReleaseVersionIteration>4</PreReleaseVersionIteration>
<PreReleaseVersionIteration Condition="$(MSBuildProjectName.StartsWith('Microsoft.Extensions.'))">$(PreReleaseVersionIteration)-runtime</PreReleaseVersionIteration>
<!-- Set assembly version to align with major and minor version,
as for the patches and revisions should be manually updated per assembly if it is serviced. -->
<AssemblyVersion>$(MajorVersion).$(MinorVersion).0.0</AssemblyVersion>
Expand Down
8 changes: 0 additions & 8 deletions eng/packaging.targets
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,4 @@
'$(_excludeCompile)' == 'true' and
'%(Dependency.Identity)' != '_._'" />
</Target>

<Target Name="UndoExtensionsSuffix" Condition="$(MSBuildProjectName.StartsWith('Microsoft.Extensions'))" BeforeTargets="GenerateNuspec">
<ItemGroup>
<Dependency Condition="!$([System.String]::Copy('%(Dependency.Identity)').StartsWith('Microsoft.Extensions'))">
<Version>$([System.String]::Copy('%(Dependency.Version)').Replace('-runtime', ''))</Version>
</Dependency>
</ItemGroup>
</Target>
</Project>