-
Notifications
You must be signed in to change notification settings - Fork 6.1k
docs: Add documentation for dotnet project convert command #50125
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
docs: Add documentation for dotnet project convert command #50125
Conversation
Adds documentation for the dotnet project convert command, which converts file-based programs to project-based programs. The documentation includes: - Command synopsis and description - Conversion process details - All command options (--dry-run, --force, --interactive, --output) - Examples showing conversion from file-based to project-based structure - Translation of #:sdk, #:package, and #:property directives
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR adds comprehensive documentation for the dotnet project convert command, a new .NET 10 SDK CLI tool that converts file-based C# programs into traditional project-based programs with .csproj files.
Key changes:
- New documentation file explaining the command's purpose, syntax, and behavior
- Detailed conversion process documentation showing how file-based directives are translated to MSBuild properties
- Complete command reference with all options (--dry-run, --force, --interactive, --output) and practical examples
meaghanlewis
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@devlead thanks for adding this doc!
Can you also add an entry for it in: the TOC, and this landing page?
Adds the dotnet project convert command to the CLI index and table of contents.
done. |
Looked at https://learn.microsoft.com/en-us/dotnet/core/tools/ and it would seem
dotnet project convertwas missing.This PR proposes to add documentation for the dotnet project convert command, which converts file-based programs to project-based programs.
The documentation includes:
Internal previews