Click here to Skip to main content
15,881,852 members
Articles / Programming Languages / C#

Project Tool

Rate me:
Please Sign up or sign in to vote.
4.69/5 (10 votes)
23 Sep 2007CPOL3 min read 54.5K   1.7K   73  
Backup your C# solution and projects for archive or source code sharing. Temporary or unused files are excluded.
using System;
using System.Collections.Generic;
using System.Text;
using QiHe.CodeLib;

namespace QiHe.ProjectTool
{
	public class Settings : AppSettings
	{
		public static Settings Default = WinApp.LoadConfig<Settings>();

		public static void LoadToDefault(string file)
		{
			Settings settings = WinApp.LoadConfig<Settings>(file);
			Default.ProjectPath = settings.ProjectPath;
			Default.BackupPath = settings.BackupPath;
			Default.FrameworkPath = settings.FrameworkPath;
			Default.Language = settings.Language;
			Default.UpdateControls();
		}

		private string projectpath;

		public string ProjectPath
		{
			get
			{
				return projectpath;
			}
			set
			{
				projectpath = value;
			}
		}

		private string backuppath;

		public string BackupPath
		{
			get
			{
				return backuppath;
			}
			set
			{
				backuppath = value;
			}
		}

		private string frameworkpath;

		public string FrameworkPath
		{
			get
			{
				return frameworkpath;
			}
			set
			{
				frameworkpath = value;
			}
		}

		private string language;

		public string Language
		{
			get
			{
				return language;
			}
			set
			{
				language = value;
			}
		}

	}
}

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
Architect YunCheDa Hangzhou
China China
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions