Skip to content

Commit 0ddd606

Browse files
Fix truncated symbols paths in log output from CreateSdkSymbolsLayout (#48147)
1 parent 86653da commit 0ddd606

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SourceBuild/content/eng/tools/tasks/Microsoft.DotNet.UnifiedBuild.Tasks/CreateSdkSymbolsLayout.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ private IList<string> GenerateSymbolsLayout(Hashtable allPdbGuids)
8585
string debugId = GetDebugId(guid, file);
8686
if (!allPdbGuids.ContainsKey(debugId))
8787
{
88-
filesWithoutPDBs.Add(file.Substring(SdkLayoutPath.Length + 1));
88+
filesWithoutPDBs.Add(file.Substring(SdkLayoutPath.Length));
8989
}
9090
else
9191
{

0 commit comments

Comments
 (0)