Hello,
I have two questions and I don't know which forum I should post them on.
First of all, on the website myname.visualstudio.com/MyAppName/_build/results?buildId=123 I receive an error in EF Core migrations step ("Cmd.exe exited with code '1'). The command I execute is:
dotnet ef migrations script --project $(Build.SourcesDirectory)\MyAppName\MyAppName.csproj --output $(build.artifactstagingdirectory)\migrations\scripts.sql --idempotent --startup-project $(Build.SourcesDirectory)\MyAppName\MyAppName.csproj
And the command output starts with:
##[command]"C:\windows\system32\cmd.exe" /D /E:ON /V:OFF /S /C "CALL "D:\a\_temp\[here there is some id].cmd""
Could not execute because the specified command or file was not found.
It was working previously. I haven't changed the command but it stopeed working.
The second question is related to "Anonymous access is enabled on the App Service app. Users will not be prompted for login" message that I have found on portal.azure.com. What exactly does it mean? Is this some kind of security gap in my
configuration? How to change it?
Thank you!