Fix directory separator in PopulateLegacyPortableDependencies
This commit is contained in:
parent
0e8d52ee7f
commit
ea3cef65a5
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ namespace Microsoft.DotNet.ProjectModel.Resolution
|
|||
foreach (var assembly in targetLibrary.CompileTimeAssemblies)
|
||||
{
|
||||
// (ref/lib)/{tfm}/{assembly}
|
||||
var pathParts = assembly.Path.Split('/');
|
||||
var pathParts = assembly.Path.Split(Path.DirectorySeparatorChar);
|
||||
|
||||
if (pathParts.Length != 3)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue