Breeze.PocoMetadata.Program.GetFilePath C# (CSharp) Method

GetFilePath() private static method

private static GetFilePath ( ) : string
return string
        private static string GetFilePath()
        {
            var fileName = Options.OutputFile;
            if (string.IsNullOrEmpty(fileName)) return null;

            return string.IsNullOrEmpty(Options.OutputFolder) ?
                Path.GetFullPath(fileName) : Path.Combine(Options.OutputFolder, fileName);
        }