I have an ASP.NET Core web API; it's a simple rest interface.
In the project properties, I have this path:
but when I start in the debugger, it always goes to:
http://localhost:58187/api/values
when the debugger loads Chrome, here is the url:
data:text/html;charset=utf-8,<head><meta http-equiv="refresh" content="0; url=http://localhost:58187/api/values"/></head><body><style>body{margin:25px;font:16px calibri,'segoe ui'}</style><h3>Chrome script debugging in Visual Studio is enabled</h3><ul><li>Set breakpoints in JavaScript/TypeScript in Visual Studio</li><li>Automatically break on script errors</li><li>Opening developer tools in Chrome stops the script debugging session</li></ul><a href='https://aka.ms/chromedebugging' target='_blank'>Learn more about Chrome debugging in Visual Studio</a><h4><i>Your application is starting...</i></h4></body><!---->
I can see the api/values string in the initial Url.
How do I change the api/values string?
