Click here to Skip to main content
15,881,600 members
Articles / Desktop Programming / Windows Forms

ResxWriter: Generating .resx files from an Excel spreadsheet

Rate me:
Please Sign up or sign in to vote.
4.94/5 (22 votes)
17 Nov 20062 min read 130.3K   3.5K   65  
Generate .resx files from an Excel spreadsheet; fully customizable.
/*
 * Patrick Bounaix
 * www.L0g1c4L.com
 * 
 * */

#region License
/*
Copyright (C) 2005  Patrick Bounaix

This software is provided 'as-is', without any expressed or implied warranty. In no event will the author be held liable for any damages arising from the use of this software.
Permission is granted to anyone to use this software for any purpose. If you use this software in a product, an acknowledgment in the product documentation would be required.

The origin of this software must not be misrepresented; altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 
This notice may not be removed or altered from any source distribution.
 * */
#endregion

#region using
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Security.Permissions;
#endregion

#region General information
[assembly: AssemblyTitle("ApplicationCleaner")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("L0g1c4L")]
[assembly: AssemblyProduct("ApplicationCleaner")]
[assembly: AssemblyCopyright("")]
[assembly: AssemblyTrademark("")]
#endregion

#region Strong name
[assembly: AssemblyCulture("")]

[assembly: AssemblyVersion("1.1.0.0")]

[assembly: AssemblyDelaySign(false)]
[assembly: AssemblyKeyFile("")]
[assembly: AssemblyKeyName("")]
#endregion

#region COM
[assembly: ComVisible(false)]
#endregion

#region CLS
[assembly: CLSCompliant(true)]
#endregion

#region Security
[assembly:PermissionSetAttribute(SecurityAction.RequestMinimum, Name="Nothing")]
#endregion

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 has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
- philosophy
- french
- computer science

Comments and Discussions