Click here to Skip to main content
15,897,371 members
Articles / Desktop Programming / WPF

Zip My Code

Rate me:
Please Sign up or sign in to vote.
4.78/5 (17 votes)
20 Dec 2009CPOL3 min read 72K   2K   48  
A utility stripping your source code to the essential core and then compressing it to a nice CodeProject article attachment.
//------------------------------------------------------------------------------
// <auto-generated>
//     This code was generated by a tool.
//     Runtime Version:2.0.50727.3603
//
//     Changes to this file may cause incorrect behavior and will be lost if
//     the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

namespace ZipMyCode.Properties
{


	/// <summary>
	///   A strongly-typed resource class, for looking up localized strings, etc.
	/// </summary>
	// This class was auto-generated by the StronglyTypedResourceBuilder
	// class via a tool like ResGen or Visual Studio.
	// To add or remove a member, edit your .ResX file then rerun ResGen
	// with the /str option, or rebuild your VS project.
	[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")]
	[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
	[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
	internal class Resources
	{

		private static global::System.Resources.ResourceManager resourceMan;

		private static global::System.Globalization.CultureInfo resourceCulture;

		[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
		internal Resources()
		{
		}

		/// <summary>
		///   Returns the cached ResourceManager instance used by this class.
		/// </summary>
		[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
		internal static global::System.Resources.ResourceManager ResourceManager
		{
			get
			{
				if (object.ReferenceEquals(resourceMan, null))
				{
					global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ZipMyCode.Properties.Resources", typeof(Resources).Assembly);
					resourceMan = temp;
				}
				return resourceMan;
			}
		}

		/// <summary>
		///   Overrides the current thread's CurrentUICulture property for all
		///   resource lookups using this strongly typed resource class.
		/// </summary>
		[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
		internal static global::System.Globalization.CultureInfo Culture
		{
			get
			{
				return resourceCulture;
			}
			set
			{
				resourceCulture = value;
			}
		}

		/// <summary>
		///   Looks up a localized string similar to Add Item.
		/// </summary>
		internal static string AddItem_Title
		{
			get
			{
				return ResourceManager.GetString("AddItem_Title", resourceCulture);
			}
		}

		/// <summary>
		///   Looks up a localized string similar to Select code source folder..
		/// </summary>
		internal static string BrowseSourceDescription
		{
			get
			{
				return ResourceManager.GetString("BrowseSourceDescription", resourceCulture);
			}
		}

		/// <summary>
		///   Looks up a localized string similar to Compressing files.
		/// </summary>
		internal static string CompressFilesTask_Name
		{
			get
			{
				return ResourceManager.GetString("CompressFilesTask_Name", resourceCulture);
			}
		}

		/// <summary>
		///   Looks up a localized string similar to Specify a existing source path..
		/// </summary>
		internal static string DirectoryExistsValidationRule_Error
		{
			get
			{
				return ResourceManager.GetString("DirectoryExistsValidationRule_Error", resourceCulture);
			}
		}

		/// <summary>
		///   Looks up a localized string similar to Edit Item.
		/// </summary>
		internal static string EditItem_Title
		{
			get
			{
				return ResourceManager.GetString("EditItem_Title", resourceCulture);
			}
		}

		/// <summary>
		///   Looks up a localized string similar to Scanning source path.
		/// </summary>
		internal static string GetFilesTask_Name
		{
			get
			{
				return ResourceManager.GetString("GetFilesTask_Name", resourceCulture);
			}
		}

		/// <summary>
		///   Looks up a localized string similar to Specify a exclude pattern..
		/// </summary>
		internal static string NotNullValidationRule_Error
		{
			get
			{
				return ResourceManager.GetString("NotNullValidationRule_Error", resourceCulture);
			}
		}

		/// <summary>
		///   Looks up a localized string similar to Idle.
		/// </summary>
		internal static string TaskViewModel_Idle
		{
			get
			{
				return ResourceManager.GetString("TaskViewModel_Idle", resourceCulture);
			}
		}

		/// <summary>
		///   Looks up a localized string similar to Running.
		/// </summary>
		internal static string TaskViewModel_Running
		{
			get
			{
				return ResourceManager.GetString("TaskViewModel_Running", resourceCulture);
			}
		}

		/// <summary>
		///   Looks up a localized string similar to Skipped.
		/// </summary>
		internal static string TaskViewModel_Skipped
		{
			get
			{
				return ResourceManager.GetString("TaskViewModel_Skipped", resourceCulture);
			}
		}

		/// <summary>
		///   Looks up a localized string similar to Success.
		/// </summary>
		internal static string TaskViewModel_Successful
		{
			get
			{
				return ResourceManager.GetString("TaskViewModel_Successful", resourceCulture);
			}
		}

		/// <summary>
		///   Looks up a localized string similar to Failure.
		/// </summary>
		internal static string TaskViewModel_Unsuccessful
		{
			get
			{
				return ResourceManager.GetString("TaskViewModel_Unsuccessful", resourceCulture);
			}
		}
	}
}

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
Software Developer Axis Communications
Sweden Sweden
Got my first computer in the 90's and loved it even though it sounded like a coffeemaker.

Now getting paid for designing cool applications, and drinks the coffee instead of listening to it being made.

Comments and Discussions