Skip to content
This repository was archived by the owner on Mar 30, 2019. It is now read-only.

Commit a84d8cd

Browse files
committed
[SharpGen] Fix path for include, to remove warnings as file was not found
1 parent 2a2d96f commit a84d8cd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Source/Tools/SharpGen/Model/CsBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ private string DocIncludeDirective
394394
{
395395
var subDir = GetParent<CsNamespace>().OutputDirectory;
396396
string relativePath = string.IsNullOrEmpty(subDir) ? "." : "..";
397-
return "<include file='" + relativePath + "\\..\\" + CsAssembly.CodeCommentsPath + "' path=\"" + CodeCommentsXPath + "/*\"/>";
397+
return "<include file='" + relativePath + "\\..\\..\\" + CsAssembly.CodeCommentsPath + "' path=\"" + CodeCommentsXPath + "/*\"/>";
398398
}
399399
}
400400

0 commit comments

Comments
 (0)