APD.IntegrationTests.VCS.Git.GitSharpContext.FilepathInLocalDirectory C# (CSharp) Method

FilepathInLocalDirectory() protected static method

protected static FilepathInLocalDirectory ( string filename ) : string
filename string
return string
        protected static string FilepathInLocalDirectory(string filename)
        {
            var path = Path.Combine(_localDirectory, filename);
            return path;
        }