Merge pull request #352 from dotnet/schellap-patch-1

Let IlcArgs be an opaque string to dotnet native
This commit is contained in:
Senthil 2015-11-30 17:29:15 -08:00
commit 04f5930532

View file

@ -91,7 +91,7 @@ namespace Microsoft.DotNet.Tools.Compiler.Native
public string IlcArgs
{
get { return _ilcArgs; }
set { _ilcArgs = Path.GetFullPath(value); }
set { _ilcArgs = value; }
}
public IEnumerable<string> LinkLibPaths => _linkLibPaths;
@ -192,4 +192,4 @@ namespace Microsoft.DotNet.Tools.Compiler.Native
return Path.GetFullPath(dir);
}
}
}
}