mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
* JJW24 Version Do not merge * Update issue link to jjw24 * Remove check * Update to get build version locally from SolutionAssemblyInfo * update url to point to jjw24 repo
21 lines
No EOL
681 B
C#
21 lines
No EOL
681 B
C#
using System.Reflection;
|
|
using System.Runtime.InteropServices;
|
|
|
|
#if DEBUG
|
|
|
|
[assembly: AssemblyConfiguration("Debug")]
|
|
[assembly: AssemblyDescription("Debug build, https://github.com/jjw24/Wox")]
|
|
#else
|
|
[assembly: AssemblyConfiguration("Release")]
|
|
[assembly: AssemblyDescription("Release build, https://github.com/jjw24/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")] |