Fixing the path for the includes in windows for cpp native

This commit is contained in:
Livar Cunha 2015-11-18 17:21:46 -08:00
parent 8b66db56c6
commit fe110f4497

View file

@ -69,7 +69,7 @@ namespace Microsoft.DotNet.Tools.Compiler.Native
// Add Includes // Add Includes
argsList.Add("/I"); argsList.Add("/I");
argsList.Add(Path.Combine(config.AppDepSDKPath, "CPPSdk\\Windows_NT")); argsList.Add(Path.Combine(config.AppDepSDKPath, "CPPSdk\\win7"));
argsList.Add("/I"); argsList.Add("/I");
argsList.Add(Path.Combine(config.AppDepSDKPath, "CPPSdk")); argsList.Add(Path.Combine(config.AppDepSDKPath, "CPPSdk"));