Skip to content

Commit

Permalink
Update azure-pipelines.yml for Azure Pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
yar229 committed Mar 30, 2020
1 parent d04211d commit fbf60a7
Showing 1 changed file with 21 additions and 5 deletions.
26 changes: 21 additions & 5 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,15 +77,31 @@ steps:
script: |
New-Item $(Build.ArtifactStagingDirectory)\release.info.json
$content = @"
{
"version" : "$(Build.SourceBranchName)",
"info" :
{
"version" : "$(Build.SourceBranchName)",
"filenames" :
"netcore" : {
"distrib" : "$(artifactNetCoreName)",
"runner" : "dotnet",
"file" : "wdmrc.dll",
"defaultkeys" : ""
},
"netframework" :
{
"netcore" : "$(artifactNetCoreName)",
"netframework" : "$(artifactNetFrameworkName)",
"mono" : "$(artifactMonoName)"
"distrib" : "$(artifactNetFrameworkName)",
"runner" : "",
"file" : "wdmrc.exe",
"defaultkeys" : ""
},
"mono" : {
"distrib" : "$(artifactMonoName)",
"runner" : "mono",
"file" : "wdmrc.exe",
"defaultkeys" : ""
}
}
}
"@
Set-Content -Path $(Build.ArtifactStagingDirectory)\release.info.json -Value $content
Expand Down

0 comments on commit fbf60a7

Please sign in to comment.