Boo.Lang.Compiler.Steps.EmitAssembly.GetTargetDirectory C# (CSharp) Method

GetTargetDirectory() private method

private GetTargetDirectory ( string fname ) : string
fname string
return string
        string GetTargetDirectory(string fname)
        {
            return Permissions.WithDiscoveryPermission(() => Path.GetDirectoryName(Path.GetFullPath(fname)));
        }
EmitAssembly