2019-08-30 01:53:09 +00:00
|
|
|
|
// WARNING: for the love of all that is good and holy
|
|
|
|
|
// please DO NOT convert this file to UTF-8, much less
|
|
|
|
|
// UTF-16 - the UNIX port of Roslyn does not understand UTF-16,
|
|
|
|
|
// and UTF-8 chews up the copyright symbols.
|
|
|
|
|
// -rick
|
2019-05-17 12:06:54 +00:00
|
|
|
|
using System.Reflection;
|
2019-03-20 10:02:18 +00:00
|
|
|
|
using System.Runtime.CompilerServices;
|
|
|
|
|
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.
|
2019-12-02 02:14:24 +00:00
|
|
|
|
[assembly: AssemblyTitle("Lokinet for Windows")]
|
|
|
|
|
[assembly: AssemblyDescription("Lokinet end-user UI")]
|
2019-03-20 10:02:18 +00:00
|
|
|
|
[assembly: AssemblyConfiguration("")]
|
|
|
|
|
[assembly: AssemblyCompany("Loki Project")]
|
2019-12-02 02:14:24 +00:00
|
|
|
|
[assembly: AssemblyProduct("Lokinet Launcher")]
|
2019-08-30 01:53:09 +00:00
|
|
|
|
[assembly: AssemblyCopyright("Copyright <20>2018-2019 Loki Project. All rights reserved. See LICENSE for more details.")]
|
|
|
|
|
[assembly: AssemblyTrademark("Loki, Loki Project, LokiNET are <20> & <20>2018-2019 Loki Foundation")]
|
2019-03-20 10:02:18 +00:00
|
|
|
|
[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("1cdee73c-29c5-4781-bd74-1eeac6f75a14")]
|
|
|
|
|
|
|
|
|
|
// 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.*")]
|
2019-12-02 02:14:24 +00:00
|
|
|
|
[assembly: AssemblyVersion("0.6.0")]
|
|
|
|
|
[assembly: AssemblyFileVersion("0.6.0")]
|
2019-03-20 10:02:18 +00:00
|
|
|
|
#if DEBUG
|
2019-12-02 02:14:24 +00:00
|
|
|
|
[assembly: AssemblyInformationalVersion("0.6.0-dev-{chash:8}")]
|
2019-03-20 10:02:18 +00:00
|
|
|
|
#else
|
2019-12-02 02:14:24 +00:00
|
|
|
|
[assembly: AssemblyInformationalVersion("0.6.0 (RELEASE_CODENAME)")]
|
2019-03-20 10:02:18 +00:00
|
|
|
|
#endif
|