Click here to Skip to main content
15,887,485 members
Articles / Programming Languages / C#

Whidbey to Everett Project Converter (Visual Studio 2005 to Visual Studio 2003)

Rate me:
Please Sign up or sign in to vote.
4.38/5 (21 votes)
7 Jun 2006CPOL4 min read 153.4K   1.7K   34  
This article describes how to convert a Visual Studio 2005 project into a Visual Studio 2003 compatible format
/*
 * $Id: BuildInfo.cs 2 2006-05-31 22:00:07Z andrew $
 */

using System;

namespace WhidbeyProjectConverter
{

    public class BuildInfo
    {

        public const int BUILD_MAJOR = 1;
        public const int BUILD_MINOR = 1;
        public const int BUILD_NUMBER = 0;
        public const int BUILD_REVISION = 0;

        public static readonly DateTime BUILD_TIME;

        static BuildInfo()
        {
            BuildInfo.BUILD_TIME = new DateTime(DateTime.Now.Ticks);
        }

        public BuildInfo()
        {
        }

    } 
    

}

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
Web Developer myspace
United States United States
Its a passion, why else would we be doing this? Everyday it feels like gold fever, wouldn't you agree? With the boom of the internet and an ever decreasing world, programming today feels a lot like the wild wild west of the past. Its so wide open, filled with tremendous opportunities. Its more than a passion, its a forming of the ideas that later generations will use.

With over ten years experience, I've earned the right to say that. The majority of my career has focused on enterprise application development. I earned my BS in CS from UCI, hi everybody. My fondest memories as a child was working with the 8mhz IBM AT my daddy brought home for us. Yeah, I'm a geek, and proud of it. We're at the forefront of something huge, enjoy it.

Comments and Discussions