Search code examples
sql-serverssisetlssis-2017

SSIS Build the project and try again


I keeping getting the following error, after adding an annotation in one of my workflow, per below

The package 'x.dtsx' has been modified since the last build. Build the project and try again. (Microsoft.DataTransformationServices.VsIntegration)

I tried to debug/recompile, close and open the project and I still keep getting the same issue.

Has any of you encountered this error message? Can you please share how you have resolve it?

Thanks.


Solution

  • Change Deployment Model

    Since you are using SSIS 2017 try changing the deployment model to Package deployment model instead of Project deployment model.

    The project deployment model was introduced in SQL Server 2012 Integration Services (SSIS). With this deployment model, you were not able to deploy one or more packages without deploying the whole project. SQL Server 2016 Integration Services (SSIS) introduced the package deployment model, which lets you deploy one or more packages without deploying the whole project.

    Microsoft has provided a very detailed article describing the differences between both deployment model. You can check it out:

    Similar issue