Browse Source

Fix path normalization

pull/688/head
Wiesław Šoltés 10 years ago
parent
commit
f2d68cd9fa
  1. 2
      build.cake

2
build.cake

@ -144,7 +144,7 @@ var ignoredSubModulesPaths = subModules.Select(m =>
}).ToList();
var normalizePath = new Func<string, string>(
path => path.TrimEnd(System.IO.Path.DirectorySeparatorChar, System.IO.Path.AltDirectorySeparatorChar).ToUpperInvariant());
path => path.Replace(System.IO.Path.DirectorySeparatorChar, System.IO.Path.AltDirectorySeparatorChar).ToUpperInvariant());
// Key: Package Id
// Value is Tuple where Item1: Package Version, Item2: The packages.config file path.

Loading…
Cancel
Save