Skip to content

Commit

Permalink
Get full path name in case of DOS 8.3 style assembly path
Browse files Browse the repository at this point in the history
  • Loading branch information
jbatonnet committed Jan 12, 2017
1 parent 75ba153 commit a0ed7b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/BitDiffer.Core/AssemblyComparer.cs
Expand Up @@ -169,7 +169,7 @@ private AssemblyGroup DoCompareFiles(AssemblyManager manager, string[] assemblyF
{
if (Path.IsPathRooted(assemblyFiles[i]))
{
assemblyFilesResolved[i] = assemblyFiles[i];
assemblyFilesResolved[i] = Path.GetFullPath(assemblyFiles[i]);
}
else
{
Expand Down

0 comments on commit a0ed7b7

Please sign in to comment.