mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
21 lines
No EOL
737 B
C#
21 lines
No EOL
737 B
C#
using System.Reflection;
|
|
using System.Runtime.InteropServices;
|
|
|
|
#if DEBUG
|
|
|
|
[assembly: AssemblyConfiguration("Debug")]
|
|
[assembly: AssemblyDescription("Debug build, https://github.com/Flow-Launcher/Flow.Launcher")]
|
|
#else
|
|
[assembly: AssemblyConfiguration("Release")]
|
|
[assembly: AssemblyDescription("Release build, https://github.com/Flow-Launcher/Flow.Launcher")]
|
|
#endif
|
|
|
|
[assembly: AssemblyCompany("Flow Launcher")]
|
|
[assembly: AssemblyProduct("Flow Launcher")]
|
|
[assembly: AssemblyCopyright("The MIT License (MIT)")]
|
|
[assembly: AssemblyTrademark("")]
|
|
[assembly: AssemblyCulture("")]
|
|
[assembly: ComVisible(false)]
|
|
[assembly: AssemblyVersion("1.6.0")]
|
|
[assembly: AssemblyFileVersion("1.6.0")]
|
|
[assembly: AssemblyInformationalVersion("1.6.0")] |