- Notifications
You must be signed in to change notification settings - Fork442
Change URI process start.#299
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:master
Are you sure you want to change the base?
Uh oh!
There was an error while loading.Please reload this page.
Conversation
When attempting to run a windows service, "File not found error" was raised. Proposed change fixes this issue.
CLAassistant commentedMay 8, 2022 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
greg-db commentedMay 9, 2022
Can you share some more information about the error you're referring to? For instance, the specific steps to reproduce the error, as well as the full error output you're getting would be helpful reference for this. Thanks in advance! |
babichhunter commentedMay 11, 2022
Running windows service using .Net 6.0 in Visual Studio. |
greg-db commentedMay 11, 2022
Thanks! I'll ask the team to review this. |
| System.Diagnostics.Process.Start(authorizeUri.ToString()); | ||
| System.Diagnostics.Process.Start(newProcessStartInfo(authorizeUri.ToString()){UseShellExecute=true}); | ||
| //System.Diagnostics.Process.Start(authorizeUri.ToString()); |
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.
Not sure this will work for all use cases. Please instead leave the original code, and add a comment explaining this alternative method and when you'd need to use it.
Uh oh!
There was an error while loading.Please reload this page.
When attempting to run a windows service, "File not found error" was raised. Proposed change fixes this issue.
Checklist
General Contributing
Is This a Code Change?
Validation