-
Notifications
You must be signed in to change notification settings - Fork 193
Improve docs/RunApplication.md instructions #65
base: main
Are you sure you want to change the base?
Improve docs/RunApplication.md instructions #65
Conversation
- Add explicit repository name to header (AzDevOpsDemoGenerator) - Fix clone command with actual GitHub URL - Specify exact solution file path (src/ADOGenerator.sln) - Surgical changes with no formatting modifications
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
Updates the RunApplication.md docs to use the real repository name, clone URL, and solution path for clearer setup instructions.
- Added explicit repository name in the header
- Replaced placeholder clone command with actual GitHub URL and directory name
- Specified exact solution file path under
src/
Comments suppressed due to low confidence (3)
docs/RunApplication.md:1
- [nitpick] The project name
AzDevOpsDemoGeneratoris presented as a single token; consider adding spaces for readability (e.g.,Az DevOps Demo Generator) or matching the exact branding used elsewhere in the repo.
# Running the AzDevOpsDemoGenerator Application
docs/RunApplication.md:3
- The header refers to
AzDevOpsDemoGeneratorbut this line usesADOGenerator; consider clarifying that the repository is namedAzDevOpsDemoGeneratorwhile the solution/project isADOGeneratorto avoid confusion.
To run the ADOGenerator project as a console application or executable, follow these steps:
docs/RunApplication.md:16
- [nitpick] Commands inside the fenced code block are indented by spaces; removing the leading spaces will align them to the left margin and improve readability in the rendered doc.
git clone https://github.com/microsoft/AzDevOpsDemoGenerator.git
|
It worked fine with me! |
|
Unable to find package log4net. No packages exist with this id in source(s): Microsoft Visual Studio Offline Packages
THESE ARE THE ERRORS |
|
There's no ADO exe file as well in the code |
|
The issue was with NuGet Package Manager in Visual Studio. It was trying to take the offline package sources. I change the package source https://api.nuget.org/v3/index.jason. Then it did all the steps again. It resolved the issue. Thanks |
Summary
Improves the documentation in
docs/RunApplication.mdwith specific repository details and clearer instructions.Changes Made
src/ADOGenerator.sln) for clarityWhy These Changes
Testing
Type of Change
Related Issues
Fixes part of #66 - specifically addresses Problem 3 (docs/RunApplication.md improvements)