I am trying to embed my dacpac file in the package and run the dbDacFx provider at deploy time.
using following visual studio 2010 with Azure publihsing tools and SSDT SQl Server 2008 R2 with wpp.targets file in my project.
$(AfterAddIisAndContentDeclareParametersItems);
AddAdditionalAclsDeclareParameterItems;
DeployUIConfigDatabase;
Add dbDacFx $(_MSDeployDirPath_FullPath)\Database\%(CopyAdditionalFilesToDeploy.Identity) to Folder
$(_MSDeployDirPath_FullPath)\Database\%(CopyAdditionalFilesToDeploy.Identity)
{UIConfigContext-Web.config Connection String
True
True
IncludeData;IncludeTransactionalScripts
i can see that the .zip package has the dacpac file, but when i deploy it, the provider never gets invoked... Many thanks!
↧