2015-11-28 10:47:42 +00:00
|
|
|
using System.Reflection;
|
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
|
|
|
|
|
#if DEBUG
|
|
|
|
|
[assembly: AssemblyConfiguration("Debug")]
|
|
|
|
|
[assembly: AssemblyDescription("Debug build, https://github.com/Wox-launcher/Wox")]
|
|
|
|
|
#else
|
|
|
|
|
[assembly: AssemblyConfiguration("Release")]
|
|
|
|
|
[assembly: AssemblyDescription("Release build, https://github.com/Wox-launcher/Wox")]
|
|
|
|
|
#endif
|
|
|
|
|
|
2016-05-07 22:44:38 +01:00
|
|
|
[assembly: AssemblyCompany("Wox")]
|
2015-11-28 10:47:42 +00:00
|
|
|
[assembly: AssemblyProduct("Wox")]
|
|
|
|
|
[assembly: AssemblyCopyright("The MIT License (MIT)")]
|
|
|
|
|
[assembly: AssemblyTrademark("")]
|
|
|
|
|
[assembly: AssemblyCulture("")]
|
|
|
|
|
[assembly: ComVisible(false)]
|
2016-05-15 17:19:33 +01:00
|
|
|
[assembly: AssemblyVersion("1.2.0")]
|
|
|
|
|
[assembly: AssemblyFileVersion("1.2.0.0")]
|
|
|
|
|
[assembly: AssemblyInformationalVersion("1.2.0")]
|