I am writing a basic .NET Core application and Entity Framework using code-first transformations.
I want to be able to deploy it in an Azure web application using the build and definition commands Team Team Team Visual Studio
I want to be able to start database migration as part of a release definition using a script
dotnet ef database update
I did this using the command line action in the release definition
However, I always get a message
No executable found matching command "dotnet-ef"
I tried to make sure that this command is running in the same directory as the .cproj file
I also tried running
dotnet restore
as the previous command line task and this gives an error
The folder 'C:\a\r1\a\Drop\s\src\xxxxx' does not contain a project to restore even though it does.
Has anyone tried the first code migration as part of the Team Services release determination phase?
-, Release, .