Skip to content

How to remove cached report data in Visual Studio

Anthony edited this page Sep 8, 2017 · 5 revisions

Go to Tools > External Tools...

Add a new tool with the following settings:

  • Title: Clear Report Data Cache
  • Command: "%WinDir%\System32\cmd.exe"
  • Arguments: /C DEL /S /Q "$(SolutionDir)\*.rdl.data"
  • Check options: Use Output window & Close on exit

Now whenever you want to delete your report data cache, just go to Tools > Clear Report Data Cache.