Skip to content

Instantly share code, notes, and snippets.

@ArtemAvramenko
Created June 19, 2020 15:15
Show Gist options
  • Save ArtemAvramenko/e0ba5b516a79bbc2e3c547fe8f2302f8 to your computer and use it in GitHub Desktop.
Save ArtemAvramenko/e0ba5b516a79bbc2e3c547fe8f2302f8 to your computer and use it in GitHub Desktop.
Creates binding redirect xml from failed msbuild log
msBuildLog.replace(/^.*"([\w\.]+), Culture=(\w+), PublicKeyToken=(\w+)".*to Version "([\d\.]+)".*/gm,
`<dependentAssembly>
<assemblyIdentity name="$1" publicKeyToken="$3" culture="$2" />
<bindingRedirect oldVersion="0.0.0.0-$4" newVersion="$4" />
</dependentAssembly>`)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment