Merge in 'release/5.0' changes
This commit is contained in:
commit
61fc832b61
|
|
@ -8,7 +8,9 @@
|
||||||
|
|
||||||
<_UploadPathRoot>aspnetcore</_UploadPathRoot>
|
<_UploadPathRoot>aspnetcore</_UploadPathRoot>
|
||||||
<ProductVersionFileName>productVersion.txt</ProductVersionFileName>
|
<ProductVersionFileName>productVersion.txt</ProductVersionFileName>
|
||||||
|
<RepoProductVersionFileName>$(_UploadPathRoot)-$(ProductVersionFileName)</RepoProductVersionFileName>
|
||||||
<ProductVersionFileLocation>$(ArtifactsShippingPackagesDir)$(ProductVersionFileName)</ProductVersionFileLocation>
|
<ProductVersionFileLocation>$(ArtifactsShippingPackagesDir)$(ProductVersionFileName)</ProductVersionFileLocation>
|
||||||
|
<RepoProductVersionFileLocation>$(ArtifactsShippingPackagesDir)$(RepoProductVersionFileName)</RepoProductVersionFileLocation>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<!-- $(InstallersOutputPath), $(SymbolsOutputPath), and $(ChecksumExtensions) are not defined. Root Directory.Build.props is not imported. -->
|
<!-- $(InstallersOutputPath), $(SymbolsOutputPath), and $(ChecksumExtensions) are not defined. Root Directory.Build.props is not imported. -->
|
||||||
|
|
@ -78,6 +80,11 @@
|
||||||
<PublishFlatContainer>true</PublishFlatContainer>
|
<PublishFlatContainer>true</PublishFlatContainer>
|
||||||
<RelativeBlobPath>$(_UploadPathRoot)/Runtime/$(_PackageVersion)/$(ProductVersionFileName)</RelativeBlobPath>
|
<RelativeBlobPath>$(_UploadPathRoot)/Runtime/$(_PackageVersion)/$(ProductVersionFileName)</RelativeBlobPath>
|
||||||
</ItemsToPushToBlobFeed>
|
</ItemsToPushToBlobFeed>
|
||||||
|
|
||||||
|
<ItemsToPushToBlobFeed Include="$(RepoProductVersionFileLocation)" Condition=" '$(PublishInstallerBaseVersion)' == 'true'">
|
||||||
|
<PublishFlatContainer>true</PublishFlatContainer>
|
||||||
|
<RelativeBlobPath>$(_UploadPathRoot)/Runtime/$(_PackageVersion)/$(RepoProductVersionFileName)</RelativeBlobPath>
|
||||||
|
</ItemsToPushToBlobFeed>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
|
|
@ -106,5 +113,10 @@
|
||||||
Lines="$(_ProductVersion)"
|
Lines="$(_ProductVersion)"
|
||||||
Overwrite="true"
|
Overwrite="true"
|
||||||
Encoding="ASCII" />
|
Encoding="ASCII" />
|
||||||
|
<WriteLinesToFile
|
||||||
|
File="$(RepoProductVersionFileLocation)"
|
||||||
|
Lines="$(_ProductVersion)"
|
||||||
|
Overwrite="true"
|
||||||
|
Encoding="ASCII" />
|
||||||
</Target>
|
</Target>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue