Karethaelle
The breakpoint will not currently be hit. No symbols have been loaded for this document
debugger works now after changing launchSettings.json from
{
"profiles": {
"DxBlazorClient": {
"commandName": "Project",
"launchBrowser": true,
"nativeDebugging": false
}
}
}
to
{
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:65283",
"sslPort": 44398
}
},
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}
10 replies