Merge pull request #630 from gkhanna79/FixSDKBug
Add missing ILCSdkPath override
This commit is contained in:
commit
de09e3341f
1 changed files with 6 additions and 0 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Reference in a new issue