Is there a way to separate options to sourceanalyzer from options to the build tool?
I am trying to run a Fortify scan on a Visual Studio project by using msbuild. However, the msbuild that is provided by the build infrastructure team only accepts options that start with '-' rather than '/' for some reason. This makes sourcenalayzer error about unexpected arguments. This is why I need to separate the options to sourceanalyzer from the options to msbuild.
It is common for many CLI tools to support a '--' argument that allows separating arguments in this way (for example, the Unix rm tool supports this). From looking at the output of "sourceanalyzer --help", it seems perhaps sourcenalayzer doesn't support such an argument, but I thought I would ask here in case the community is aware of something.