My C# WIndows Forms Application has some menu links which point out to web URIs. But now my SonarQube Scan is giving me this error/warning(S1075) to refactor my code. So what would be the safe/best way to use web URI inside C# backend code.
private void HelpDocMenu_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://docs.google.com/document/d/142SFA/edit?usp=sharing");
}
SonarQube Error
S1075 Refactor your code not to use hardcoded absolute paths or URIs