Merge pull request #5398 from livarcocc/add_help_message_to_migrate
Adding an extra message to the migrate result
This commit is contained in:
commit
93a94e652b
2 changed files with 4 additions and 0 deletions
|
@ -30,5 +30,7 @@ Defaults to current directory if nothing is specified.";
|
|||
public const string CmdSkipBackupDescription = "Skip moving project.json, global.json, and *.xproj to a `backup` directory after successful migration.";
|
||||
|
||||
public const string MigrationFailedError = "Migration failed.";
|
||||
|
||||
public const string MigrationAdditionalHelp = "Your project has been migrated to the .csproj format and can be used with this build of the .NET Core Tools. Please visit https://aka.ms/coremigration to report issues or ask for help.";
|
||||
}
|
||||
}
|
|
@ -235,6 +235,8 @@ namespace Microsoft.DotNet.Tools.Migrate
|
|||
}
|
||||
|
||||
Reporter.Output.WriteLine(GetReportSummary(migrationReport));
|
||||
|
||||
Reporter.Output.WriteLine(LocalizableStrings.MigrationAdditionalHelp);
|
||||
}
|
||||
|
||||
private string GetReportContent(MigrationReport migrationReport, bool colored = false)
|
||||
|
|
Loading…
Reference in a new issue