diff options
author | sr55 <[email protected]> | 2007-08-25 20:34:42 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2007-08-25 20:34:42 +0000 |
commit | 370ca4bd5162411684a524fdceba9a6967b8c64e (patch) | |
tree | f13b0f85e60be2a958318472f37f03c8dcef85dd /win/C#/Properties/AssemblyInfo.cs | |
parent | 2548077aee301044b45aca605f6949fec78903a9 (diff) |
WinGui:
- PSP Preset Fix
- Cleaned up Exception handling a bit.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@866 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Properties/AssemblyInfo.cs')
-rw-r--r-- | win/C#/Properties/AssemblyInfo.cs | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/win/C#/Properties/AssemblyInfo.cs b/win/C#/Properties/AssemblyInfo.cs index a375c642e..6af0e190d 100644 --- a/win/C#/Properties/AssemblyInfo.cs +++ b/win/C#/Properties/AssemblyInfo.cs @@ -1,14 +1,15 @@ using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
+using System.Resources;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Handbrake")]
-[assembly: AssemblyDescription("")]
+[assembly: AssemblyDescription("DVD to MPEG-4 converter")]
[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("")]
+[assembly: AssemblyCompany("Handbrake")]
[assembly: AssemblyProduct("Handbrake")]
[assembly: AssemblyCopyright("Copyright © 2007")]
[assembly: AssemblyTrademark("")]
@@ -29,5 +30,6 @@ using System.Runtime.InteropServices; // Build Number
// Revision
//
-[assembly: AssemblyVersion("2.4.0.0")]
-[assembly: AssemblyFileVersion("20.4.0.0")]
+[assembly: AssemblyVersion("2.4.0.1")]
+[assembly: AssemblyFileVersion("2.4.0.1")]
+[assembly: NeutralResourcesLanguageAttribute("en-GB")]
|