Reputation: 1
I am working with ssis
packages with TFS. I checked-in after finishing my work. My teammate had to continue his work, so he get the latest version but he didn't find all the files on the server version but when checking in our local folders we can find them. So we tried to import them like following :
I need to import Employee.dtsx
, it is imported as Employee 1.dtsx and when I try to rename to Employee 1.dtsx
, I get this following message :
'C:\XXX\Employee.dtsx' already exists in this project.
Upvotes: 0
Views: 256
Reputation: 30313
You can try opening the project file (.dtproj) and check whether the package is listed there, and manually add it in if the package does not exist in project file. You can refer to this discussion.
You can find the details steps to add Files to Source Control--Team Foundation Server in the blog. Hope you find it helpful.
Upvotes: 2