Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

c# xml code comment for file reference

Is there a tag for a file reference in a xml code comment? The file is a sql script file. Just wondering if there is a better way than something like this

///<summary>
///please have a look at c:\code\project1\sql\file1.sql
///</summary> 
like image 805
JML Avatar asked Mar 23 '11 10:03

JML


1 Answers

You could use a file URI, this makes it clickable in visual studio:

file:///c:/code/project1/sql/file1.sql
like image 96
dvdvorle Avatar answered Nov 09 '22 09:11

dvdvorle