*.将打包功能移植到RyProject.cs。
This commit is contained in:
parent
59677e1a85
commit
d32f91ab95
Binary file not shown.
Binary file not shown.
|
@ -1,2 +1,3 @@
|
||||||
VS2019项目目录|E:\SysDoc\Documents\Visual Studio 2019\Projects\
|
VS2019项目目录|E:\SysDoc\Documents\Visual Studio 2019\Projects\
|
||||||
程序开发源码|E:\我的代码\毕方项目\C#
|
程序开发源码|E:\我的代码\毕方项目\C#
|
||||||
|
程序开发源码|E:\My Datas\毕方项目\C#
|
Binary file not shown.
|
@ -2,8 +2,11 @@
|
||||||
using ryCommonDb;
|
using ryCommonDb;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.ComponentModel;
|
||||||
|
using System.Diagnostics;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
using System.Windows.Forms;
|
||||||
using System.Xml;
|
using System.Xml;
|
||||||
|
|
||||||
namespace 开发辅助工具.Manager
|
namespace 开发辅助工具.Manager
|
||||||
|
@ -30,7 +33,13 @@ namespace 开发辅助工具.Manager
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 是否修改输出路径
|
/// 是否修改输出路径
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool ChangedOutputPath { get; set; } =true;
|
public bool ChangedOutputPath { get; set; } =true;
|
||||||
|
public delegate void StringEventHandler(object sender, string e);
|
||||||
|
/// <summary>
|
||||||
|
/// 状态变化时激发
|
||||||
|
/// </summary>
|
||||||
|
[Description("状态变化时激发")]
|
||||||
|
public event StringEventHandler OnStateChanged;
|
||||||
public RyProject()
|
public RyProject()
|
||||||
{
|
{
|
||||||
UpdateSetting();
|
UpdateSetting();
|
||||||
|
@ -398,6 +407,121 @@ namespace 开发辅助工具.Manager
|
||||||
}
|
}
|
||||||
ryCommon.RyFiles.WriteAllText(AssemblyInfo_path, text, Encoding.UTF8);
|
ryCommon.RyFiles.WriteAllText(AssemblyInfo_path, text, Encoding.UTF8);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
/// <summary>
|
||||||
|
/// 等待进程执行完毕
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="cmd_text"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
public string Read_Prog(string exe, string cmd_text)
|
||||||
|
{
|
||||||
|
String cmd = exe;
|
||||||
|
Process p = new Process
|
||||||
|
{
|
||||||
|
StartInfo = new System.Diagnostics.ProcessStartInfo
|
||||||
|
{
|
||||||
|
FileName = cmd,//设定程序名
|
||||||
|
Arguments = cmd_text,
|
||||||
|
UseShellExecute = false, //关闭shell的使用
|
||||||
|
RedirectStandardInput = true, //重定向标准输入
|
||||||
|
RedirectStandardOutput = true, //重定向标准输出
|
||||||
|
RedirectStandardError = false, //重定向错误输出
|
||||||
|
CreateNoWindow = true//设置不显示窗口
|
||||||
|
}
|
||||||
|
};
|
||||||
|
p.Start();
|
||||||
|
string result = p.StandardOutput.ReadToEnd();
|
||||||
|
p.WaitForExit(20000);
|
||||||
|
p.Close();
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
/// <summary>
|
||||||
|
/// 进行打包
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="project_folder">项目根目录</param>
|
||||||
|
public void Pack(string project_folder)
|
||||||
|
{
|
||||||
|
var com_mode = "Debug";
|
||||||
|
DataProvider mydb = new DataProvider();
|
||||||
|
IDbInterface db = Itrycn_Db.CreateDataProvider(Itrycn_Db.dataType);
|
||||||
|
if (db.ConnDb(Itrycn_Db.User_SQLConn) == 1)
|
||||||
|
{
|
||||||
|
var ds = db.ReadData("select * from Settings where name='Setting'");
|
||||||
|
if (mydb.HaveData(ds))
|
||||||
|
{
|
||||||
|
var row = mydb.GetData(ds);
|
||||||
|
ryCommon.Storage mStor = new ryCommon.Storage(row["value"].ToString());
|
||||||
|
mStor.SelectNodeBySet();
|
||||||
|
var ReactorPath = mStor.GetAttrValue("ReactorPath");
|
||||||
|
var WinRARPath = mStor.GetAttrValue("WinRARPath");
|
||||||
|
if (WinRARPath == "")
|
||||||
|
{
|
||||||
|
if (System.IO.File.Exists(@"C:\Program Files\WinRAR\WinRAR.exe"))
|
||||||
|
{
|
||||||
|
WinRARPath = @"C:\Program Files\WinRAR\WinRAR.exe";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
var bf_folder = project_folder;
|
||||||
|
if (bf_folder != "")
|
||||||
|
{
|
||||||
|
ryCommon.Ini ini = new ryCommon.Ini(bf_folder + "\\查看项目.ryp");
|
||||||
|
var eng_name = ini.ReadIni("project", "engname");
|
||||||
|
var proglang = ini.ReadIni("project", "proglang");
|
||||||
|
var ouput_folder = bf_folder + "\\Bin\\" + com_mode + "\\" + eng_name;
|
||||||
|
var file_ver = "";
|
||||||
|
if (System.IO.File.Exists(ouput_folder + "\\" + eng_name + ".exe"))
|
||||||
|
{
|
||||||
|
FileVersionInfo fileVerInfo = System.Diagnostics.FileVersionInfo.GetVersionInfo(ouput_folder + "\\" + eng_name + ".exe");
|
||||||
|
file_ver = fileVerInfo.ProductVersion;
|
||||||
|
}
|
||||||
|
if (proglang == "c#")
|
||||||
|
{
|
||||||
|
ShowState("正在进行混淆...");
|
||||||
|
if (System.IO.File.Exists(bf_folder + "\\Bin\\混淆_" + com_mode + ".nrproj"))
|
||||||
|
{
|
||||||
|
var cmd = Read_Prog(ReactorPath, "-project \"" + bf_folder + "\\Bin\\混淆_" + com_mode + ".nrproj\"");
|
||||||
|
MessageBox.Show(cmd, "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
ShowState("正在清理不重要的缓存...");
|
||||||
|
ryCommon.RyFiles.DeleteFile(ouput_folder + "\\Secure\\*.pdb");
|
||||||
|
ShowState("复制混淆文件到底包目录...");
|
||||||
|
ryCommon.RyFiles.CopyFile(ouput_folder + "\\Secure\\*", bf_folder + "\\Publish\\OriginalFiles\\");
|
||||||
|
#region 复制自定义规则文件到底包目录
|
||||||
|
ShowState("复制自定义规则文件到底包目录...");
|
||||||
|
var Publish = ryCommon.RyFiles.ReadAllLines(bf_folder + "\\Publish\\Publish.set");
|
||||||
|
for (int m = 0; m < Publish.Length; m++)
|
||||||
|
{
|
||||||
|
var line = Publish[m].Trim();
|
||||||
|
if (line == "" || line.IndexOf("#") == 0) { continue; }
|
||||||
|
if (line.IndexOfEx("del:") == 0)
|
||||||
|
{
|
||||||
|
ryCommon.RyFiles.DeleteFile(bf_folder + "\\Publish\\OriginalFiles\\" + line.Substring(4));
|
||||||
|
}
|
||||||
|
else if (line.IndexOfEx("copy:") == 0)
|
||||||
|
{
|
||||||
|
var from_to = line.Substring(5).Replace("->", "|").Split('|');
|
||||||
|
if (from_to.Length == 2)
|
||||||
|
{
|
||||||
|
var from_path = from_to[0];
|
||||||
|
var to_path = from_to[1];
|
||||||
|
ryCommon.RyFiles.CopyFile(ouput_folder + "\\" + from_path, bf_folder + "\\Publish\\OriginalFiles\\" + to_path);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endregion
|
||||||
|
ShowState("正在打包...");
|
||||||
|
var cmd2 = Read_Prog(WinRARPath, "-r -ep1 a \"" + bf_folder + "\\Publish\\Green\\" + eng_name + ".zip\" \"" + bf_folder + "\\Publish\\OriginalFiles\\\"");
|
||||||
|
RyFiles.CopyFile(bf_folder + "\\Publish\\Green\\" + eng_name + ".zip", bf_folder + "\\Publish\\Green\\HistoryVer\\" + eng_name + "_" + file_ver + ".zip");
|
||||||
|
ShowState("打包完成...");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
db.Free();
|
||||||
|
void ShowState(string text)
|
||||||
|
{
|
||||||
|
OnStateChanged?.Invoke(this,text);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,378 +1,378 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
<ProjectGuid>{8177CFD1-097C-4D4E-919D-8B519289496E}</ProjectGuid>
|
<ProjectGuid>{8177CFD1-097C-4D4E-919D-8B519289496E}</ProjectGuid>
|
||||||
<OutputType>WinExe</OutputType>
|
<OutputType>WinExe</OutputType>
|
||||||
<RootNamespace>SuperDesign</RootNamespace>
|
<RootNamespace>SuperDesign</RootNamespace>
|
||||||
<AssemblyName>SuperDesign</AssemblyName>
|
<AssemblyName>SuperDesign</AssemblyName>
|
||||||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
||||||
<FileAlignment>512</FileAlignment>
|
<FileAlignment>512</FileAlignment>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
<PlatformTarget>x86</PlatformTarget>
|
<PlatformTarget>x86</PlatformTarget>
|
||||||
<DebugSymbols>true</DebugSymbols>
|
<DebugSymbols>true</DebugSymbols>
|
||||||
<DebugType>full</DebugType>
|
<DebugType>full</DebugType>
|
||||||
<Optimize>false</Optimize>
|
<Optimize>false</Optimize>
|
||||||
<OutputPath>..\..\Bin\Debug\SuperDesign\</OutputPath>
|
<OutputPath>..\..\Bin\Debug\SuperDesign\</OutputPath>
|
||||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
<DebugType>pdbonly</DebugType>
|
<DebugType>pdbonly</DebugType>
|
||||||
<Optimize>true</Optimize>
|
<Optimize>true</Optimize>
|
||||||
<OutputPath>bin\Release\</OutputPath>
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
<DefineConstants>TRACE</DefineConstants>
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<ApplicationIcon>gaim_48px_29650_easyicon.net.ico</ApplicationIcon>
|
<ApplicationIcon>gaim_48px_29650_easyicon.net.ico</ApplicationIcon>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="HtmlAgilityPack">
|
<Reference Include="HtmlAgilityPack">
|
||||||
<HintPath>..\..\Bin\Debug\SupperDesign\HtmlAgilityPack.dll</HintPath>
|
<HintPath>..\..\Bin\Debug\SupperDesign\HtmlAgilityPack.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="ICSharpCode.TextEditor">
|
<Reference Include="ICSharpCode.TextEditor">
|
||||||
<HintPath>..\..\Bin\Debug\SupperDesign\ICSharpCode.TextEditor.dll</HintPath>
|
<HintPath>..\..\Bin\Debug\SupperDesign\ICSharpCode.TextEditor.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="MGdUI">
|
<Reference Include="MGdUI">
|
||||||
<HintPath>..\..\Bin\Debug\SupperDesign\MGdUI.dll</HintPath>
|
<HintPath>..\..\Bin\Debug\SupperDesign\MGdUI.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="MyDb">
|
<Reference Include="MyDb">
|
||||||
<HintPath>..\..\Bin\Debug\SupperDesign\MyDb.dll</HintPath>
|
<HintPath>..\..\Bin\Debug\SupperDesign\MyDb.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="MyDb_SQLite">
|
<Reference Include="MyDb_SQLite">
|
||||||
<HintPath>..\..\Bin\Debug\SupperDesign\MyDb_SQLite.dll</HintPath>
|
<HintPath>..\..\Bin\Debug\SupperDesign\MyDb_SQLite.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
||||||
<SpecificVersion>False</SpecificVersion>
|
<SpecificVersion>False</SpecificVersion>
|
||||||
<HintPath>..\..\Bin\Debug\SupperDesign\Newtonsoft.Json.dll</HintPath>
|
<HintPath>..\..\Bin\Debug\SupperDesign\Newtonsoft.Json.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="ryControls">
|
<Reference Include="ryControls">
|
||||||
<HintPath>..\..\Bin\Debug\SupperDesign\ryControls.dll</HintPath>
|
<HintPath>..\..\Bin\Debug\SupperDesign\ryControls.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="RyWeb">
|
<Reference Include="RyWeb">
|
||||||
<HintPath>..\..\Bin\Debug\SupperDesign\RyWeb.dll</HintPath>
|
<HintPath>..\..\Bin\Debug\SupperDesign\RyWeb.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="SCREEN_CAPTURE">
|
<Reference Include="SCREEN_CAPTURE">
|
||||||
<HintPath>..\..\Bin\Debug\SupperDesign\SCREEN_CAPTURE.dll</HintPath>
|
<HintPath>..\..\Bin\Debug\SupperDesign\SCREEN_CAPTURE.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="System" />
|
<Reference Include="System" />
|
||||||
<Reference Include="System.Core" />
|
<Reference Include="System.Core" />
|
||||||
<Reference Include="System.Design" />
|
<Reference Include="System.Design" />
|
||||||
<Reference Include="System.Xml.Linq" />
|
<Reference Include="System.Xml.Linq" />
|
||||||
<Reference Include="System.Data.DataSetExtensions" />
|
<Reference Include="System.Data.DataSetExtensions" />
|
||||||
<Reference Include="Microsoft.CSharp" />
|
<Reference Include="Microsoft.CSharp" />
|
||||||
<Reference Include="System.Data" />
|
<Reference Include="System.Data" />
|
||||||
<Reference Include="System.Deployment" />
|
<Reference Include="System.Deployment" />
|
||||||
<Reference Include="System.Drawing" />
|
<Reference Include="System.Drawing" />
|
||||||
<Reference Include="System.Windows.Forms" />
|
<Reference Include="System.Windows.Forms" />
|
||||||
<Reference Include="System.Xml" />
|
<Reference Include="System.Xml" />
|
||||||
<Reference Include="WeifenLuo.WinFormsUI.Docking">
|
<Reference Include="WeifenLuo.WinFormsUI.Docking">
|
||||||
<HintPath>..\..\Bin\Debug\SupperDesign\WeifenLuo.WinFormsUI.Docking.dll</HintPath>
|
<HintPath>..\..\Bin\Debug\SupperDesign\WeifenLuo.WinFormsUI.Docking.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="WeifenLuo.WinFormsUI.Docking.ThemeVS2015">
|
<Reference Include="WeifenLuo.WinFormsUI.Docking.ThemeVS2015">
|
||||||
<HintPath>..\..\Bin\Debug\SupperDesign\WeifenLuo.WinFormsUI.Docking.ThemeVS2015.dll</HintPath>
|
<HintPath>..\..\Bin\Debug\SupperDesign\WeifenLuo.WinFormsUI.Docking.ThemeVS2015.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="XPTable">
|
<Reference Include="XPTable">
|
||||||
<HintPath>..\..\Bin\Debug\SupperDesign\XPTable.dll</HintPath>
|
<HintPath>..\..\Bin\Debug\SupperDesign\XPTable.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="zxing">
|
<Reference Include="zxing">
|
||||||
<HintPath>..\..\Bin\Debug\SupperDesign\zxing.dll</HintPath>
|
<HintPath>..\..\Bin\Debug\SupperDesign\zxing.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="Controls\ContextMenuStripHighlightText.cs">
|
<Compile Include="Controls\ContextMenuStripHighlightText.cs">
|
||||||
<SubType>Component</SubType>
|
<SubType>Component</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Controls\ContextMenuStripHighlightText.Designer.cs">
|
<Compile Include="Controls\ContextMenuStripHighlightText.Designer.cs">
|
||||||
<DependentUpon>ContextMenuStripHighlightText.cs</DependentUpon>
|
<DependentUpon>ContextMenuStripHighlightText.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Controls\ContextMenuStripRichText.cs">
|
<Compile Include="Controls\ContextMenuStripRichText.cs">
|
||||||
<SubType>Component</SubType>
|
<SubType>Component</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Controls\ContextMenuStripRichText.Designer.cs">
|
<Compile Include="Controls\ContextMenuStripRichText.Designer.cs">
|
||||||
<DependentUpon>ContextMenuStripRichText.cs</DependentUpon>
|
<DependentUpon>ContextMenuStripRichText.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Controls\FindAndReplaceForm.cs">
|
<Compile Include="Controls\FindAndReplaceForm.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Controls\FindAndReplaceForm.designer.cs">
|
<Compile Include="Controls\FindAndReplaceForm.designer.cs">
|
||||||
<DependentUpon>FindAndReplaceForm.cs</DependentUpon>
|
<DependentUpon>FindAndReplaceForm.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Controls\FrmInsertUnixTime.cs">
|
<Compile Include="Controls\FrmInsertUnixTime.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Controls\FrmInsertUnixTime.Designer.cs">
|
<Compile Include="Controls\FrmInsertUnixTime.Designer.cs">
|
||||||
<DependentUpon>FrmInsertUnixTime.cs</DependentUpon>
|
<DependentUpon>FrmInsertUnixTime.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Controls\FrmText.cs">
|
<Compile Include="Controls\FrmText.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Controls\FrmText.Designer.cs">
|
<Compile Include="Controls\FrmText.Designer.cs">
|
||||||
<DependentUpon>FrmText.cs</DependentUpon>
|
<DependentUpon>FrmText.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Controls\FrmTitle.cs">
|
<Compile Include="Controls\FrmTitle.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Controls\FrmTitle.Designer.cs">
|
<Compile Include="Controls\FrmTitle.Designer.cs">
|
||||||
<DependentUpon>FrmTitle.cs</DependentUpon>
|
<DependentUpon>FrmTitle.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Controls\MenuRight.cs">
|
<Compile Include="Controls\MenuRight.cs">
|
||||||
<SubType>Component</SubType>
|
<SubType>Component</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Controls\MenuRight.Designer.cs">
|
<Compile Include="Controls\MenuRight.Designer.cs">
|
||||||
<DependentUpon>MenuRight.cs</DependentUpon>
|
<DependentUpon>MenuRight.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Form1.cs">
|
<Compile Include="Form1.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Form1.Designer.cs">
|
<Compile Include="Form1.Designer.cs">
|
||||||
<DependentUpon>Form1.cs</DependentUpon>
|
<DependentUpon>Form1.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="FrmMessageBox.cs">
|
<Compile Include="FrmMessageBox.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="FrmMessageBox.Designer.cs">
|
<Compile Include="FrmMessageBox.Designer.cs">
|
||||||
<DependentUpon>FrmMessageBox.cs</DependentUpon>
|
<DependentUpon>FrmMessageBox.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Globals.cs" />
|
<Compile Include="Globals.cs" />
|
||||||
<Compile Include="Manager\FrmSetting.cs">
|
<Compile Include="Manager\FrmSetting.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Manager\FrmSetting.Designer.cs">
|
<Compile Include="Manager\FrmSetting.Designer.cs">
|
||||||
<DependentUpon>FrmSetting.cs</DependentUpon>
|
<DependentUpon>FrmSetting.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Manager\JsonSplit.cs" />
|
<Compile Include="Manager\JsonSplit.cs" />
|
||||||
<Compile Include="Manager\ClsPY.cs" />
|
<Compile Include="Manager\ClsPY.cs" />
|
||||||
<Compile Include="Manager\FrmAddTools.cs">
|
<Compile Include="Manager\FrmAddTools.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Manager\FrmAddTools.Designer.cs">
|
<Compile Include="Manager\FrmAddTools.Designer.cs">
|
||||||
<DependentUpon>FrmAddTools.cs</DependentUpon>
|
<DependentUpon>FrmAddTools.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Manager\Itrycn_Info.cs" />
|
<Compile Include="Manager\Itrycn_Info.cs" />
|
||||||
<Compile Include="Manager\Json.cs" />
|
<Compile Include="Manager\Json.cs" />
|
||||||
<Compile Include="Manager\ReactorXML.cs" />
|
<Compile Include="Manager\ReactorXML.cs" />
|
||||||
<Compile Include="Manager\RyProject.cs" />
|
<Compile Include="Manager\RyProject.cs" />
|
||||||
<Compile Include="Manager\TotalCount.cs" />
|
<Compile Include="Manager\TotalCount.cs" />
|
||||||
<Compile Include="Program.cs" />
|
<Compile Include="Program.cs" />
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
<Compile Include="Tools\FrmColor.cs">
|
<Compile Include="Tools\FrmColor.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Tools\FrmColor.Designer.cs">
|
<Compile Include="Tools\FrmColor.Designer.cs">
|
||||||
<DependentUpon>FrmColor.cs</DependentUpon>
|
<DependentUpon>FrmColor.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Tools\FrmCreateProject.cs">
|
<Compile Include="Tools\FrmCreateProject.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Tools\FrmCreateProject.Designer.cs">
|
<Compile Include="Tools\FrmCreateProject.Designer.cs">
|
||||||
<DependentUpon>FrmCreateProject.cs</DependentUpon>
|
<DependentUpon>FrmCreateProject.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Tools\FrmEncode.cs">
|
<Compile Include="Tools\FrmEncode.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Tools\FrmEncode.Designer.cs">
|
<Compile Include="Tools\FrmEncode.Designer.cs">
|
||||||
<DependentUpon>FrmEncode.cs</DependentUpon>
|
<DependentUpon>FrmEncode.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Tools\FrmJson.cs">
|
<Compile Include="Tools\FrmJson.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Tools\FrmJson.Designer.cs">
|
<Compile Include="Tools\FrmJson.Designer.cs">
|
||||||
<DependentUpon>FrmJson.cs</DependentUpon>
|
<DependentUpon>FrmJson.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Tools\FrmPathInfo.cs">
|
<Compile Include="Tools\FrmPathInfo.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Tools\FrmPathInfo.Designer.cs">
|
<Compile Include="Tools\FrmPathInfo.Designer.cs">
|
||||||
<DependentUpon>FrmPathInfo.cs</DependentUpon>
|
<DependentUpon>FrmPathInfo.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Tools\FrmProject.cs">
|
<Compile Include="Tools\FrmProject.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Tools\FrmProject.Designer.cs">
|
<Compile Include="Tools\FrmProject.Designer.cs">
|
||||||
<DependentUpon>FrmProject.cs</DependentUpon>
|
<DependentUpon>FrmProject.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Tools\FrmProjectSearch.cs">
|
<Compile Include="Tools\FrmProjectSearch.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Tools\FrmProjectSearch.Designer.cs">
|
<Compile Include="Tools\FrmProjectSearch.Designer.cs">
|
||||||
<DependentUpon>FrmProjectSearch.cs</DependentUpon>
|
<DependentUpon>FrmProjectSearch.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Tools\FrmQrCode.cs">
|
<Compile Include="Tools\FrmQrCode.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Tools\FrmQrCode.Designer.cs">
|
<Compile Include="Tools\FrmQrCode.Designer.cs">
|
||||||
<DependentUpon>FrmQrCode.cs</DependentUpon>
|
<DependentUpon>FrmQrCode.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Tools\FrmRegex.cs">
|
<Compile Include="Tools\FrmRegex.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Tools\FrmRegex.Designer.cs">
|
<Compile Include="Tools\FrmRegex.Designer.cs">
|
||||||
<DependentUpon>FrmRegex.cs</DependentUpon>
|
<DependentUpon>FrmRegex.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Tools\FrmSetup.cs">
|
<Compile Include="Tools\FrmSetup.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Tools\FrmSetup.Designer.cs">
|
<Compile Include="Tools\FrmSetup.Designer.cs">
|
||||||
<DependentUpon>FrmSetup.cs</DependentUpon>
|
<DependentUpon>FrmSetup.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Tools\FrmStrCount.cs">
|
<Compile Include="Tools\FrmStrCount.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Tools\FrmStrCount.Designer.cs">
|
<Compile Include="Tools\FrmStrCount.Designer.cs">
|
||||||
<DependentUpon>FrmStrCount.cs</DependentUpon>
|
<DependentUpon>FrmStrCount.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Tools\FrmStrToCode.cs">
|
<Compile Include="Tools\FrmStrToCode.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Tools\FrmStrToCode.Designer.cs">
|
<Compile Include="Tools\FrmStrToCode.Designer.cs">
|
||||||
<DependentUpon>FrmStrToCode.cs</DependentUpon>
|
<DependentUpon>FrmStrToCode.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Tools\FrmTime.cs">
|
<Compile Include="Tools\FrmTime.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Tools\FrmTime.Designer.cs">
|
<Compile Include="Tools\FrmTime.Designer.cs">
|
||||||
<DependentUpon>FrmTime.cs</DependentUpon>
|
<DependentUpon>FrmTime.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Tools\FrmToolsBox.cs">
|
<Compile Include="Tools\FrmToolsBox.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Tools\FrmToolsBox.Designer.cs">
|
<Compile Include="Tools\FrmToolsBox.Designer.cs">
|
||||||
<DependentUpon>FrmToolsBox.cs</DependentUpon>
|
<DependentUpon>FrmToolsBox.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Manager\FrmToolsSearch.cs">
|
<Compile Include="Manager\FrmToolsSearch.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Manager\FrmToolsSearch.Designer.cs">
|
<Compile Include="Manager\FrmToolsSearch.Designer.cs">
|
||||||
<DependentUpon>FrmToolsSearch.cs</DependentUpon>
|
<DependentUpon>FrmToolsSearch.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Tools\FrmWebGet.cs">
|
<Compile Include="Tools\FrmWebGet.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Tools\FrmWebGet.Designer.cs">
|
<Compile Include="Tools\FrmWebGet.Designer.cs">
|
||||||
<DependentUpon>FrmWebGet.cs</DependentUpon>
|
<DependentUpon>FrmWebGet.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Tools\FrmXpath.cs">
|
<Compile Include="Tools\FrmXpath.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Tools\FrmXpath.Designer.cs">
|
<Compile Include="Tools\FrmXpath.Designer.cs">
|
||||||
<DependentUpon>FrmXpath.cs</DependentUpon>
|
<DependentUpon>FrmXpath.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<EmbeddedResource Include="Controls\ContextMenuStripHighlightText.resx">
|
<EmbeddedResource Include="Controls\ContextMenuStripHighlightText.resx">
|
||||||
<DependentUpon>ContextMenuStripHighlightText.cs</DependentUpon>
|
<DependentUpon>ContextMenuStripHighlightText.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Controls\ContextMenuStripRichText.resx">
|
<EmbeddedResource Include="Controls\ContextMenuStripRichText.resx">
|
||||||
<DependentUpon>ContextMenuStripRichText.cs</DependentUpon>
|
<DependentUpon>ContextMenuStripRichText.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Controls\FindAndReplaceForm.resx">
|
<EmbeddedResource Include="Controls\FindAndReplaceForm.resx">
|
||||||
<DependentUpon>FindAndReplaceForm.cs</DependentUpon>
|
<DependentUpon>FindAndReplaceForm.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Controls\FrmInsertUnixTime.resx">
|
<EmbeddedResource Include="Controls\FrmInsertUnixTime.resx">
|
||||||
<DependentUpon>FrmInsertUnixTime.cs</DependentUpon>
|
<DependentUpon>FrmInsertUnixTime.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Controls\FrmText.resx">
|
<EmbeddedResource Include="Controls\FrmText.resx">
|
||||||
<DependentUpon>FrmText.cs</DependentUpon>
|
<DependentUpon>FrmText.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Controls\FrmTitle.resx">
|
<EmbeddedResource Include="Controls\FrmTitle.resx">
|
||||||
<DependentUpon>FrmTitle.cs</DependentUpon>
|
<DependentUpon>FrmTitle.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Form1.resx">
|
<EmbeddedResource Include="Form1.resx">
|
||||||
<DependentUpon>Form1.cs</DependentUpon>
|
<DependentUpon>Form1.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="FrmMessageBox.resx">
|
<EmbeddedResource Include="FrmMessageBox.resx">
|
||||||
<DependentUpon>FrmMessageBox.cs</DependentUpon>
|
<DependentUpon>FrmMessageBox.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Manager\FrmAddTools.resx">
|
<EmbeddedResource Include="Manager\FrmAddTools.resx">
|
||||||
<DependentUpon>FrmAddTools.cs</DependentUpon>
|
<DependentUpon>FrmAddTools.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Manager\FrmSetting.resx">
|
<EmbeddedResource Include="Manager\FrmSetting.resx">
|
||||||
<DependentUpon>FrmSetting.cs</DependentUpon>
|
<DependentUpon>FrmSetting.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Properties\Resources.resx">
|
<EmbeddedResource Include="Properties\Resources.resx">
|
||||||
<Generator>ResXFileCodeGenerator</Generator>
|
<Generator>ResXFileCodeGenerator</Generator>
|
||||||
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<Compile Include="Properties\Resources.Designer.cs">
|
<Compile Include="Properties\Resources.Designer.cs">
|
||||||
<AutoGen>True</AutoGen>
|
<AutoGen>True</AutoGen>
|
||||||
<DependentUpon>Resources.resx</DependentUpon>
|
<DependentUpon>Resources.resx</DependentUpon>
|
||||||
<DesignTime>True</DesignTime>
|
<DesignTime>True</DesignTime>
|
||||||
</Compile>
|
</Compile>
|
||||||
<EmbeddedResource Include="Tools\FrmColor.resx">
|
<EmbeddedResource Include="Tools\FrmColor.resx">
|
||||||
<DependentUpon>FrmColor.cs</DependentUpon>
|
<DependentUpon>FrmColor.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Tools\FrmCreateProject.resx">
|
<EmbeddedResource Include="Tools\FrmCreateProject.resx">
|
||||||
<DependentUpon>FrmCreateProject.cs</DependentUpon>
|
<DependentUpon>FrmCreateProject.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Tools\FrmEncode.resx">
|
<EmbeddedResource Include="Tools\FrmEncode.resx">
|
||||||
<DependentUpon>FrmEncode.cs</DependentUpon>
|
<DependentUpon>FrmEncode.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Tools\FrmJson.resx">
|
<EmbeddedResource Include="Tools\FrmJson.resx">
|
||||||
<DependentUpon>FrmJson.cs</DependentUpon>
|
<DependentUpon>FrmJson.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Tools\FrmPathInfo.resx">
|
<EmbeddedResource Include="Tools\FrmPathInfo.resx">
|
||||||
<DependentUpon>FrmPathInfo.cs</DependentUpon>
|
<DependentUpon>FrmPathInfo.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Tools\FrmProject.resx">
|
<EmbeddedResource Include="Tools\FrmProject.resx">
|
||||||
<DependentUpon>FrmProject.cs</DependentUpon>
|
<DependentUpon>FrmProject.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Tools\FrmProjectSearch.resx">
|
<EmbeddedResource Include="Tools\FrmProjectSearch.resx">
|
||||||
<DependentUpon>FrmProjectSearch.cs</DependentUpon>
|
<DependentUpon>FrmProjectSearch.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Tools\FrmQrCode.resx">
|
<EmbeddedResource Include="Tools\FrmQrCode.resx">
|
||||||
<DependentUpon>FrmQrCode.cs</DependentUpon>
|
<DependentUpon>FrmQrCode.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Tools\FrmRegex.resx">
|
<EmbeddedResource Include="Tools\FrmRegex.resx">
|
||||||
<DependentUpon>FrmRegex.cs</DependentUpon>
|
<DependentUpon>FrmRegex.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Tools\FrmSetup.resx">
|
<EmbeddedResource Include="Tools\FrmSetup.resx">
|
||||||
<DependentUpon>FrmSetup.cs</DependentUpon>
|
<DependentUpon>FrmSetup.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Tools\FrmStrCount.resx">
|
<EmbeddedResource Include="Tools\FrmStrCount.resx">
|
||||||
<DependentUpon>FrmStrCount.cs</DependentUpon>
|
<DependentUpon>FrmStrCount.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Tools\FrmStrToCode.resx">
|
<EmbeddedResource Include="Tools\FrmStrToCode.resx">
|
||||||
<DependentUpon>FrmStrToCode.cs</DependentUpon>
|
<DependentUpon>FrmStrToCode.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Tools\FrmTime.resx">
|
<EmbeddedResource Include="Tools\FrmTime.resx">
|
||||||
<DependentUpon>FrmTime.cs</DependentUpon>
|
<DependentUpon>FrmTime.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Tools\FrmToolsBox.resx">
|
<EmbeddedResource Include="Tools\FrmToolsBox.resx">
|
||||||
<DependentUpon>FrmToolsBox.cs</DependentUpon>
|
<DependentUpon>FrmToolsBox.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Manager\FrmToolsSearch.resx">
|
<EmbeddedResource Include="Manager\FrmToolsSearch.resx">
|
||||||
<DependentUpon>FrmToolsSearch.cs</DependentUpon>
|
<DependentUpon>FrmToolsSearch.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Tools\FrmWebGet.resx">
|
<EmbeddedResource Include="Tools\FrmWebGet.resx">
|
||||||
<DependentUpon>FrmWebGet.cs</DependentUpon>
|
<DependentUpon>FrmWebGet.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Tools\FrmXpath.resx">
|
<EmbeddedResource Include="Tools\FrmXpath.resx">
|
||||||
<DependentUpon>FrmXpath.cs</DependentUpon>
|
<DependentUpon>FrmXpath.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<None Include="Properties\Settings.settings">
|
<None Include="Properties\Settings.settings">
|
||||||
<Generator>SettingsSingleFileGenerator</Generator>
|
<Generator>SettingsSingleFileGenerator</Generator>
|
||||||
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
||||||
</None>
|
</None>
|
||||||
<Compile Include="Properties\Settings.Designer.cs">
|
<Compile Include="Properties\Settings.Designer.cs">
|
||||||
<AutoGen>True</AutoGen>
|
<AutoGen>True</AutoGen>
|
||||||
<DependentUpon>Settings.settings</DependentUpon>
|
<DependentUpon>Settings.settings</DependentUpon>
|
||||||
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
||||||
</Compile>
|
</Compile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Content Include="gaim_48px_29650_easyicon.net.ico" />
|
<Content Include="gaim_48px_29650_easyicon.net.ico" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup />
|
<ItemGroup />
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<PreBuildEvent>
|
<PreBuildEvent>
|
||||||
</PreBuildEvent>
|
</PreBuildEvent>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Project>
|
</Project>
|
|
@ -117,7 +117,7 @@ namespace 开发辅助工具.Tools
|
||||||
if (!System.IO.File.Exists(full_path + "\\CHANGELOG.md"))
|
if (!System.IO.File.Exists(full_path + "\\CHANGELOG.md"))
|
||||||
{ ryCommon.RyFiles.WriteAllText(full_path + "\\CHANGELOG.md", "", Encoding.UTF8); }
|
{ ryCommon.RyFiles.WriteAllText(full_path + "\\CHANGELOG.md", "", Encoding.UTF8); }
|
||||||
if (!System.IO.File.Exists(full_path + "\\README.md"))
|
if (!System.IO.File.Exists(full_path + "\\README.md"))
|
||||||
{ ryCommon.RyFiles.WriteAllText(full_path + "\\README.md", "", Encoding.UTF8); }
|
{ ryCommon.RyFiles.WriteAllText(full_path + "\\README.md", "# "+ project_name+ "\r\n\r\n#### 介绍\r\n", Encoding.UTF8); }
|
||||||
if (!System.IO.File.Exists(full_path + "\\Publish\\Publish.set"))
|
if (!System.IO.File.Exists(full_path + "\\Publish\\Publish.set"))
|
||||||
{
|
{
|
||||||
ryCommon.RyFiles.WriteAllText(full_path + "\\Publish\\Publish.set", "#del表示删除文件;copy表示复制文件;" +
|
ryCommon.RyFiles.WriteAllText(full_path + "\\Publish\\Publish.set", "#del表示删除文件;copy表示复制文件;" +
|
||||||
|
@ -133,39 +133,38 @@ namespace 开发辅助工具.Tools
|
||||||
if (!System.IO.File.Exists(full_path + "\\Bin\\混淆_Debug.nrproj"))
|
if (!System.IO.File.Exists(full_path + "\\Bin\\混淆_Debug.nrproj"))
|
||||||
{
|
{
|
||||||
List<string> files_debug = new List<string>
|
List<string> files_debug = new List<string>
|
||||||
{
|
{
|
||||||
"Debug\\"+project_Eng_name+"\\" + project_Eng_name + ".exe",
|
"Debug\\"+project_Eng_name+"\\" + project_Eng_name + ".exe",
|
||||||
"Debug\\"+project_Eng_name+"\\" + "MyDb.dll",
|
"Debug\\"+project_Eng_name+"\\" + "MyDb.dll",
|
||||||
"Debug\\"+project_Eng_name+"\\" + "MyDb_SQLite.dll",
|
"Debug\\"+project_Eng_name+"\\" + "MyDb_SQLite.dll",
|
||||||
"Debug\\"+project_Eng_name+"\\" + "ryUpdate.dll",
|
"Debug\\"+project_Eng_name+"\\" + "ryUpdate.dll",
|
||||||
"Debug\\"+project_Eng_name+"\\" + "ryControls.dll"
|
"Debug\\"+project_Eng_name+"\\" + "ryControls.dll"
|
||||||
};
|
};
|
||||||
xml.Save(full_path + "\\Bin\\混淆_Debug.nrproj", files_debug);
|
xml.Save(full_path + "\\Bin\\混淆_Debug.nrproj", files_debug);
|
||||||
}
|
}
|
||||||
if (!System.IO.File.Exists(full_path + "\\Bin\\混淆_Release.nrproj"))
|
if (!System.IO.File.Exists(full_path + "\\Bin\\混淆_Release.nrproj"))
|
||||||
{
|
{
|
||||||
List<string> files_Release = new List<string>
|
List<string> files_Release = new List<string>
|
||||||
{
|
{
|
||||||
"Release\\"+project_Eng_name+"\\" + project_Eng_name + ".exe",
|
"Release\\"+project_Eng_name+"\\" + project_Eng_name + ".exe",
|
||||||
"Release\\"+project_Eng_name+"\\" + "MyDb.dll",
|
"Release\\"+project_Eng_name+"\\" + "MyDb.dll",
|
||||||
"Release\\"+project_Eng_name+"\\" + "MyDb_SQLite.dll",
|
"Release\\"+project_Eng_name+"\\" + "MyDb_SQLite.dll",
|
||||||
"Release\\"+project_Eng_name+"\\" + "ryUpdate.dll",
|
"Release\\"+project_Eng_name+"\\" + "ryUpdate.dll",
|
||||||
"Release\\"+project_Eng_name+"\\" + "ryControls.dll"
|
"Release\\"+project_Eng_name+"\\" + "ryControls.dll"
|
||||||
};
|
};
|
||||||
xml.Save(full_path + "\\Bin\\混淆_Release.nrproj", files_Release);
|
xml.Save(full_path + "\\Bin\\混淆_Release.nrproj", files_Release);
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
#region 设置项目配置文件
|
#region 设置项目配置文件
|
||||||
if (!System.IO.File.Exists(full_path + "\\查看项目.ryp"))
|
ryCommon.Ini ini = new ryCommon.Ini(full_path + "\\查看项目.ryp");
|
||||||
{
|
ini.WriteIni("project", "name", project_name);//项目名称
|
||||||
ryCommon.Ini ini = new ryCommon.Ini(full_path + "\\查看项目.ryp");
|
ini.WriteIni("project", "engname", project_Eng_name);//英文项目名称
|
||||||
ini.WriteIni("project", "name", project_name);//项目名称
|
ini.WriteIni("project", "usqver", 2.1);//使用的标准版本,新毕方项目标准基于USQ 2.1
|
||||||
ini.WriteIni("project", "engname", project_Eng_name);//英文项目名称
|
ini.WriteIni("project", "proglang", prog_lang);//项目使用的语言
|
||||||
ini.WriteIni("project", "usqver", 2.1);//使用的标准版本,新毕方项目标准基于USQ 2.1
|
var guid = ini.ReadIni("project", "progID", Guid.NewGuid().ToString("D"));
|
||||||
ini.WriteIni("project", "proglang", prog_lang);//项目使用的语言
|
ini.WriteIni("project", "progID", guid);//项目唯一ID,用于区分不同项目
|
||||||
ini.WriteIni("project", "progID", Guid.NewGuid().ToString("D"));//项目唯一ID,用于区分不同项目
|
|
||||||
}
|
|
||||||
if (!System.IO.File.Exists(full_path + "\\.gitignore")) //复制git忽略规则
|
if (!System.IO.File.Exists(full_path + "\\.gitignore")) //复制git忽略规则
|
||||||
{
|
{
|
||||||
RyFiles.CopyFile(Application.StartupPath+ "\\SysDb\\.gitignore", full_path + "\\.gitignore");
|
RyFiles.CopyFile(Application.StartupPath+ "\\SysDb\\.gitignore", full_path + "\\.gitignore");
|
||||||
|
|
|
@ -239,95 +239,24 @@ namespace 开发辅助工具.Tools
|
||||||
th.Start();
|
th.Start();
|
||||||
void Start()
|
void Start()
|
||||||
{
|
{
|
||||||
var com_mode = "Debug";
|
RyProject project = new RyProject();
|
||||||
DataProvider mydb = new DataProvider();
|
project.OnStateChanged += Project_OnStateChanged;
|
||||||
IDbInterface db = Itrycn_Db.CreateDataProvider(Itrycn_Db.dataType);
|
project.Pack(GetBFFolderPath());
|
||||||
if (db.ConnDb(Itrycn_Db.User_SQLConn) == 1)
|
|
||||||
{
|
|
||||||
var ds = db.ReadData("select * from Settings where name='Setting'");
|
|
||||||
if (mydb.HaveData(ds))
|
|
||||||
{
|
|
||||||
var row = mydb.GetData(ds);
|
|
||||||
ryCommon.Storage mStor = new ryCommon.Storage(row["value"].ToString());
|
|
||||||
mStor.SelectNodeBySet();
|
|
||||||
var ReactorPath = mStor.GetAttrValue("ReactorPath");
|
|
||||||
var WinRARPath = mStor.GetAttrValue("WinRARPath");
|
|
||||||
if (WinRARPath == "")
|
|
||||||
{
|
|
||||||
if (System.IO.File.Exists(@"C:\Program Files\WinRAR\WinRAR.exe"))
|
|
||||||
{
|
|
||||||
WinRARPath = @"C:\Program Files\WinRAR\WinRAR.exe";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
var bf_folder = GetBFFolderPath();
|
|
||||||
if (bf_folder != "")
|
|
||||||
{
|
|
||||||
ryCommon.Ini ini = new Ini(bf_folder + "\\查看项目.ryp");
|
|
||||||
var eng_name = ini.ReadIni("project", "engname");
|
|
||||||
var proglang = ini.ReadIni("project", "proglang");
|
|
||||||
var ouput_folder = bf_folder + "\\Bin\\" + com_mode + "\\" + eng_name;
|
|
||||||
var file_ver = "";
|
|
||||||
if (System.IO.File.Exists(ouput_folder + "\\" + eng_name + ".exe"))
|
|
||||||
{
|
|
||||||
FileVersionInfo fileVerInfo = System.Diagnostics.FileVersionInfo.GetVersionInfo(ouput_folder + "\\" + eng_name + ".exe");
|
|
||||||
file_ver = fileVerInfo.ProductVersion;
|
|
||||||
}
|
|
||||||
if (proglang == "c#")
|
|
||||||
{
|
|
||||||
ShowState("正在进行混淆...");
|
|
||||||
if (System.IO.File.Exists(bf_folder + "\\Bin\\混淆_" + com_mode + ".nrproj"))
|
|
||||||
{
|
|
||||||
var cmd = Read_Prog(ReactorPath, "-project \"" + bf_folder + "\\Bin\\混淆_" + com_mode + ".nrproj\"");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
ShowState("正在清理不重要的缓存...");
|
|
||||||
ryCommon.RyFiles.DeleteFile(ouput_folder + "\\Secure\\*.pdb");
|
|
||||||
ShowState("复制混淆文件到底包目录...");
|
|
||||||
ryCommon.RyFiles.CopyFile(ouput_folder + "\\Secure\\*", bf_folder + "\\Publish\\OriginalFiles\\");
|
|
||||||
#region 复制自定义规则文件到底包目录
|
|
||||||
ShowState("复制自定义规则文件到底包目录...");
|
|
||||||
var Publish = ryCommon.RyFiles.ReadAllLines(bf_folder + "\\Publish\\Publish.set");
|
|
||||||
for (int m = 0; m < Publish.Length; m++)
|
|
||||||
{
|
|
||||||
var line = Publish[m].Trim();
|
|
||||||
if (line == "" || line.IndexOf("#") == 0) { continue; }
|
|
||||||
if (line.IndexOfEx("del:") == 0)
|
|
||||||
{
|
|
||||||
ryCommon.RyFiles.DeleteFile(bf_folder + "\\Publish\\OriginalFiles\\" + line.Substring(4));
|
|
||||||
}
|
|
||||||
else if (line.IndexOfEx("copy:") == 0)
|
|
||||||
{
|
|
||||||
var from_to = line.Substring(5).Replace("->", "|").Split('|');
|
|
||||||
if (from_to.Length == 2)
|
|
||||||
{
|
|
||||||
var from_path = from_to[0];
|
|
||||||
var to_path = from_to[1];
|
|
||||||
ryCommon.RyFiles.CopyFile(ouput_folder + "\\" + from_path, bf_folder + "\\Publish\\OriginalFiles\\" + to_path);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endregion
|
|
||||||
ShowState("正在打包...");
|
|
||||||
var cmd2 = Read_Prog(WinRARPath, "-r -ep1 a \"" + bf_folder + "\\Publish\\Green\\" + eng_name + ".zip\" \"" + bf_folder + "\\Publish\\OriginalFiles\\\"");
|
|
||||||
RyFiles.CopyFile(bf_folder + "\\Publish\\Green\\" + eng_name + ".zip", bf_folder + "\\Publish\\Green\\HistoryVer\\" + eng_name + "_" + file_ver + ".zip");
|
|
||||||
ShowState("打包完成...");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
db.Free();
|
|
||||||
void ShowState(string text)
|
|
||||||
{
|
|
||||||
this.Invoke(new Action(() =>
|
|
||||||
{
|
|
||||||
LblState.Text = "状态:" + text;
|
|
||||||
}));
|
|
||||||
}
|
|
||||||
this.Invoke(new Action(() =>
|
this.Invoke(new Action(() =>
|
||||||
{
|
{
|
||||||
BtnBatchZip.Enabled = true;
|
BtnBatchZip.Enabled = true;
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void Project_OnStateChanged(object sender, string e)
|
||||||
|
{
|
||||||
|
this.Invoke(new Action(() =>
|
||||||
|
{
|
||||||
|
LblState.Text = "状态:" + e;
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
|
||||||
private void GetVersBySln(string path)
|
private void GetVersBySln(string path)
|
||||||
{
|
{
|
||||||
RyProject project = new RyProject();
|
RyProject project = new RyProject();
|
||||||
|
|
523
Source/开发辅助工具/Tools/FrmProject.Designer.cs
generated
523
Source/开发辅助工具/Tools/FrmProject.Designer.cs
generated
|
@ -28,254 +28,278 @@
|
||||||
/// </summary>
|
/// </summary>
|
||||||
private void InitializeComponent()
|
private void InitializeComponent()
|
||||||
{
|
{
|
||||||
this.components = new System.ComponentModel.Container();
|
this.components = new System.ComponentModel.Container();
|
||||||
this.BtnCustomMessageBox = new ryControls.ButtonEx();
|
this.BtnCustomMessageBox = new ryControls.ButtonEx();
|
||||||
this.BtnCopyCMD = new System.Windows.Forms.Button();
|
this.BtnCopyCMD = new System.Windows.Forms.Button();
|
||||||
this.BtnOpenOutput = new System.Windows.Forms.Button();
|
this.BtnOpenOutput = new System.Windows.Forms.Button();
|
||||||
this.BtnMessageBox = new ryControls.ButtonEx();
|
this.BtnMessageBox = new ryControls.ButtonEx();
|
||||||
this.table1 = new XPTable.Models.Table();
|
this.table1 = new XPTable.Models.Table();
|
||||||
this.columnModel1 = new XPTable.Models.ColumnModel();
|
this.columnModel1 = new XPTable.Models.ColumnModel();
|
||||||
this.ColName = new XPTable.Models.TextColumn();
|
this.ColName = new XPTable.Models.TextColumn();
|
||||||
this.ColPath = new XPTable.Models.TextColumn();
|
this.ColPath = new XPTable.Models.TextColumn();
|
||||||
this.ColDes = new XPTable.Models.TextColumn();
|
this.ColDes = new XPTable.Models.TextColumn();
|
||||||
this.tableModel1 = new XPTable.Models.TableModel();
|
this.tableModel1 = new XPTable.Models.TableModel();
|
||||||
this.BtnClean = new ryControls.ButtonEx();
|
this.BtnClean = new ryControls.ButtonEx();
|
||||||
this.BtnBatchZip = new ryControls.ButtonEx();
|
this.BtnBatchZip = new ryControls.ButtonEx();
|
||||||
this.LblState = new System.Windows.Forms.Label();
|
this.LblState = new System.Windows.Forms.Label();
|
||||||
this.BtnInsertUpdate = new ryControls.ButtonEx();
|
this.BtnInsertUpdate = new ryControls.ButtonEx();
|
||||||
this.BtnUpdateDll = new ryControls.ButtonEx();
|
this.BtnUpdateDll = new ryControls.ButtonEx();
|
||||||
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
|
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
|
||||||
this.BtnUpdateVer = new ryControls.ButtonEx();
|
this.BtnUpdateVer = new ryControls.ButtonEx();
|
||||||
this.BtnUpdateDllVer = new ryControls.ButtonEx();
|
this.BtnUpdateDllVer = new ryControls.ButtonEx();
|
||||||
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
||||||
this.groupBox2 = new System.Windows.Forms.GroupBox();
|
this.groupBox2 = new System.Windows.Forms.GroupBox();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
|
this.BtnRepairFolder = new ryControls.ButtonEx();
|
||||||
this.groupBox1.SuspendLayout();
|
((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
|
||||||
this.groupBox2.SuspendLayout();
|
this.groupBox1.SuspendLayout();
|
||||||
this.SuspendLayout();
|
this.groupBox2.SuspendLayout();
|
||||||
//
|
this.SuspendLayout();
|
||||||
// BtnCustomMessageBox
|
//
|
||||||
//
|
// BtnCustomMessageBox
|
||||||
this.BtnCustomMessageBox.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(76)))), ((int)(((byte)(95)))));
|
//
|
||||||
this.BtnCustomMessageBox.Location = new System.Drawing.Point(111, 19);
|
this.BtnCustomMessageBox.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(76)))), ((int)(((byte)(95)))));
|
||||||
this.BtnCustomMessageBox.Name = "BtnCustomMessageBox";
|
this.BtnCustomMessageBox.Location = new System.Drawing.Point(111, 19);
|
||||||
this.BtnCustomMessageBox.Size = new System.Drawing.Size(99, 34);
|
this.BtnCustomMessageBox.Name = "BtnCustomMessageBox";
|
||||||
this.BtnCustomMessageBox.TabIndex = 12;
|
this.BtnCustomMessageBox.Size = new System.Drawing.Size(99, 34);
|
||||||
this.BtnCustomMessageBox.Text = "自定义对话框";
|
this.BtnCustomMessageBox.TabIndex = 12;
|
||||||
this.BtnCustomMessageBox.UseVisualStyleBackColor = true;
|
this.BtnCustomMessageBox.Text = "自定义对话框";
|
||||||
this.BtnCustomMessageBox.Click += new System.EventHandler(this.BtnCustomMessageBox_Click);
|
this.BtnCustomMessageBox.UseVisualStyleBackColor = true;
|
||||||
//
|
this.BtnCustomMessageBox.Click += new System.EventHandler(this.BtnCustomMessageBox_Click);
|
||||||
// BtnCopyCMD
|
//
|
||||||
//
|
// BtnCopyCMD
|
||||||
this.BtnCopyCMD.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
//
|
||||||
this.BtnCopyCMD.Location = new System.Drawing.Point(775, 12);
|
this.BtnCopyCMD.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||||
this.BtnCopyCMD.Name = "BtnCopyCMD";
|
this.BtnCopyCMD.Location = new System.Drawing.Point(775, 12);
|
||||||
this.BtnCopyCMD.Size = new System.Drawing.Size(142, 38);
|
this.BtnCopyCMD.Name = "BtnCopyCMD";
|
||||||
this.BtnCopyCMD.TabIndex = 11;
|
this.BtnCopyCMD.Size = new System.Drawing.Size(142, 38);
|
||||||
this.BtnCopyCMD.Text = "设置自动更新版本号";
|
this.BtnCopyCMD.TabIndex = 11;
|
||||||
this.BtnCopyCMD.UseVisualStyleBackColor = true;
|
this.BtnCopyCMD.Text = "设置自动更新版本号";
|
||||||
this.BtnCopyCMD.Click += new System.EventHandler(this.BtnCopyCMD_Click);
|
this.BtnCopyCMD.UseVisualStyleBackColor = true;
|
||||||
//
|
this.BtnCopyCMD.Click += new System.EventHandler(this.BtnCopyCMD_Click);
|
||||||
// BtnOpenOutput
|
//
|
||||||
//
|
// BtnOpenOutput
|
||||||
this.BtnOpenOutput.Location = new System.Drawing.Point(12, 12);
|
//
|
||||||
this.BtnOpenOutput.Name = "BtnOpenOutput";
|
this.BtnOpenOutput.Location = new System.Drawing.Point(12, 12);
|
||||||
this.BtnOpenOutput.Size = new System.Drawing.Size(142, 38);
|
this.BtnOpenOutput.Name = "BtnOpenOutput";
|
||||||
this.BtnOpenOutput.TabIndex = 9;
|
this.BtnOpenOutput.Size = new System.Drawing.Size(142, 38);
|
||||||
this.BtnOpenOutput.Text = "打开输出文件夹";
|
this.BtnOpenOutput.TabIndex = 9;
|
||||||
this.BtnOpenOutput.UseVisualStyleBackColor = true;
|
this.BtnOpenOutput.Text = "打开输出文件夹";
|
||||||
this.BtnOpenOutput.Click += new System.EventHandler(this.BtnOpenOutput_Click);
|
this.BtnOpenOutput.UseVisualStyleBackColor = true;
|
||||||
//
|
this.BtnOpenOutput.Click += new System.EventHandler(this.BtnOpenOutput_Click);
|
||||||
// BtnMessageBox
|
//
|
||||||
//
|
// BtnMessageBox
|
||||||
this.BtnMessageBox.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(76)))), ((int)(((byte)(95)))));
|
//
|
||||||
this.BtnMessageBox.Location = new System.Drawing.Point(6, 19);
|
this.BtnMessageBox.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(76)))), ((int)(((byte)(95)))));
|
||||||
this.BtnMessageBox.Name = "BtnMessageBox";
|
this.BtnMessageBox.Location = new System.Drawing.Point(6, 19);
|
||||||
this.BtnMessageBox.Size = new System.Drawing.Size(99, 34);
|
this.BtnMessageBox.Name = "BtnMessageBox";
|
||||||
this.BtnMessageBox.TabIndex = 8;
|
this.BtnMessageBox.Size = new System.Drawing.Size(99, 34);
|
||||||
this.BtnMessageBox.Text = "对话框代码";
|
this.BtnMessageBox.TabIndex = 8;
|
||||||
this.BtnMessageBox.UseVisualStyleBackColor = true;
|
this.BtnMessageBox.Text = "对话框代码";
|
||||||
this.BtnMessageBox.Click += new System.EventHandler(this.BtnMessageBox_Click);
|
this.BtnMessageBox.UseVisualStyleBackColor = true;
|
||||||
//
|
this.BtnMessageBox.Click += new System.EventHandler(this.BtnMessageBox_Click);
|
||||||
// table1
|
//
|
||||||
//
|
// table1
|
||||||
this.table1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
//
|
||||||
| System.Windows.Forms.AnchorStyles.Left)
|
this.table1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||||||
| System.Windows.Forms.AnchorStyles.Right)));
|
| System.Windows.Forms.AnchorStyles.Left)
|
||||||
this.table1.ColumnModel = this.columnModel1;
|
| System.Windows.Forms.AnchorStyles.Right)));
|
||||||
this.table1.EnableToolTips = true;
|
this.table1.ColumnModel = this.columnModel1;
|
||||||
this.table1.FullRowSelect = true;
|
this.table1.EnableToolTips = true;
|
||||||
this.table1.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
|
this.table1.FullRowSelect = true;
|
||||||
this.table1.Location = new System.Drawing.Point(12, 208);
|
this.table1.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
|
||||||
this.table1.Name = "table1";
|
this.table1.Location = new System.Drawing.Point(12, 208);
|
||||||
this.table1.NoItemsText = "当前列表没有任何项";
|
this.table1.Name = "table1";
|
||||||
this.table1.Size = new System.Drawing.Size(905, 296);
|
this.table1.NoItemsText = "当前列表没有任何项";
|
||||||
this.table1.TabIndex = 20;
|
this.table1.Size = new System.Drawing.Size(905, 296);
|
||||||
this.table1.TableModel = this.tableModel1;
|
this.table1.TabIndex = 20;
|
||||||
this.table1.Text = "table1";
|
this.table1.TableModel = this.tableModel1;
|
||||||
this.table1.DoubleClick += new System.EventHandler(this.table1_DoubleClick);
|
this.table1.Text = "table1";
|
||||||
//
|
this.table1.DoubleClick += new System.EventHandler(this.table1_DoubleClick);
|
||||||
// columnModel1
|
//
|
||||||
//
|
// columnModel1
|
||||||
this.columnModel1.Columns.AddRange(new XPTable.Models.Column[] {
|
//
|
||||||
this.ColName,
|
this.columnModel1.Columns.AddRange(new XPTable.Models.Column[] {
|
||||||
this.ColPath,
|
this.ColName,
|
||||||
this.ColDes});
|
this.ColPath,
|
||||||
//
|
this.ColDes});
|
||||||
// ColName
|
//
|
||||||
//
|
// ColName
|
||||||
this.ColName.Editable = false;
|
//
|
||||||
this.ColName.Tag = null;
|
this.ColName.Editable = false;
|
||||||
this.ColName.Text = "名称";
|
this.ColName.Tag = null;
|
||||||
this.ColName.Width = 150;
|
this.ColName.Text = "名称";
|
||||||
//
|
this.ColName.Width = 150;
|
||||||
// ColPath
|
//
|
||||||
//
|
// ColPath
|
||||||
this.ColPath.Editable = false;
|
//
|
||||||
this.ColPath.Tag = null;
|
this.ColPath.Editable = false;
|
||||||
this.ColPath.Text = "路径";
|
this.ColPath.Tag = null;
|
||||||
this.ColPath.Width = 200;
|
this.ColPath.Text = "路径";
|
||||||
//
|
this.ColPath.Width = 200;
|
||||||
// ColDes
|
//
|
||||||
//
|
// ColDes
|
||||||
this.ColDes.Editable = false;
|
//
|
||||||
this.ColDes.Tag = null;
|
this.ColDes.Editable = false;
|
||||||
this.ColDes.Text = "备注";
|
this.ColDes.Tag = null;
|
||||||
this.ColDes.Width = 400;
|
this.ColDes.Text = "备注";
|
||||||
//
|
this.ColDes.Width = 400;
|
||||||
// BtnClean
|
//
|
||||||
//
|
// BtnClean
|
||||||
this.BtnClean.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(76)))), ((int)(((byte)(95)))));
|
//
|
||||||
this.BtnClean.Location = new System.Drawing.Point(216, 20);
|
this.BtnClean.BaseColor = System.Drawing.Color.Green;
|
||||||
this.BtnClean.Name = "BtnClean";
|
this.BtnClean.ColorGradient = true;
|
||||||
this.BtnClean.Size = new System.Drawing.Size(99, 34);
|
this.BtnClean.Location = new System.Drawing.Point(216, 20);
|
||||||
this.BtnClean.TabIndex = 22;
|
this.BtnClean.Name = "BtnClean";
|
||||||
this.BtnClean.Text = "清理垃圾";
|
this.BtnClean.Size = new System.Drawing.Size(99, 34);
|
||||||
this.toolTip1.SetToolTip(this.BtnClean, "清理debug目录下的pdb、dcu文件");
|
this.BtnClean.TabIndex = 22;
|
||||||
this.BtnClean.UseVisualStyleBackColor = true;
|
this.BtnClean.Text = "清理垃圾";
|
||||||
this.BtnClean.Click += new System.EventHandler(this.BtnClean_Click);
|
this.toolTip1.SetToolTip(this.BtnClean, "清理debug目录下的pdb、dcu文件");
|
||||||
//
|
this.BtnClean.UseDefSkin = false;
|
||||||
// BtnBatchZip
|
this.BtnClean.UseVisualStyleBackColor = true;
|
||||||
//
|
this.BtnClean.Click += new System.EventHandler(this.BtnClean_Click);
|
||||||
this.BtnBatchZip.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(76)))), ((int)(((byte)(95)))));
|
//
|
||||||
this.BtnBatchZip.Location = new System.Drawing.Point(531, 20);
|
// BtnBatchZip
|
||||||
this.BtnBatchZip.Name = "BtnBatchZip";
|
//
|
||||||
this.BtnBatchZip.Size = new System.Drawing.Size(99, 34);
|
this.BtnBatchZip.BaseColor = System.Drawing.Color.Navy;
|
||||||
this.BtnBatchZip.TabIndex = 23;
|
this.BtnBatchZip.ColorGradient = true;
|
||||||
this.BtnBatchZip.Text = "一键打包";
|
this.BtnBatchZip.Location = new System.Drawing.Point(648, 20);
|
||||||
this.toolTip1.SetToolTip(this.BtnBatchZip, "一键混淆并打包当前项目生成的文件。");
|
this.BtnBatchZip.Name = "BtnBatchZip";
|
||||||
this.BtnBatchZip.UseVisualStyleBackColor = true;
|
this.BtnBatchZip.Size = new System.Drawing.Size(99, 34);
|
||||||
this.BtnBatchZip.Click += new System.EventHandler(this.BtnBatchZip_Click);
|
this.BtnBatchZip.TabIndex = 23;
|
||||||
//
|
this.BtnBatchZip.Text = "一键打包";
|
||||||
// LblState
|
this.toolTip1.SetToolTip(this.BtnBatchZip, "一键混淆并打包当前项目生成的文件。");
|
||||||
//
|
this.BtnBatchZip.UseDefSkin = false;
|
||||||
this.LblState.AutoSize = true;
|
this.BtnBatchZip.UseVisualStyleBackColor = true;
|
||||||
this.LblState.Location = new System.Drawing.Point(10, 190);
|
this.BtnBatchZip.Click += new System.EventHandler(this.BtnBatchZip_Click);
|
||||||
this.LblState.Name = "LblState";
|
//
|
||||||
this.LblState.Size = new System.Drawing.Size(83, 12);
|
// LblState
|
||||||
this.LblState.TabIndex = 24;
|
//
|
||||||
this.LblState.Text = "状态:准备就绪";
|
this.LblState.AutoSize = true;
|
||||||
//
|
this.LblState.Location = new System.Drawing.Point(10, 190);
|
||||||
// BtnInsertUpdate
|
this.LblState.Name = "LblState";
|
||||||
//
|
this.LblState.Size = new System.Drawing.Size(83, 12);
|
||||||
this.BtnInsertUpdate.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(76)))), ((int)(((byte)(95)))));
|
this.LblState.TabIndex = 24;
|
||||||
this.BtnInsertUpdate.Location = new System.Drawing.Point(321, 20);
|
this.LblState.Text = "状态:准备就绪";
|
||||||
this.BtnInsertUpdate.Name = "BtnInsertUpdate";
|
//
|
||||||
this.BtnInsertUpdate.Size = new System.Drawing.Size(99, 34);
|
// BtnInsertUpdate
|
||||||
this.BtnInsertUpdate.TabIndex = 25;
|
//
|
||||||
this.BtnInsertUpdate.Text = "插入更新日志";
|
this.BtnInsertUpdate.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(76)))), ((int)(((byte)(95)))));
|
||||||
this.toolTip1.SetToolTip(this.BtnInsertUpdate, "将当前版本加入更新日志");
|
this.BtnInsertUpdate.Location = new System.Drawing.Point(321, 20);
|
||||||
this.BtnInsertUpdate.UseVisualStyleBackColor = true;
|
this.BtnInsertUpdate.Name = "BtnInsertUpdate";
|
||||||
this.BtnInsertUpdate.Click += new System.EventHandler(this.BtnInsertUpdate_Click);
|
this.BtnInsertUpdate.Size = new System.Drawing.Size(99, 34);
|
||||||
//
|
this.BtnInsertUpdate.TabIndex = 25;
|
||||||
// BtnUpdateDll
|
this.BtnInsertUpdate.Text = "插入更新日志";
|
||||||
//
|
this.toolTip1.SetToolTip(this.BtnInsertUpdate, "将当前版本加入更新日志");
|
||||||
this.BtnUpdateDll.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(76)))), ((int)(((byte)(95)))));
|
this.BtnInsertUpdate.UseVisualStyleBackColor = true;
|
||||||
this.BtnUpdateDll.Location = new System.Drawing.Point(6, 20);
|
this.BtnInsertUpdate.Click += new System.EventHandler(this.BtnInsertUpdate_Click);
|
||||||
this.BtnUpdateDll.Name = "BtnUpdateDll";
|
//
|
||||||
this.BtnUpdateDll.Size = new System.Drawing.Size(99, 34);
|
// BtnUpdateDll
|
||||||
this.BtnUpdateDll.TabIndex = 26;
|
//
|
||||||
this.BtnUpdateDll.Text = "更新引用dll";
|
this.BtnUpdateDll.BaseColor = System.Drawing.Color.Green;
|
||||||
this.toolTip1.SetToolTip(this.BtnUpdateDll, "将当前输出文件夹里的dll文件更新到最新版\r\n将当前项目文件里的引用dll位置修改至输出目录。");
|
this.BtnUpdateDll.ColorGradient = true;
|
||||||
this.BtnUpdateDll.UseVisualStyleBackColor = true;
|
this.BtnUpdateDll.Location = new System.Drawing.Point(6, 20);
|
||||||
this.BtnUpdateDll.Click += new System.EventHandler(this.BtnUpdateDll_Click);
|
this.BtnUpdateDll.Name = "BtnUpdateDll";
|
||||||
//
|
this.BtnUpdateDll.Size = new System.Drawing.Size(99, 34);
|
||||||
// BtnUpdateVer
|
this.BtnUpdateDll.TabIndex = 26;
|
||||||
//
|
this.BtnUpdateDll.Text = "更新引用dll";
|
||||||
this.BtnUpdateVer.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(76)))), ((int)(((byte)(95)))));
|
this.toolTip1.SetToolTip(this.BtnUpdateDll, "将当前输出文件夹里的dll文件更新到最新版\r\n将当前项目文件里的引用dll位置修改至输出目录。");
|
||||||
this.BtnUpdateVer.Location = new System.Drawing.Point(426, 20);
|
this.BtnUpdateDll.UseDefSkin = false;
|
||||||
this.BtnUpdateVer.Name = "BtnUpdateVer";
|
this.BtnUpdateDll.UseVisualStyleBackColor = true;
|
||||||
this.BtnUpdateVer.Size = new System.Drawing.Size(99, 34);
|
this.BtnUpdateDll.Click += new System.EventHandler(this.BtnUpdateDll_Click);
|
||||||
this.BtnUpdateVer.TabIndex = 27;
|
//
|
||||||
this.BtnUpdateVer.Text = "更新版本号";
|
// BtnUpdateVer
|
||||||
this.toolTip1.SetToolTip(this.BtnUpdateVer, "每点一次自动更新一下版本号。");
|
//
|
||||||
this.BtnUpdateVer.UseVisualStyleBackColor = true;
|
this.BtnUpdateVer.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
|
||||||
this.BtnUpdateVer.Click += new System.EventHandler(this.BtnUpdateVer_Click);
|
this.BtnUpdateVer.ColorGradient = true;
|
||||||
//
|
this.BtnUpdateVer.Location = new System.Drawing.Point(426, 20);
|
||||||
// BtnUpdateDllVer
|
this.BtnUpdateVer.Name = "BtnUpdateVer";
|
||||||
//
|
this.BtnUpdateVer.Size = new System.Drawing.Size(99, 34);
|
||||||
this.BtnUpdateDllVer.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(76)))), ((int)(((byte)(95)))));
|
this.BtnUpdateVer.TabIndex = 27;
|
||||||
this.BtnUpdateDllVer.Location = new System.Drawing.Point(111, 20);
|
this.BtnUpdateVer.Text = "更新版本号";
|
||||||
this.BtnUpdateDllVer.Name = "BtnUpdateDllVer";
|
this.toolTip1.SetToolTip(this.BtnUpdateVer, "每点一次自动更新一下版本号。");
|
||||||
this.BtnUpdateDllVer.Size = new System.Drawing.Size(99, 34);
|
this.BtnUpdateVer.UseDefSkin = false;
|
||||||
this.BtnUpdateDllVer.TabIndex = 29;
|
this.BtnUpdateVer.UseVisualStyleBackColor = true;
|
||||||
this.BtnUpdateDllVer.Text = "更新dll版本";
|
this.BtnUpdateVer.Click += new System.EventHandler(this.BtnUpdateVer_Click);
|
||||||
this.toolTip1.SetToolTip(this.BtnUpdateDllVer, "将当前输出文件夹里的dll文件更新到最新版");
|
//
|
||||||
this.BtnUpdateDllVer.UseVisualStyleBackColor = true;
|
// BtnUpdateDllVer
|
||||||
this.BtnUpdateDllVer.Click += new System.EventHandler(this.BtnUpdateDllVer_Click);
|
//
|
||||||
//
|
this.BtnUpdateDllVer.BaseColor = System.Drawing.Color.Green;
|
||||||
// groupBox1
|
this.BtnUpdateDllVer.ColorGradient = true;
|
||||||
//
|
this.BtnUpdateDllVer.Location = new System.Drawing.Point(111, 20);
|
||||||
this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
this.BtnUpdateDllVer.Name = "BtnUpdateDllVer";
|
||||||
| System.Windows.Forms.AnchorStyles.Right)));
|
this.BtnUpdateDllVer.Size = new System.Drawing.Size(99, 34);
|
||||||
this.groupBox1.Controls.Add(this.BtnUpdateDllVer);
|
this.BtnUpdateDllVer.TabIndex = 29;
|
||||||
this.groupBox1.Controls.Add(this.BtnUpdateVer);
|
this.BtnUpdateDllVer.Text = "更新dll版本";
|
||||||
this.groupBox1.Controls.Add(this.BtnUpdateDll);
|
this.toolTip1.SetToolTip(this.BtnUpdateDllVer, "将当前输出文件夹里的dll文件更新到最新版");
|
||||||
this.groupBox1.Controls.Add(this.BtnInsertUpdate);
|
this.BtnUpdateDllVer.UseDefSkin = false;
|
||||||
this.groupBox1.Controls.Add(this.BtnBatchZip);
|
this.BtnUpdateDllVer.UseVisualStyleBackColor = true;
|
||||||
this.groupBox1.Controls.Add(this.BtnClean);
|
this.BtnUpdateDllVer.Click += new System.EventHandler(this.BtnUpdateDllVer_Click);
|
||||||
this.groupBox1.Location = new System.Drawing.Point(12, 120);
|
//
|
||||||
this.groupBox1.Name = "groupBox1";
|
// groupBox1
|
||||||
this.groupBox1.Size = new System.Drawing.Size(905, 62);
|
//
|
||||||
this.groupBox1.TabIndex = 27;
|
this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||||||
this.groupBox1.TabStop = false;
|
| System.Windows.Forms.AnchorStyles.Right)));
|
||||||
this.groupBox1.Text = "项目管理";
|
this.groupBox1.Controls.Add(this.BtnRepairFolder);
|
||||||
//
|
this.groupBox1.Controls.Add(this.BtnUpdateDllVer);
|
||||||
// groupBox2
|
this.groupBox1.Controls.Add(this.BtnUpdateVer);
|
||||||
//
|
this.groupBox1.Controls.Add(this.BtnUpdateDll);
|
||||||
this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
this.groupBox1.Controls.Add(this.BtnInsertUpdate);
|
||||||
| System.Windows.Forms.AnchorStyles.Right)));
|
this.groupBox1.Controls.Add(this.BtnBatchZip);
|
||||||
this.groupBox2.Controls.Add(this.BtnMessageBox);
|
this.groupBox1.Controls.Add(this.BtnClean);
|
||||||
this.groupBox2.Controls.Add(this.BtnCustomMessageBox);
|
this.groupBox1.Location = new System.Drawing.Point(12, 120);
|
||||||
this.groupBox2.Location = new System.Drawing.Point(12, 56);
|
this.groupBox1.Name = "groupBox1";
|
||||||
this.groupBox2.Name = "groupBox2";
|
this.groupBox1.Size = new System.Drawing.Size(905, 62);
|
||||||
this.groupBox2.Size = new System.Drawing.Size(905, 60);
|
this.groupBox1.TabIndex = 27;
|
||||||
this.groupBox2.TabIndex = 28;
|
this.groupBox1.TabStop = false;
|
||||||
this.groupBox2.TabStop = false;
|
this.groupBox1.Text = "项目管理";
|
||||||
this.groupBox2.Text = "快速代码";
|
//
|
||||||
//
|
// groupBox2
|
||||||
// FrmProject
|
//
|
||||||
//
|
this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
| System.Windows.Forms.AnchorStyles.Right)));
|
||||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
this.groupBox2.Controls.Add(this.BtnMessageBox);
|
||||||
this.ClientSize = new System.Drawing.Size(929, 516);
|
this.groupBox2.Controls.Add(this.BtnCustomMessageBox);
|
||||||
this.CloseButton = false;
|
this.groupBox2.Location = new System.Drawing.Point(12, 56);
|
||||||
this.CloseButtonVisible = false;
|
this.groupBox2.Name = "groupBox2";
|
||||||
this.Controls.Add(this.groupBox2);
|
this.groupBox2.Size = new System.Drawing.Size(905, 60);
|
||||||
this.Controls.Add(this.groupBox1);
|
this.groupBox2.TabIndex = 28;
|
||||||
this.Controls.Add(this.LblState);
|
this.groupBox2.TabStop = false;
|
||||||
this.Controls.Add(this.table1);
|
this.groupBox2.Text = "快速代码";
|
||||||
this.Controls.Add(this.BtnCopyCMD);
|
//
|
||||||
this.Controls.Add(this.BtnOpenOutput);
|
// BtnRepairFolder
|
||||||
this.Name = "FrmProject";
|
//
|
||||||
this.Text = "项目";
|
this.BtnRepairFolder.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(76)))), ((int)(((byte)(95)))));
|
||||||
this.Load += new System.EventHandler(this.FrmProject_Load);
|
this.BtnRepairFolder.Location = new System.Drawing.Point(531, 20);
|
||||||
((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
|
this.BtnRepairFolder.Name = "BtnRepairFolder";
|
||||||
this.groupBox1.ResumeLayout(false);
|
this.BtnRepairFolder.Size = new System.Drawing.Size(111, 34);
|
||||||
this.groupBox2.ResumeLayout(false);
|
this.BtnRepairFolder.TabIndex = 30;
|
||||||
this.ResumeLayout(false);
|
this.BtnRepairFolder.Text = "修复毕方文件结构";
|
||||||
this.PerformLayout();
|
this.toolTip1.SetToolTip(this.BtnRepairFolder, "将当前毕方项目中缺失的一些文件和文件夹进行重新创建。");
|
||||||
|
this.BtnRepairFolder.UseVisualStyleBackColor = true;
|
||||||
|
this.BtnRepairFolder.Click += new System.EventHandler(this.BtnRepairFolder_Click);
|
||||||
|
//
|
||||||
|
// FrmProject
|
||||||
|
//
|
||||||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
||||||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||||
|
this.ClientSize = new System.Drawing.Size(929, 516);
|
||||||
|
this.CloseButton = false;
|
||||||
|
this.CloseButtonVisible = false;
|
||||||
|
this.Controls.Add(this.groupBox2);
|
||||||
|
this.Controls.Add(this.groupBox1);
|
||||||
|
this.Controls.Add(this.LblState);
|
||||||
|
this.Controls.Add(this.table1);
|
||||||
|
this.Controls.Add(this.BtnCopyCMD);
|
||||||
|
this.Controls.Add(this.BtnOpenOutput);
|
||||||
|
this.Name = "FrmProject";
|
||||||
|
this.Text = "项目";
|
||||||
|
this.Load += new System.EventHandler(this.FrmProject_Load);
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
|
||||||
|
this.groupBox1.ResumeLayout(false);
|
||||||
|
this.groupBox2.ResumeLayout(false);
|
||||||
|
this.ResumeLayout(false);
|
||||||
|
this.PerformLayout();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
@ -299,6 +323,7 @@
|
||||||
private System.Windows.Forms.GroupBox groupBox1;
|
private System.Windows.Forms.GroupBox groupBox1;
|
||||||
private ryControls.ButtonEx BtnUpdateVer;
|
private ryControls.ButtonEx BtnUpdateVer;
|
||||||
private System.Windows.Forms.GroupBox groupBox2;
|
private System.Windows.Forms.GroupBox groupBox2;
|
||||||
private ryControls.ButtonEx BtnUpdateDllVer;
|
private ryControls.ButtonEx BtnUpdateDllVer;
|
||||||
|
private ryControls.ButtonEx BtnRepairFolder;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -149,7 +149,8 @@ namespace 开发辅助工具.Tools
|
||||||
}
|
}
|
||||||
private string GetDebugPath()
|
private string GetDebugPath()
|
||||||
{
|
{
|
||||||
if (_ProjectPath == "") { return ""; }
|
if (_ProjectPath.Length==0) { return ""; }
|
||||||
|
if (!System.IO.File.Exists(_ProjectPath)) { return ""; }
|
||||||
System.Xml.XmlDocument xml = new System.Xml.XmlDocument();
|
System.Xml.XmlDocument xml = new System.Xml.XmlDocument();
|
||||||
xml.Load(_ProjectPath);
|
xml.Load(_ProjectPath);
|
||||||
var xmlnsm = new XmlNamespaceManager(xml.NameTable);
|
var xmlnsm = new XmlNamespaceManager(xml.NameTable);
|
||||||
|
@ -359,96 +360,22 @@ namespace 开发辅助工具.Tools
|
||||||
th.Start();
|
th.Start();
|
||||||
void Start()
|
void Start()
|
||||||
{
|
{
|
||||||
var com_mode = "Debug";
|
RyProject project = new RyProject();
|
||||||
DataProvider mydb = new DataProvider();
|
project.OnStateChanged += Project_OnStateChanged;
|
||||||
IDbInterface db = Itrycn_Db.CreateDataProvider(Itrycn_Db.dataType);
|
project.Pack(GetBFFolderPath());
|
||||||
if (db.ConnDb(Itrycn_Db.User_SQLConn) == 1)
|
|
||||||
{
|
|
||||||
var ds = db.ReadData("select * from Settings where name='Setting'");
|
|
||||||
if (mydb.HaveData(ds))
|
|
||||||
{
|
|
||||||
var row = mydb.GetData(ds);
|
|
||||||
ryCommon.Storage mStor = new ryCommon.Storage(row["value"].ToString());
|
|
||||||
mStor.SelectNodeBySet();
|
|
||||||
var ReactorPath = mStor.GetAttrValue("ReactorPath");
|
|
||||||
var WinRARPath = mStor.GetAttrValue("WinRARPath");
|
|
||||||
if (WinRARPath == "")
|
|
||||||
{
|
|
||||||
if (System.IO.File.Exists(@"C:\Program Files\WinRAR\WinRAR.exe"))
|
|
||||||
{
|
|
||||||
WinRARPath = @"C:\Program Files\WinRAR\WinRAR.exe";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
var bf_folder = GetBFFolderPath();
|
|
||||||
if (bf_folder != "")
|
|
||||||
{
|
|
||||||
ryCommon.Ini ini = new Ini(bf_folder+ "\\查看项目.ryp");
|
|
||||||
var eng_name = ini.ReadIni("project", "engname");
|
|
||||||
var proglang= ini.ReadIni("project", "proglang");
|
|
||||||
var ouput_folder = bf_folder + "\\Bin\\" + com_mode + "\\" + eng_name;
|
|
||||||
var file_ver = "";
|
|
||||||
if (System.IO.File.Exists(ouput_folder + "\\" + eng_name + ".exe"))
|
|
||||||
{
|
|
||||||
FileVersionInfo fileVerInfo = System.Diagnostics.FileVersionInfo.GetVersionInfo(ouput_folder + "\\" + eng_name + ".exe");
|
|
||||||
file_ver = fileVerInfo.ProductVersion;
|
|
||||||
}
|
|
||||||
if (proglang == "c#")
|
|
||||||
{
|
|
||||||
ShowState("正在进行混淆...");
|
|
||||||
if (System.IO.File.Exists(bf_folder + "\\Bin\\混淆_" + com_mode + ".nrproj"))
|
|
||||||
{
|
|
||||||
var cmd = Read_Prog(ReactorPath, "-project \"" + bf_folder + "\\Bin\\混淆_" + com_mode + ".nrproj\"");
|
|
||||||
MessageBox.Show(cmd, "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
ShowState("正在清理不重要的缓存...");
|
|
||||||
ryCommon.RyFiles.DeleteFile(ouput_folder + "\\Secure\\*.pdb");
|
|
||||||
ShowState("复制混淆文件到底包目录...");
|
|
||||||
ryCommon.RyFiles.CopyFile(ouput_folder + "\\Secure\\*", bf_folder + "\\Publish\\OriginalFiles\\");
|
|
||||||
#region 复制自定义规则文件到底包目录
|
|
||||||
ShowState("复制自定义规则文件到底包目录...");
|
|
||||||
var Publish = ryCommon.RyFiles.ReadAllLines(bf_folder + "\\Publish\\Publish.set");
|
|
||||||
for (int m = 0; m < Publish.Length; m++)
|
|
||||||
{
|
|
||||||
var line = Publish[m].Trim();
|
|
||||||
if (line == "" || line.IndexOf("#") == 0) { continue; }
|
|
||||||
if (line.IndexOfEx("del:") == 0)
|
|
||||||
{
|
|
||||||
ryCommon.RyFiles.DeleteFile(bf_folder + "\\Publish\\OriginalFiles\\" + line.Substring(4));
|
|
||||||
}
|
|
||||||
else if (line.IndexOfEx("copy:") == 0)
|
|
||||||
{
|
|
||||||
var from_to = line.Substring(5).Replace("->", "|").Split('|');
|
|
||||||
if (from_to.Length == 2)
|
|
||||||
{
|
|
||||||
var from_path = from_to[0];
|
|
||||||
var to_path = from_to[1];
|
|
||||||
ryCommon.RyFiles.CopyFile(ouput_folder + "\\"+ from_path, bf_folder + "\\Publish\\OriginalFiles\\" + to_path);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endregion
|
|
||||||
ShowState("正在打包...");
|
|
||||||
var cmd2 = Read_Prog(WinRARPath, "-r -ep1 a \""+ bf_folder + "\\Publish\\Green\\"+ eng_name + ".zip\" \""+ bf_folder + "\\Publish\\OriginalFiles\\\"");
|
|
||||||
RyFiles.CopyFile(bf_folder + "\\Publish\\Green\\" + eng_name + ".zip", bf_folder + "\\Publish\\Green\\HistoryVer\\" + eng_name + "_"+file_ver+".zip");
|
|
||||||
ShowState("打包完成...");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
db.Free();
|
|
||||||
void ShowState(string text)
|
|
||||||
{
|
|
||||||
this.Invoke(new Action(() =>
|
|
||||||
{
|
|
||||||
LblState.Text = "状态:" + text;
|
|
||||||
}));
|
|
||||||
}
|
|
||||||
this.Invoke(new Action(() =>
|
this.Invoke(new Action(() =>
|
||||||
{
|
{
|
||||||
BtnBatchZip.Enabled = true;
|
BtnBatchZip.Enabled = true;
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
private void Project_OnStateChanged(object sender, string e)
|
||||||
|
{
|
||||||
|
this.Invoke(new Action(() =>
|
||||||
|
{
|
||||||
|
LblState.Text = "状态:" + e;
|
||||||
|
}));
|
||||||
|
}
|
||||||
private void GetVersBySln(string path)
|
private void GetVersBySln(string path)
|
||||||
{
|
{
|
||||||
var _bf_path = GetBFFolderPath();
|
var _bf_path = GetBFFolderPath();
|
||||||
|
@ -491,7 +418,7 @@ namespace 开发辅助工具.Tools
|
||||||
private void BtnInsertUpdate_Click(object sender, EventArgs e)
|
private void BtnInsertUpdate_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
var _path = GetBFFolderPath();
|
var _path = GetBFFolderPath();
|
||||||
if (_path != "")
|
if (_path.Length>0)
|
||||||
{
|
{
|
||||||
var files = System.IO.Directory.GetFiles(_path+"\\Source");
|
var files = System.IO.Directory.GetFiles(_path+"\\Source");
|
||||||
for (int i = 0; i < files.Length; i++)
|
for (int i = 0; i < files.Length; i++)
|
||||||
|
@ -587,6 +514,26 @@ namespace 开发辅助工具.Tools
|
||||||
{
|
{
|
||||||
MessageBox.Show("更新dll完成,共失败" + error + "项。\r\n\r\n"+ _error_str, "提示", MessageBoxButtons.OK, MessageBoxIcon.Warning);
|
MessageBox.Show("更新dll完成,共失败" + error + "项。\r\n\r\n"+ _error_str, "提示", MessageBoxButtons.OK, MessageBoxIcon.Warning);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void BtnRepairFolder_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
var _path = GetBFFolderPath();
|
||||||
|
if (_path.Length > 0)
|
||||||
|
{
|
||||||
|
if (!System.IO.File.Exists(_path + "\\CHANGELOG.md"))
|
||||||
|
{
|
||||||
|
BtnInsertUpdate.PerformClick();
|
||||||
|
}
|
||||||
|
ryCommon.Ini ini = new Ini(_path + "\\查看项目.ryp");
|
||||||
|
FrmCreateProject frm = new FrmCreateProject();
|
||||||
|
frm.TxtFolder.Text = _path;
|
||||||
|
frm.ChkUnCreateProject.Checked = true;
|
||||||
|
frm.TxtProjectEngName.Text = ini.ReadIni("project", "engname");
|
||||||
|
frm.TxtProjectName.Text = ini.ReadIni("project", "name");
|
||||||
|
frm.StartPosition = FormStartPosition.CenterParent;
|
||||||
|
frm.ShowDialog();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,129 +1,135 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<root>
|
<root>
|
||||||
<!--
|
<!--
|
||||||
Microsoft ResX Schema
|
Microsoft ResX Schema
|
||||||
|
|
||||||
Version 2.0
|
Version 2.0
|
||||||
|
|
||||||
The primary goals of this format is to allow a simple XML format
|
The primary goals of this format is to allow a simple XML format
|
||||||
that is mostly human readable. The generation and parsing of the
|
that is mostly human readable. The generation and parsing of the
|
||||||
various data types are done through the TypeConverter classes
|
various data types are done through the TypeConverter classes
|
||||||
associated with the data types.
|
associated with the data types.
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
|
||||||
... ado.net/XML headers & schema ...
|
... ado.net/XML headers & schema ...
|
||||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
<resheader name="version">2.0</resheader>
|
<resheader name="version">2.0</resheader>
|
||||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
<comment>This is a comment</comment>
|
<comment>This is a comment</comment>
|
||||||
</data>
|
</data>
|
||||||
|
|
||||||
There are any number of "resheader" rows that contain simple
|
There are any number of "resheader" rows that contain simple
|
||||||
name/value pairs.
|
name/value pairs.
|
||||||
|
|
||||||
Each data row contains a name, and value. The row also contains a
|
Each data row contains a name, and value. The row also contains a
|
||||||
type or mimetype. Type corresponds to a .NET class that support
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
text/value conversion through the TypeConverter architecture.
|
text/value conversion through the TypeConverter architecture.
|
||||||
Classes that don't support this are serialized and stored with the
|
Classes that don't support this are serialized and stored with the
|
||||||
mimetype set.
|
mimetype set.
|
||||||
|
|
||||||
The mimetype is used for serialized objects, and tells the
|
The mimetype is used for serialized objects, and tells the
|
||||||
ResXResourceReader how to depersist the object. This is currently not
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
extensible. For a given mimetype the value must be set accordingly:
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
that the ResXResourceWriter will generate, however the reader can
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
read any of the formats listed below.
|
read any of the formats listed below.
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.binary.base64
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
value : The object must be serialized with
|
value : The object must be serialized with
|
||||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
: and then encoded with base64 encoding.
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.soap.base64
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
value : The object must be serialized with
|
value : The object must be serialized with
|
||||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
: and then encoded with base64 encoding.
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
value : The object must be serialized into a byte array
|
value : The object must be serialized into a byte array
|
||||||
: using a System.ComponentModel.TypeConverter
|
: using a System.ComponentModel.TypeConverter
|
||||||
: and then encoded with base64 encoding.
|
: and then encoded with base64 encoding.
|
||||||
-->
|
-->
|
||||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
<xsd:element name="root" msdata:IsDataSet="true">
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
<xsd:complexType>
|
<xsd:complexType>
|
||||||
<xsd:choice maxOccurs="unbounded">
|
<xsd:choice maxOccurs="unbounded">
|
||||||
<xsd:element name="metadata">
|
<xsd:element name="metadata">
|
||||||
<xsd:complexType>
|
<xsd:complexType>
|
||||||
<xsd:sequence>
|
<xsd:sequence>
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
</xsd:sequence>
|
</xsd:sequence>
|
||||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||||
<xsd:attribute name="type" type="xsd:string" />
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
<xsd:attribute ref="xml:space" />
|
<xsd:attribute ref="xml:space" />
|
||||||
</xsd:complexType>
|
</xsd:complexType>
|
||||||
</xsd:element>
|
</xsd:element>
|
||||||
<xsd:element name="assembly">
|
<xsd:element name="assembly">
|
||||||
<xsd:complexType>
|
<xsd:complexType>
|
||||||
<xsd:attribute name="alias" type="xsd:string" />
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
<xsd:attribute name="name" type="xsd:string" />
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
</xsd:complexType>
|
</xsd:complexType>
|
||||||
</xsd:element>
|
</xsd:element>
|
||||||
<xsd:element name="data">
|
<xsd:element name="data">
|
||||||
<xsd:complexType>
|
<xsd:complexType>
|
||||||
<xsd:sequence>
|
<xsd:sequence>
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
</xsd:sequence>
|
</xsd:sequence>
|
||||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
<xsd:attribute ref="xml:space" />
|
<xsd:attribute ref="xml:space" />
|
||||||
</xsd:complexType>
|
</xsd:complexType>
|
||||||
</xsd:element>
|
</xsd:element>
|
||||||
<xsd:element name="resheader">
|
<xsd:element name="resheader">
|
||||||
<xsd:complexType>
|
<xsd:complexType>
|
||||||
<xsd:sequence>
|
<xsd:sequence>
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
</xsd:sequence>
|
</xsd:sequence>
|
||||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
</xsd:complexType>
|
</xsd:complexType>
|
||||||
</xsd:element>
|
</xsd:element>
|
||||||
</xsd:choice>
|
</xsd:choice>
|
||||||
</xsd:complexType>
|
</xsd:complexType>
|
||||||
</xsd:element>
|
</xsd:element>
|
||||||
</xsd:schema>
|
</xsd:schema>
|
||||||
<resheader name="resmimetype">
|
<resheader name="resmimetype">
|
||||||
<value>text/microsoft-resx</value>
|
<value>text/microsoft-resx</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<resheader name="version">
|
<resheader name="version">
|
||||||
<value>2.0</value>
|
<value>2.0</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<resheader name="reader">
|
<resheader name="reader">
|
||||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<resheader name="writer">
|
<resheader name="writer">
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<metadata name="columnModel1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<metadata name="columnModel1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
<value>17, 17</value>
|
<value>17, 17</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
<metadata name="tableModel1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<metadata name="tableModel1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
<value>158, 17</value>
|
<value>158, 17</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
<metadata name="toolTip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<metadata name="toolTip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
<value>285, 17</value>
|
<value>285, 17</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
<metadata name="toolTip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>285, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="toolTip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>285, 17</value>
|
||||||
|
</metadata>
|
||||||
</root>
|
</root>
|
Loading…
Reference in New Issue
Block a user