Fortify360 具有自动化构建流程?
有人有使用 CruiseControl.net 或类似工具的示例配置吗?
Anyone have any sample configurations using CruiseControl.net or similar tool?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
执行此操作的最佳方法是:
指定巡航控制配置以在 Visual Studio 中运行以下命令命令提示符:
sourceanalyzer -b FOO devenv Solution.sln /REBUILD "Debug"
sourceanalyzer -b FOO devenv Solution.sln / REBUILD 最后一个参数是构建配置的名称;此配置需要为您需要 SCA 分析的任何可构建组件发出 PDB。
The best way to do this is:
Specify the cruise control configuation to run the following in a Visual Studio command prompt:
sourceanalyzer -b FOO devenv solution.sln /REBUILD "Debug"
The final parameter is the name of the build configuration; this configuration needs to emit PDBs for any buildable component you need SCA to analyze.
如果您还没有找到它,您可以从以下位置获取 authtoken:
fortifyclient token -gettoken AnalysisUploadToken -url [url] -user [YourUsername]
对于上传,我发现使用“-project [PROJECT] -version [VERSION]”的字符串参数而不是 -projectID [NUMBER] 更容易。同样的事情,不同的调用。
If you haven't already found it, you can get the authtoken from:
fortifyclient token -gettoken AnalysisUploadToken -url [url] -user [YourUsername]
For uploads, I find it easier to use the string arguments of both "-project [PROJECT] -version [VERSION]" instead of the -projectID [NUMBER]. Same thing, different invocation.