ClrPlus.Scripting.MsBuild.Packaging.NugetPackage.SavePifFile C# (CSharp) Method

SavePifFile() private method

private SavePifFile ( string pifPath ) : bool
pifPath string
return bool
        private bool SavePifFile(string pifPath)
        {
            var sb = new StringBuilder();
            sb.Append("Package Created: {0}\r\n".format(DateTime.Now.ToUniversalTime()));
            sb.Append("CoApp tools version: {0}\r\n".format(this.Assembly().Version()));

            File.WriteAllText(pifPath, sb.ToString());
            return true;
        }