diff options
author | sr55 <[email protected]> | 2018-06-10 13:25:53 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2018-06-10 13:26:12 +0100 |
commit | 0bbe6e4bde56799acd6c8096c04f80ca3aa27fb0 (patch) | |
tree | 0a7dfc31986d5c62293af2377660c2b530380b08 /win/CS/HandBrake.Worker/Properties/AssemblyInfo.cs | |
parent | b95d6fcfa8b39b837a1467d108a22eec3651fcf4 (diff) |
WinGui: Stub out a background worker process.
Diffstat (limited to 'win/CS/HandBrake.Worker/Properties/AssemblyInfo.cs')
-rw-r--r-- | win/CS/HandBrake.Worker/Properties/AssemblyInfo.cs | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/win/CS/HandBrake.Worker/Properties/AssemblyInfo.cs b/win/CS/HandBrake.Worker/Properties/AssemblyInfo.cs new file mode 100644 index 000000000..d834e2098 --- /dev/null +++ b/win/CS/HandBrake.Worker/Properties/AssemblyInfo.cs @@ -0,0 +1,45 @@ +// -------------------------------------------------------------------------------------------------------------------- +// <copyright file="AssemblyInfo.cs" company="HandBrake Project (http://handbrake.fr)"> +// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. +// </copyright> +// <summary> +// Assembly Info +// </summary> +// <auto-generated/> +// -------------------------------------------------------------------------------------------------------------------- + +using System.Reflection; +using System.Runtime.InteropServices; + +// 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.Worker")] +[assembly: AssemblyDescription("HandBrake is a GPL-licensed, multiplatform, multithreaded video transcoder.")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("HandBrake Team")] +[assembly: AssemblyProduct("HandBrake.Worker")] +[assembly: AssemblyCopyright("Copyright © 2003-2018 HandBrake Team")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("f8370f37-b226-4830-aee7-6d7ae403e3d2")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.2.0.0")] +[assembly: AssemblyFileVersion("1.2.0.0")] |