2022-08-08 04:31:38 +00:00
|
|
|
|
using System.Reflection;
|
2015-11-28 10:47:42 +00:00
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
|
|
|
|
|
|
|
#if DEBUG
|
2016-06-20 23:14:32 +00:00
|
|
|
|
|
2015-11-28 10:47:42 +00:00
|
|
|
|
[assembly: AssemblyConfiguration("Debug")]
|
2020-04-22 10:26:09 +00:00
|
|
|
|
[assembly: AssemblyDescription("Debug build, https://github.com/Flow-Launcher/Flow.Launcher")]
|
2015-11-28 10:47:42 +00:00
|
|
|
|
#else
|
|
|
|
|
|
[assembly: AssemblyConfiguration("Release")]
|
2020-04-22 10:26:09 +00:00
|
|
|
|
[assembly: AssemblyDescription("Release build, https://github.com/Flow-Launcher/Flow.Launcher")]
|
2015-11-28 10:47:42 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
|
2020-04-22 10:26:09 +00:00
|
|
|
|
[assembly: AssemblyCompany("Flow Launcher")]
|
|
|
|
|
|
[assembly: AssemblyProduct("Flow Launcher")]
|
2015-11-28 10:47:42 +00:00
|
|
|
|
[assembly: AssemblyCopyright("The MIT License (MIT)")]
|
|
|
|
|
|
[assembly: AssemblyTrademark("")]
|
|
|
|
|
|
[assembly: AssemblyCulture("")]
|
|
|
|
|
|
[assembly: ComVisible(false)]
|
2021-07-19 03:06:08 +00:00
|
|
|
|
[assembly: AssemblyVersion("1.0.0")]
|
|
|
|
|
|
[assembly: AssemblyFileVersion("1.0.0")]
|
2022-08-08 04:31:38 +00:00
|
|
|
|
[assembly: AssemblyInformationalVersion("1.0.0")]
|