コード例 #1
0
ファイル: Bundle.cs プロジェクト: toanbkmt/BundlerMinifier
        /// <summary>
        /// Converts the relative output file to an absolute file path.
        /// </summary>
        public string GetAbsoluteOutputFile()
        {
            string folder = new FileInfo(FileName).DirectoryName;

            return(Path.Combine(folder, OutputFileName.NormalizePath()));
        }