2

从 Windows 命令行,我希望能够发布到 RSS 提要。我想象这样的事情:

rsspub @builds "Build completed without errors."

然后,有人可以去我的电脑:

http://xp64-Matt:9090/builds/rss.xml

并且会有一个带有日期和时间的新条目以及简单的文本“构建完成且没有错误”。

我希望提要本身在不同的端口上运行,所以我不会与 IIS 或 Apache 或任何我需要在我的计算机上日常运行的其他东西抗争。

这样的事情存在吗?

4

1 回答 1

3

这是一个简单的 .Net 3.5 C# 程序,它将创建一个 RSS XML 文件,您可以将其存储在 IIS webroot 中:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml;
using System.IO;

namespace CommandLineRSS
{
    class Program
    {
        static void Main( string[] args )
        {
            var file = args[ 0 ];
            var newEntry = args[ 1 ];

            var xml = new XmlDocument();

            if ( File.Exists( file ) )
                xml.Load( file );
            else
                xml.LoadXml( @"<rss version='2.0'><channel /></rss>" );

            var xmlNewEntry = Create( (XmlElement)xml.SelectSingleNode( "/rss/channel" ), "item" );
            Create( xmlNewEntry, "title" ).InnerText = newEntry;
            Create( xmlNewEntry, "pubDate" ).InnerText = DateTime.Now.ToString("R");

            xml.Save( file );
        }

        private static XmlElement Create( XmlElement parent, string tag )
        {
            var a = parent.OwnerDocument.CreateElement( tag );
            parent.AppendChild( a );
            return a;
        }
    }
}

然后你可以这样称呼它:

CommandLineRSS.exe c:\inetpub\wwwroot\builds.xml "Build completed with errors."
于 2009-02-12T17:52:10.663 回答