-
Notifications
You must be signed in to change notification settings - Fork 70
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
Reorder options and subcommands to show alphabetically #1075
Comments
Can I handle this ? |
Awesome! Please do! What kind of issues do you have? |
I started by installing Dev Proxy on my local machine using the link: Next, I forked the project and cloned it into my local environment. However, I’m unable to debug it. I know where the commands and subcommands for Dev Proxy are registered, but I want to see them when running my application. This way, I can change the order in which commands and subcommands are created and observe the results. I have .NET versions 6, 8, and 9 installed. Long Story Short: |
You mentioned that you installed Dev Proxy first before you cloned the repo. I think what's happening, is that you're starting the installed version rather than the version from the cloned repo. I suggest that you uninstall Dev Proxy, then build it and start the version from the build output folder. |
@waldekmastykarz I thought the .exe I should execute is this one, correct? It opens a terminal and indicates the local address to access, but when attempting to access it, an error is displayed. |
All is working fine! Dev Proxy is not a website you can access in a browser. You use it similarly to Fiddler where you configure it as a proxy on your machine and which the intercepts web requests from the applications. |
Got it! I know I need to change those lines to sort alphabetically. Once I’ve done that, I just want to make sure my changes actually worked. After building, how can I check it? |
After you build your project, run |
When you run
devproxy -h
it shows the list of available options and subcommands. Both, are displayed in the order they're registered rather than alphabetically which complicates the lookup. Let's change the order to be alphabetical.The text was updated successfully, but these errors were encountered: