我应该为 SSIS 项目签入哪些文件?
在我的 SSIS 项目文件夹中,除了我创建的三个包 (.dtsx) 文件之外,我还有额外的文件。有一个 ProjectName.database 文件、一个 ProjectName.dtproj 文件和一个 ProjectName.dtproj.user 文件。
当我构建项目时,dtsx 文件被复制到项目文件夹内名为“bin”的文件夹中。
当我创建部署清单时,这三个包文件将与新的 ProjectName.SSISDeploymentManifest 文件一起复制到名为“bin/Deployment”的文件夹中。
我应该将哪些文件签入源代码管理?
我认为只有三个包文件和部署清单对我有用。
In my SSIS project folder I have extra files in addition to the three package (.dtsx) files that I created. There is a ProjectName.database file, a ProjectName.dtproj file, and a ProjectName.dtproj.user file.
When I build the project, the dtsx files are copied to a folder called "bin" inside the project folder.
When I create a deployment manifest, the three package files are copied to a folder called "bin/Deployment" along with a new ProjectName.SSISDeploymentManifest file.
Which of these files should I check in to source control?
I think only the three package files and the deployment manifest are useful to me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要保留:
MSDN 声明如下:
不需要 *.dtproj.user 和 .sln.suo 文件,因为它们(来自同一链接): 包含有关您使用项目的首选项的信息。
You will want to keep:
MSDN states following:
*.dtproj.user and .sln.suo files are not needed because they (from the same link): contain information about your preferences for working with the project.