예제 #1
0
파일: Php.cs 프로젝트: webmaster442/BookGen
        protected override void SerializeHostInfo(string scriptPath)
        {
            FsPath     hostinfo = new FsPath(scriptPath, "hostinfo.php");
            ScriptHost host     = new ScriptHost(_settings, _log);
            var        content  = JsonInliner.InlinePhp(nameof(host), host);

            hostinfo.WriteFile(_log, content);
        }