Comments
2 comments
-
Issue can be resolved. Seems the license was already in use (didn't get any feedback in build).
-
I have the exact problmem (Azure Pipeline - Evaluation version being used when using paid license key) - waiting for support to email me back. Can someone explain the accepted answer? Are you saying 2 ore more people are using the license at the same time? I have activated the license on my PC - so, do I need to de-activate it and the one on Azure Pipeline will work?
Add comment
Please sign in to leave a comment.
I am configuring my yaml build pipeline. The goal is to obfuscate an exe during the build. I found this guide:https://documentation.red-gate.com/sa7/building-your-assembly/using-smartassembly-with-azure-pipelines
Smartassembly seems to be installed correctly, as I verified my published artifacts. However the build logs indicate that the executables are obfuscated by a "Evaluation" version of Smartassembly.
It seems like the RG_LICENSE property is being ignored?
This is a snipped of the powershell command that I execute:
$p = Start-Process -FilePath msiexec -Args "/qn /i `"$msiPath`" INSTALLDIR=`"$saInstallLocation`" RG_LICENSE=`"$(SA_KEY)`" RG_WARNING=`"Ignore`" REBOOT=`"ReallySuppress`" RG_I=`"Red Gate Software Ltd.`"" -Wait -Verbose -PassThru
I already tried to run the command without the SA_KEY variable (setting the license hardcoded).
Can anyone help me with this issue?