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

ResolveRelativePath() private method

private ResolveRelativePath ( string srcFile, string relativeFile ) : string
srcFile string
relativeFile string
return string
        private string ResolveRelativePath(string srcFile, string relativeFile)
        {
            return Path.GetFullPath(Path.Combine(Path.GetDirectoryName(srcFile), relativeFile));
        }
EmitAssembly