-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
"Done" message was shown when running dotnet ef migrations script #5012
Labels
closed-fixed
The issue has been fixed and is/will be included in the release indicated by the issue milestone.
type-bug
Milestone
Comments
This was referenced Apr 9, 2016
I am using
|
not just for done for any other message also same error
|
Reopening for now based on @smitpatel's findings. |
Possible duplicate of #4771 |
I was using powershell but cli commands. |
6 tasks
I've proposed 2 changes in #5542 that will help with this and related scripting errors:
cc @mlorbetske |
ajcvickers
added
the
closed-fixed
The issue has been fixed and is/will be included in the release indicated by the issue milestone.
label
Oct 15, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
closed-fixed
The issue has been fixed and is/will be included in the release indicated by the issue milestone.
type-bug
I'm working on ef migrations in web tool side. I use dotnet ef migrations script to generate T-SQL file of migrations. When this command is done, it will show a "Done" on screen, whose the code is from src/dotnet-ef/MigrationsScriptCommand.cs (line 74 Reporter.Error.WriteLine("Done");) . This "Done" should not be handled by "Reporter.Error".
When I run the whole thing by msbuild tasks, the "Done" will be captured by msbuild.exe and it was recognized an error message. This makes people think this command has a problem and actually it is not.
Is there an option not showing "Done" on screen or some other approach to skip "Done" ?
The text was updated successfully, but these errors were encountered: