mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 11:39:16 +08:00
e0b9a81c9b
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
694 B
C#
20 lines
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")] |