Add warning if shared framework is not going to be crossgen'd because mscorlib.ni.dll does not exist
This commit is contained in:
parent
d77fad4e68
commit
ce118f9d07
1 changed files with 4 additions and 0 deletions
|
@ -60,6 +60,10 @@ namespace Microsoft.DotNet.Cli.Build
|
||||||
|
|
||||||
CrossGenAllManagedAssemblies(SharedFrameworkNameAndVersionRoot);
|
CrossGenAllManagedAssemblies(SharedFrameworkNameAndVersionRoot);
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
c.Warn("Shared framework will not be crossgen'd because mscorlib.ni.dll does not exist.");
|
||||||
|
}
|
||||||
|
|
||||||
return c.Success();
|
return c.Success();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue