Merge pull request #352 from dotnet/schellap-patch-1
Let IlcArgs be an opaque string to dotnet native
This commit is contained in:
commit
04f5930532
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue