Is there a way to use "extern alias" with CS-Script? I tried something like this (with version 3.4.2.0) on Windows 7 and .Net 4.0:
//css_co /r:Alias1=Library1.dll /r:Alias2=Library2.dll
//css_ref Library1.dll
//css_ref Library2.dll
extern alias Alias1;
extern alias Alias2;
class Script
{
// code here
}
But when I go to execute the script I get errors similar to:
csscript.CompilerException:
c:\foo.cs(7,1): error CS0430: The extern alias 'Alias1' was not specified in a /reference option
c:\foo.cs(8,1): error CS0430: The extern alias 'Alias2' was not specified in a /reference option