Version control SSIS中脚本组件C#文件的版本控制

Version control SSIS中脚本组件C#文件的版本控制,version-control,ssis,script-component,Version Control,Ssis,Script Component,我在SSIS中使用版本控制时遇到此问题。当我编写脚本组件时,它会作为二进制文件而不是C#文件签入版本控制(尽管这是可以理解的)。因此,下次我在脚本组件的C#文件中进行更改时,我无法看到代码中的差异 有办法解决这个问题吗? 你们怎么办 谢谢, Vaibhav我目前使用的所有SSIS包(SSIS 2008)都将脚本组件代码直接存储在.dtsx文件中(这些只是XML文件)。也就是说,您可以使用文本差异工具(VisualStudioCompare、WinMerge、BIDS助手Smart diff)来比

我在SSIS中使用版本控制时遇到此问题。当我编写脚本组件时,它会作为二进制文件而不是C#文件签入版本控制(尽管这是可以理解的)。因此,下次我在脚本组件的C#文件中进行更改时,我无法看到代码中的差异

有办法解决这个问题吗? 你们怎么办

谢谢,
Vaibhav

我目前使用的所有SSIS包(SSIS 2008)都将脚本组件代码直接存储在.dtsx文件中(这些只是XML文件)。也就是说,您可以使用文本差异工具(VisualStudioCompare、WinMerge、BIDS助手Smart diff)来比较.dtsx文件。虽然这可能不是最干净的方法,但它确实允许您看到不同版本之间的差异

下面是我直接从带有脚本组件的.dtsx文件中提取的一个片段(C#存储为CDATA):



是的,我认为这是目前唯一的选择。我将等待更多的答案,然后再打分。谢谢
<component id="4829" name="ExecuteQuery" componentClassID="{2E42D45B-F83C-400F-8D77-61DDE6A7DF29}" description="Executes a custom script." localeId="-1" usesDispositions="false" validateExternalMetadata="True" version="4" pipelineVersion="0" contactInfo="Executes a custom script.;Microsoft Corporation; Microsoft SqlServer v10; © 2007 Microsoft Corporation; All Rights Reserved; http://www.microsoft.com/sql/support;4">
<properties>
<property id="4833" name="SourceCode" dataType="System.String" state="cdata" isArray="true" description="Stores the source code of the component" typeConverter="" UITypeEditor="" containsID="false" expressionType="None"><arrayElements arrayElementCount="18"><arrayElement dataType="System.String"><![CDATA[\main.cs]]></arrayElement><arrayElement dataType="System.String"><![CDATA[/* Microsoft SQL Server Integration Services Script Component
*  Write scripts using Microsoft Visual C# 2008.
*  ScriptMain is the entry point class of the script.*/

using System;
using System.Data;
using Microsoft.SqlServer.Dts.Pipeline.Wrapper;
using Microsoft.SqlServer.Dts.Runtime.Wrapper;
using Teradata.Client.Provider;
[Microsoft.SqlServer.Dts.Pipeline.SSISScriptComponentEntryPointAttribute]
public class ScriptMain : UserComponent
{
    private TdConnection tdCn;
    private TdCommand tdCmd;
    private TdDataReader tdRdr;