Skip to content

Remove leading > from command examples in README #319

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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

Copilot
Copy link

@Copilot Copilot AI commented Jul 11, 2025

The README.md file contained command examples with leading > characters that prevented users from copying and pasting commands directly into their shell. The > character is interpreted by shells as a redirection operator, causing the commands to fail when copy-pasted.

Before:

> dotnet tool install --global Project2015To2017.Migrate2019.Tool

After:

dotnet tool install --global Project2015To2017.Migrate2019.Tool

Fixed examples:

  • dotnet tool install --global Project2015To2017.Migrate2019.Tool
  • dotnet migrate-2019 wizard "D:\Path\To\My\TestProject.csproj"
  • dotnet migrate-2019 wizard "D:\Path\To\My\TestProject.sln"
  • dotnet migrate-2019 wizard .\MyProjectDirectory
  • dotnet migrate-2019 wizard **\*
  • dotnet migrate-2019 migrate -t net40 -t net45
  • dotnet add package Project2015To2017.Migrate2019.Library

Now users can copy these commands directly from the documentation and paste them into their terminal without modification.

Fixes #308.


💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click here to start the survey.

Co-authored-by: mungojam <3154635+mungojam@users.noreply.github.com>
@Copilot Copilot AI changed the title [WIP] Examples should exclude leading > Remove leading > from command examples in README Jul 11, 2025
@Copilot Copilot AI requested a review from mungojam July 11, 2025 20:44
Copilot finished work on behalf of mungojam July 11, 2025 20:44
@mungojam mungojam marked this pull request as ready for review July 12, 2025 08:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Examples should exclude leading >
2 participants