Chris Halcrow
Chris Halcrow

Reputation: 31960

SQL Server Report 2008 R2 Report Services - debug a custom assembly

How do I debug an assembly that's being used by a Report Services report running through SQL Server 2008 R2 Reporting Services?

Is there anything else I need to do to debug?

Upvotes: 1

Views: 2351

Answers (1)

Chris Halcrow
Chris Halcrow

Reputation: 31960

Got it. Here's what else I needed to do:

  • Open the report solution in VS2008
  • Open the custom assembly project in VS2012
  • Attach to process from VS2012, but attach to devenv.exe for the VS2008 instance
  • Click the report 'preview' tab in VS2008 - this runs the report, which is now hooked up to the VS2012 debugger :)

Here's some MSFT documentation on this (doesn't strictly relate to SQL Server 2008 R2):

http://msdn.microsoft.com/en-us/library/ms153693.aspx

Upvotes: 1

Related Questions