-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for dotnet publish #487
Conversation
clarifying "and all dependencies" - if I have a sqlproj with a dacpac file reference and a dacpac nupkg reference - then run dotnet publish - |
That is correct. |
does publish folder include database references? master dacpacs? |
Yes, all references, whether they come from a project, Nuget, or direct dacpac reference get copied to publish folder. |
…n/dotnet-publish
Is there going to be a new version of Microsoft.Build.Sql for this PR? |
Yes it'll be in > 0.2.4-preview |
Which will be published when?? |
We'll look to push one this week or the next |
Running
dotnet publish
will place the dacpac and all dependencies into thepublish
folder. Note this does not publish dacpac to databasae, please use sqlpackage for that.Closes #447