I have this problem using version control with SSIS. When I am writing a Script Component it gets checked into the version control as binaries and not the C# file (it's understandable though). So next time I make a change in C# file of the Script Component, I am not able to see the difference in code.
Is there a way to get around this problem? What do you guys do about it?
Thanks, Vaibhav
All of the SSIS packages I currently work with (SSIS 2008) store Script Component code directly within the .dtsx file (these are just XML files). That said, you could use a text diff tool (Visual Studio Compare, WinMerge, BIDS Helper Smart Diff) to compare the .dtsx files. While that may not be the cleanest way to do it, it does allow you to see the difference between versions.
Below is a snippet that I pulled directly from a .dtsx file with a Script Component (C# is stored as CDATA):