Merge pull request #630 from gkhanna79/FixSDKBug

Add missing ILCSdkPath override
This commit is contained in:
Senthil 2015-12-20 10:05:51 -08:00
commit de09e3341f

View file

@ -56,6 +56,12 @@ namespace Microsoft.DotNet.Tools.Compiler.Native
if (!string.IsNullOrEmpty(IlcPath))
{
config.IlcPath = IlcPath;
// If ILCSdkPath is not specified, then default it to be the same as the overridden ILCPath
if (string.IsNullOrEmpty(IlcSdkPath))
{
IlcSdkPath = IlcPath;
}
}
if (!string.IsNullOrEmpty(IlcSdkPath))