Hi Everyone,
Can you please suggest in the below situation with SSIS .Proj file ?
I have added a new SSIS project to my solution. dtproj file is generating the different versions of analysis services data bases files every time . Below code is changing to different versions as SSIS_ProjName 2.database and then SSIS_ProjName 3.database etc. If I try to update it from source XML code this is generating next number for the name.
<Database>
<Name>SSIS_ProjName.database</Name>
<FullPath>SSIS_ProjName.database</FullPath>
</Database>
This is generating as below and in the source folder and generating the different versions of Analysis Services Data Base files like SSIS_ProjName 1, SSIS_ProjName 2, … SSIS_ProjName 7 etc. in the source code.
<Database>
<Name>SSIS_ProjName 7.database</Name>
<FullPath>SSIS_ProjName 7.database</FullPath>
</Database>
Thanks In advance.