Visual c++ 如何将可视检漏仪与TeamCity集成?

Visual c++ 如何将可视检漏仪与TeamCity集成?,visual-c++,teamcity,visual-leak-detector,Visual C++,Teamcity,Visual Leak Detector,我可以将可视检漏仪与TeamCity集成吗?如果是,如何分析其泄漏报告 FOR /f "tokens=*" %%F IN ('dir /B *_memLeak.txt') DO ( findstr "/C:No memory leaks detected." "%%F" if ERRORLEVEL 1 ( echo ##teamcity[buildProblem description='Leaks in %%~nxF'] ) ) 解析其泄漏报告 FOR /f "tok

我可以将可视检漏仪与TeamCity集成吗?如果是,如何分析其泄漏报告

FOR /f "tokens=*" %%F IN ('dir /B *_memLeak.txt') DO (
  findstr "/C:No memory leaks detected." "%%F"
  if ERRORLEVEL 1 (
      echo ##teamcity[buildProblem description='Leaks in %%~nxF']
  )
)

解析其泄漏报告

FOR /f "tokens=*" %%F IN ('dir /B *_memLeak.txt') DO (
  findstr "/C:No memory leaks detected." "%%F"
  if ERRORLEVEL 1 (
      echo ##teamcity[buildProblem description='Leaks in %%~nxF']
  )
)