Generate text and JSON
Restore the previous text format so that JSON is in addition.
This commit is contained in:
parent
15ed53ac32
commit
615e241f6b
1 changed files with 23 additions and 9 deletions
|
@ -44,15 +44,6 @@
|
|||
<Output TaskParameter="DependencyCommit" PropertyName="DepDotNetSdkCommit" />
|
||||
</GetDependencyInfo>
|
||||
|
||||
<!-- Format for productCommits-%rid%.json:
|
||||
{
|
||||
"installer": { "commit": "%commit%", "version": "%version%" },
|
||||
"runtime": { "commit": "%commit%", "version": "%version%" },
|
||||
"aspnetcore": { "commit": "%commit%", "version": "%version%" },
|
||||
"windowsdesktop": { "commit": "%commit%", "version": "%version%" },
|
||||
"sdk": { "commit": "%commit%", "version": "%version%" }
|
||||
}
|
||||
-->
|
||||
<ItemGroup>
|
||||
<Line Include="installer" Version="$(PackageVersion)" Commit="$(BUILD_SOURCEVERSION)" />
|
||||
<Line Include="runtime" Version="$(DepRuntimeVersion)" Commit="$(DepRuntimeCommit)" />
|
||||
|
@ -60,6 +51,29 @@
|
|||
<Line Include="windowsdesktop" Version="$(DepWindowsDesktopVersion)" Commit="$(DepWindowsDesktopCommit)" />
|
||||
<Line Include="sdk" Version="$(DepDotNetSdkVersion)" Commit="$(DepDotNetSdkCommit)" />
|
||||
</ItemGroup>
|
||||
|
||||
<!-- Format for productCommits-%rid%.txt:
|
||||
installer_commit="%commit%" installer_version="%version%"
|
||||
runtime_commit="%commit%" runtime_version="%version%"
|
||||
aspnetcore_commit="%commit%" aspnetcore_version="%version%"
|
||||
windowsdesktop_commit="%commit%" windowsdesktop_version="%version%"
|
||||
sdk_commit="%commit%" sdk_version="%version%"
|
||||
-->
|
||||
<WriteLinesToFile
|
||||
File="$(ArtifactsShippingPackagesDir)productCommit-$(Rid).txt"
|
||||
Lines="@(Line->'%(Identity)_commit="%(Commit)" %(Identity)_version="%(Version)"', '%0A')"
|
||||
Overwrite="true"
|
||||
Encoding="ASCII"/>
|
||||
|
||||
<!-- Format for productCommits-%rid%.json:
|
||||
{
|
||||
"installer": { "commit": "%commit%", "version": "%version%" },
|
||||
"runtime": { "commit": "%commit%", "version": "%version%" },
|
||||
"aspnetcore": { "commit": "%commit%", "version": "%version%" },
|
||||
"windowsdesktop": { "commit": "%commit%", "version": "%version%" },
|
||||
"sdk": { "commit": "%commit%", "version": "%version%" }
|
||||
}
|
||||
-->
|
||||
<PropertyGroup>
|
||||
<JsonContents>{%0A@(Line->' "%(Identity)": { "commit": "%(Commit)", "version": "%(Version)" }', ',%0A')%0A}</JsonContents>
|
||||
</PropertyGroup>
|
||||
|
|
Loading…
Reference in a new issue