You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since the recent release of version 2.4.1 of the Microsoft.Azure.StreamAnalytics.CICD package, Start-AutRun will throw an error indicating it can't find version 2.4.0 of sa.exe.
Release 1.0.3
The text was updated successfully, but these errors were encountered:
The issue comes from the fact that New-AutProject will install the latest version of the package, while Start-AutRun will specifially target 2.4.0 as of release 1.0.3 (hard-coded as default value for parameter $asaNugetVersion).
A first quick fix is to call passing the version available of the nuget package: Start-AutRun -asaNugetVersion "2.4.1" -...
Another quick fix is to install version 2.4.0 of the nuget package instead. Since New-AutProject can't download specific versions of packages at the moment, it's necessary to use the nuget command itself: nuget.exe" install $nugetPackage -Version $nugetPackageVersion -OutputDirectory $installPath.
Longer term, I'm working of having Start-AutRun automatically select the latest version of the package installed.
Since the recent release of version 2.4.1 of the Microsoft.Azure.StreamAnalytics.CICD package,
Start-AutRun
will throw an error indicating it can't find version 2.4.0 ofsa.exe
.Release 1.0.3
The text was updated successfully, but these errors were encountered: