cd50996311
1.支持自动选择实验性模式的系统版本,并且弹出提示对话框 2.支持通过控制台参数启动(使用--help可以查看详情) 3.While循环内判断逻辑改用比较器,使运行效率提升 4.支持隐藏运行模式(--hide) 5.支持自动激活模式(--auto) 6.程序集改为嵌入式资源静态加载 7.旧版自解压临时目录改为独立临时工作区 Google Translate : 1. Support system edition of automatic selection of experimental mode, and a prompt dialog box pops up. 2. Support to start through the console parameters (use --help to see details) 3. The decision logic in the While Loop uses a comparator to improve the operating efficiency. 4. Support hidden operation mode (--hide). 5. Support automatic activation mode (--auto) 6. Assembly to embedded resources static loading. 7. The old version of the self-extracting temporary directory was changed to a separate temporary workspace.
56 lines
2.3 KiB
C#
56 lines
2.3 KiB
C#
using System.Reflection;
|
|
using System.Resources;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Runtime.InteropServices;
|
|
using System.Windows;
|
|
|
|
// 有关程序集的一般信息由以下
|
|
// 控制。更改这些特性值可修改
|
|
// 与程序集关联的信息。
|
|
[assembly: AssemblyTitle("CMWTAT Digital Edition V2")]
|
|
[assembly: AssemblyDescription("CloudMoe Windows 10 Activation Toolkit V2")]
|
|
[assembly: AssemblyConfiguration("")]
|
|
[assembly: AssemblyCompany("CloudMoe Network")]
|
|
[assembly: AssemblyProduct("CMWTAT Digital Edition V2")]
|
|
[assembly: AssemblyCopyright("Copyright © CloudMoe Saltfish Studio 2018")]
|
|
[assembly: AssemblyTrademark("CloudMoe Saltfish Studio")]
|
|
[assembly: AssemblyCulture("")]
|
|
|
|
// 将 ComVisible 设置为 false 会使此程序集中的类型
|
|
//对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型
|
|
//请将此类型的 ComVisible 特性设置为 true。
|
|
[assembly: ComVisible(false)]
|
|
|
|
//若要开始生成可本地化的应用程序,请设置
|
|
//.csproj 文件中的 <UICulture>CultureYouAreCodingWith</UICulture>
|
|
//例如,如果您在源文件中使用的是美国英语,
|
|
//使用的是美国英语,请将 <UICulture> 设置为 en-US。 然后取消
|
|
//对以下 NeutralResourceLanguage 特性的注释。 更新
|
|
//以下行中的“en-US”以匹配项目文件中的 UICulture 设置。
|
|
|
|
//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
|
|
|
|
|
|
[assembly: ThemeInfo(
|
|
ResourceDictionaryLocation.None, //主题特定资源词典所处位置
|
|
//(未在页面中找到资源时使用,
|
|
//或应用程序资源字典中找到时使用)
|
|
ResourceDictionaryLocation.SourceAssembly //常规资源词典所处位置
|
|
//(未在页面中找到资源时使用,
|
|
//、应用程序或任何主题专用资源字典中找到时使用)
|
|
)]
|
|
|
|
|
|
// 程序集的版本信息由下列四个值组成:
|
|
//
|
|
// 主版本
|
|
// 次版本
|
|
// 生成号
|
|
// 修订号
|
|
//
|
|
// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
|
|
// 方法是按如下所示使用“*”: :
|
|
// [assembly: AssemblyVersion("1.0.*")]
|
|
[assembly: AssemblyVersion("2.2.0.1")]
|
|
[assembly: AssemblyFileVersion("2.2.0.1")]
|