1
0
Fork 0
mirror of https://github.com/VSadov/Satori.git synced 2025-06-10 18:11:04 +09:00

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

This commit is contained in:
Maryam Ariyan 2020-04-02 18:51:21 -07:00 committed by GitHub
parent 8259df715e
commit 221f869e9b
Signed by: github
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 9 deletions

View file

@ -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>

View file

@ -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>