How to validate SSIS packages when building Solution from commandline

Viewed 548

I'm investigating how to do Continuous Integration with SSIS projects.

So far I've found out that it can be done by building the solution with devenv.exe or MSBuild.exe.

If its configured, Visual Studio can validate SSIS packages before they are run, to verify if the metadata in SSIS package is in sync with the source.

As far as I know, VS will only show validation errors/warnings when the SSIS package is open, but not when building the project.

Is it possible to have devenv.exe or MSBuild.exe also validate the packages during build?

I am using SSDT 2015 preview.

1 Answers
Related