------ #### SuperDesign V2.0.2109.0301 - *.[改进]全新网页抓取工具,对历史记录支持编辑和收藏。 - *.[改进]修复网页抓取工具报《未能为 SSL/TLS 安全通道建立信任关系》错的BUG。
39 lines
1.1 KiB
C#
39 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace 开发辅助工具
|
|
{
|
|
public class Init
|
|
{
|
|
public static void Show(string[] args)
|
|
{
|
|
if (args.Length >= 2)
|
|
{
|
|
if (args[0] == "ver")
|
|
{
|
|
string ProjectDir = args[1];
|
|
Manager.RyProject.UpdateVer(ProjectDir.Trim('"') + "\\Properties\\AssemblyInfo.cs");
|
|
}
|
|
else if (args[0] == "get")
|
|
{
|
|
string ProjectPath = args[1];
|
|
Application.Run(new Form1(ProjectPath, "get"));
|
|
}
|
|
else if (args[0] == "open")
|
|
{
|
|
string ProjectPath = args[1];
|
|
Application.Run(new Form1(ProjectPath, "open"));
|
|
}
|
|
}
|
|
else
|
|
{
|
|
Application.Run(new Form1("", ""));
|
|
}
|
|
}
|
|
}
|
|
}
|