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.
20 lines
755 B
XML
20 lines
755 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
|
|
<StartArguments>--hide -a</StartArguments>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<PublishUrlHistory>publish\</PublishUrlHistory>
|
|
<InstallUrlHistory />
|
|
<SupportUrlHistory />
|
|
<UpdateUrlHistory />
|
|
<BootstrapperUrlHistory />
|
|
<ErrorReportUrlHistory />
|
|
<FallbackCulture>zh-CN</FallbackCulture>
|
|
<VerifyUploadedFiles>false</VerifyUploadedFiles>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
|
|
<StartArguments>
|
|
</StartArguments>
|
|
</PropertyGroup>
|
|
</Project> |