1

Is it possible to create a cref from c# codes to a file in a database project so you can ctrl + click to navigate to it like you can with .cs files?

e.g. Say I have some data access code that uses a pacakge/procedure in some other database project:

    /// <summary>
    /// <see cref="Link.To.The.Package"/>
    /// </summary>
    /// <param name="vehicle"></param>
    /// <returns></returns>
    public override CommandWrapper InitializeCommand(Vehicle vehicle)
    {
       .....some code that executes some proc:  "packageName.proc"
jparram
  • 804
  • 8
  • 24

1 Answers1

1

You can use href instead of cref, and then the file:// protocol (exactly like you would in plain html):

/// <see href="file://somefile"/>
Thomas Weller
  • 11,631
  • 3
  • 26
  • 34