mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
1. installer 2. auto check update on startup 3. auto start on next startup 4. remove command line arguments which breaks squirrel 5. auto generate installer on continue integration
20 lines
No EOL
694 B
C#
20 lines
No EOL
694 B
C#
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
|
|
|
|
[assembly: AssemblyCompany("Wox")]
|
|
[assembly: AssemblyProduct("Wox")]
|
|
[assembly: AssemblyCopyright("The MIT License (MIT)")]
|
|
[assembly: AssemblyTrademark("")]
|
|
[assembly: AssemblyCulture("")]
|
|
[assembly: ComVisible(false)]
|
|
[assembly: AssemblyVersion("1.2.0")]
|
|
[assembly: AssemblyFileVersion("1.2.0")]
|
|
[assembly: AssemblyInformationalVersion("1.2.0")] |