Add warning if shared framework is not going to be crossgen'd because mscorlib.ni.dll does not exist

This commit is contained in:
Eric Mellino 2016-03-10 15:20:29 -08:00
parent d77fad4e68
commit ce118f9d07

View file

@ -60,6 +60,10 @@ namespace Microsoft.DotNet.Cli.Build
CrossGenAllManagedAssemblies(SharedFrameworkNameAndVersionRoot);
}
else
{
c.Warn("Shared framework will not be crossgen'd because mscorlib.ni.dll does not exist.");
}
return c.Success();
}