Default URL for Arc applications are http://localhost:5000, but this can be overridden, so in addition to supporting the url option, if that is not specified - look for the launchSettings.json file and look for the applicationUrl property. The file should exist in a Properties or properties folder.
An example of how the file looks like:
{
"profiles": {
"Core": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": false,
"applicationUrl": "http://localhost:5000",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}
Default URL for Arc applications are http://localhost:5000, but this can be overridden, so in addition to supporting the
urloption, if that is not specified - look for thelaunchSettings.jsonfile and look for theapplicationUrlproperty. The file should exist in aPropertiesorpropertiesfolder.An example of how the file looks like:
{ "profiles": { "Core": { "commandName": "Project", "dotnetRunMessages": true, "launchBrowser": false, "applicationUrl": "http://localhost:5000", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } } } }