I have gone through the VeraCode API Wrapper documentation details. I followed all the steps related to “Referencing the Veracode API Wrapper from Visual Studio”.
Based on the steps, I was able to create an instance of UploadAPIWrapper class as mentioned below:
var uploadWrapper = new UploadAPIWrapper();
I was able to see all the simple actions the wrapper can perform as mentioned below:
I was also able to see the composite action uploadandscan in the command prompt also as mentioned in the screenshot below:
But was not able to see the composite actions the wrapper can perform like uploadandscan.
Can anyone please advise me here in case I am missing out any prequisites.
Thanks & Regards, Santosh Kumar Patro
What you would normally pass when you call the UploadAndScan action from the command line would look more or less like this:
VeracodeC#API.exe -action uploadandscan -appname appName -version version -createprofile true -filepath filePath -vuser username -vpassword password
So for your code to work you would need to modify it as follows:
}