mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-26 12:08:37 +08:00
- mRemoteNG: incremented the minor version of the product to 74. Assembly version is now 1.74
41 lines
1.2 KiB
C#
41 lines
1.2 KiB
C#
using System;
|
|
using System.Reflection;
|
|
using System.Resources;
|
|
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.
|
|
|
|
// Review the values of the assembly attributes
|
|
|
|
[assembly:AssemblyTitle("mRemoteNG")]
|
|
[assembly:AssemblyDescription("")]
|
|
[assembly:AssemblyCompany("")]
|
|
[assembly:AssemblyProduct("mRemoteNG")]
|
|
[assembly:AssemblyCopyright("Copyright © 2007-2009 Felix Deimel, 2010-2013 Riley McArdle, 2016 David Sparer")]
|
|
[assembly:AssemblyTrademark("")]
|
|
|
|
[assembly:ComVisible(false)]
|
|
|
|
//The following GUID is for the ID of the typelib if this project is exposed to COM
|
|
[assembly:Guid("A99669B2-FAEB-11DE-995A-826C56D89593")]
|
|
|
|
// 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.74.*")]
|
|
|
|
[assembly:NeutralResourcesLanguageAttribute("en")]
|
|
|