Click here to Skip to main content
15,885,216 members
Articles / Programming Languages / XSLT

Subversion RSS Logs

Rate me:
Please Sign up or sign in to vote.
4.69/5 (7 votes)
19 Jun 2008CPOL4 min read 32.9K   116   27  
An application to interact with a Subversion repository and produce logs in a few different formats; TXT, XML, XML with XSL, and RSS.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.IO;
using System.Reflection;
using System.Runtime.InteropServices;
using System.ServiceProcess;
using System.Text;

namespace SvnLogs
{
    public partial class ServiceWrapper : ServiceBase
    {
        ConsoleApplication application;

        public ServiceWrapper()
        {
            InitializeComponent();
        }

        protected override void OnStart(string[] args)
        {
            string applicationPath = Path.GetDirectoryName(Assembly.GetEntryAssembly().Location);
            application = new ConsoleApplication(applicationPath, false);
        }

        protected override void OnStop()
        {
            application.Close();
        }

    }
    
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
All around cool guy.

Comments and Discussions