Browse Source

Changed variable name for fix mono builds

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

6
build.cake

@ -173,10 +173,8 @@ Information("Checking installed NuGet package dependencies versions:");
packageVersions.ToList().ForEach(package =>
{
var version = package.Value.First().Item1;
var config = package.Value.First().Item1;
bool isValidVersion = package.Value.All(x => x.Item1 == version);
var packageVersion = package.Value.First().Item1;
bool isValidVersion = package.Value.All(x => x.Item1 == packageVersion);
if (!isValidVersion)
{
Information("Error: package {0} has multiple versions installed:", package.Key);

Loading…
Cancel
Save