Commit 866f0c01 by mahaisong

fix:1.整理数据,比对结果讨论方案

2.对ES的删除功能测试: 注意NEST升级为6.0.0
parent 76ce9350
This source diff could not be displayed because it is too large. You can view the blob instead.
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
</startup>
<connectionStrings>
<!--全部改成minder本地配置-->
<!--Minder本地ES-->
<add name="ESDatabase" connectionString="host=minder;port=9200;defaultIndex=palas_test;requesttimeout=30000" />
</connectionStrings>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Elasticsearch.Net" publicKeyToken="96c599bbe3e70f5d" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
using System;
using System;
using System.Collections.Generic;
using System.Data;
using System.IO;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
namespace Delete_TaikorES_LocalES
{
public class CSVFileHelper
{
/// <summary>
/// 将DataTable中数据写入到CSV文件中
/// </summary>
/// <param name="dt">提供保存数据的DataTable</param>
/// <param name="fileName">CSV的文件路径</param>
public static void SaveCSV(DataTable dt, string fullPath)
{
FileInfo fi = new FileInfo(fullPath);
if (!fi.Directory.Exists)
{
fi.Directory.Create();
}
FileStream fs = new FileStream(fullPath, System.IO.FileMode.Create, System.IO.FileAccess.Write);
//StreamWriter sw = new StreamWriter(fs, System.Text.Encoding.Default);
StreamWriter sw = new StreamWriter(fs, System.Text.Encoding.UTF8);
string data = "";
//写出列名称
for (int i = 0; i < dt.Columns.Count; i++)
{
data += dt.Columns[i].ColumnName.ToString();
if (i < dt.Columns.Count - 1)
{
data += ",";
}
}
sw.WriteLine(data);
//写出各行数据
for (int i = 0; i < dt.Rows.Count; i++)
{
data = "";
if (i > 1800)
{
}
for (int j = 0; j < dt.Columns.Count; j++)
{
string str = dt.Rows[i][j].ToString();
//str = str.Replace("\"", "\"\"");//替换英文冒号 英文冒号需要换成两个冒号
//if (str.Contains(',') || str.Contains('"')
// || str.Contains('\r') || str.Contains('\n')) //含逗号 冒号 换行符的需要放到引号中
//{
// str = string.Format("\"{0}\"", str);
//}
data += str;
if (j < dt.Columns.Count - 1)
{
data += ",";
}
}
sw.WriteLine(data);
}
sw.Close();
fs.Close();
}
/// <summary>
/// 将CSV文件的数据读取到DataTable中
/// </summary>
/// <param name="fileName">CSV文件路径</param>
/// <returns>返回读取了CSV数据的DataTable</returns>
public static DataTable OpenCSV(string filePath)
{
DataTable dt = new DataTable();
try
{
FileStream fs = new FileStream(filePath, System.IO.FileMode.Open, System.IO.FileAccess.Read);
//Encoding.ASCII;//
//StreamReader sr = new StreamReader(fs, Encoding.UTF8);
StreamReader sr = new StreamReader(fs, Encoding.UTF8);
//string fileContent = sr.ReadToEnd();
//encoding = sr.CurrentEncoding;
//记录每次读取的一行记录
string strLine = "";
//记录每行记录中的各字段内容
string[] aryLine = null;
string[] tableHead = null;
//标示列数
int columnCount = 0;
//标示是否是读取的第一行
bool IsFirst = true;
//逐行读取CSV中的数据
while ((strLine = sr.ReadLine()) != null)
{
//strLine = Common.ConvertStringUTF8(strLine, encoding);
//strLine = Common.ConvertStringUTF8(strLine);
if (IsFirst == true)
{
tableHead = strLine.Split(',');
IsFirst = false;
columnCount = tableHead.Length;
//创建列
for (int i = 0; i < columnCount; i++)
{
DataColumn dc = new DataColumn(tableHead[i]);
dt.Columns.Add(dc);
}
}
else
{
//根据规则,双引号内不分隔、逗号的分隔。
//正则表达式不好调。根据规则硬来。
aryLine = Regex.Split(strLine, ",(?=([^\\\"]*\\\"[^\\\"]*\\\")*[^\\\"]*$)");
DataRow dr = dt.NewRow();
for (int j = 0; j < columnCount; j++)
{
if (j < aryLine.Count())
{
dr[j] = aryLine[j];
}
else
{
dr[j] = null;
}
}
dt.Rows.Add(dr);
}
}
sr.Close();
fs.Close();
}
catch (Exception ex)
{
throw;
}
return dt;
}
}
}
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{7A0C164A-A1B8-49D9-933C-1C448D3214A6}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Delete_TaikorES_LocalES</RootNamespace>
<AssemblyName>Delete_TaikorES_LocalES</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>x64</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Elasticsearch.Net, Version=6.0.0.0, Culture=neutral, PublicKeyToken=96c599bbe3e70f5d, processorArchitecture=MSIL">
<HintPath>..\packages\Elasticsearch.Net.6.1.0\lib\net46\Elasticsearch.Net.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="ICSharpCode.SharpZipLib, Version=0.86.0.518, Culture=neutral, PublicKeyToken=1b03e6acf1164f73, processorArchitecture=MSIL">
<HintPath>..\packages\SharpZipLib.0.86.0\lib\20\ICSharpCode.SharpZipLib.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Nest, Version=6.0.0.0, Culture=neutral, PublicKeyToken=96c599bbe3e70f5d, processorArchitecture=MSIL">
<HintPath>..\packages\NEST.6.0.0\lib\net46\Nest.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="NPOI, Version=2.3.0.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
<HintPath>..\packages\NPOI.2.3.0\lib\net40\NPOI.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="NPOI.OOXML, Version=2.3.0.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
<HintPath>..\packages\NPOI.2.3.0\lib\net40\NPOI.OOXML.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="NPOI.OpenXml4Net, Version=2.3.0.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
<HintPath>..\packages\NPOI.2.3.0\lib\net40\NPOI.OpenXml4Net.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="NPOI.OpenXmlFormats, Version=2.3.0.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
<HintPath>..\packages\NPOI.2.3.0\lib\net40\NPOI.OpenXmlFormats.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Configuration" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="CSVFileHelper.cs" />
<Compile Include="ESClientConfigureManager.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
<None Include="Data\0529TotalCrawlID.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="Data\DBand5Wmatch4.csv">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="Data\MatchCrawlID.csv">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<Content Include="Data\11_24_01_394delete数据备份.txt" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\HTCommon\HTCommon.csproj">
<Project>{E497051E-61E1-4247-93D3-7929A8C8B7F6}</Project>
<Name>HTCommon</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectView>ShowAllFiles</ProjectView>
</PropertyGroup>
</Project>
\ No newline at end of file
using Elasticsearch.Net;
using Elasticsearch.Net;
using Nest;
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Text.RegularExpressions;
namespace Delete_TaikorES_LocalES
{
public sealed class ESClientConfigureManager
{
public static List<Uri> Uris { get; private set; }
public static String DefaultIndex { get; private set; }
/// <summary>
/// ES连接设置
/// </summary>
public static ConnectionSettings ConnectSetting { get; private set; }
private const String ConnectionStringIndex = "ESDatabase";
private const String HostIndex = "host";
private const String PortIndex = "port";
private const String DefaultIndexIndex = "defaultIndex";
static ESClientConfigureManager()
{
String connectionString = ConfigurationManager.ConnectionStrings[ConnectionStringIndex].ConnectionString;
String[] namedValues = connectionString.Split(';');
Dictionary<String, String> nvPair = new Dictionary<String, String>();
foreach (String nv in namedValues)
{
String[] pair = nv.Split('=');
nvPair[pair[0]] = pair[1];
}
String _url = GetValueByName(nvPair, HostIndex, "tank.palaspom.com|mech.palaspom.com");
String _port = GetValueByName(nvPair, PortIndex, "19235");
//支持多Uri模式,要求多个链接使用 | 分隔,在分隔后数量相同的情况下按照顺序一一对应,如果其中一方仅有一个则使用它对应对方所有部分
string[] urls = _url.Split('|');
string[] ports = _port.Split('|');
if (urls == null || ports == null || urls.Length < 1 || ports.Length < 1)
throw new Exception("Unable get the elasticsearch config pool setting.");
Uris = new List<Uri>();
if (urls.Length == ports.Length)
{
for (int i = 0; i < urls.Length; i++)
{
String formattedUrl = Regex.IsMatch(urls[i], @"://") ? urls[i] : String.Format("http://{0}", urls[i]);
Uris.Add(new Uri(String.Format("{0}:{1}", formattedUrl, ports[i])));
}
}
else if (urls.Length > 1 && ports.Length == 1)
{
for (int i = 0; i < urls.Length; i++)
{
String formattedUrl = Regex.IsMatch(urls[i], @"://") ? urls[i] : String.Format("http://{0}", urls[i]);
Uris.Add(new Uri(String.Format("{0}:{1}", formattedUrl, ports[0])));
}
}
else if (urls.Length == 1 && ports.Length > 1)
{
String formattedUrl = Regex.IsMatch(urls[0], @"://") ? urls[0] : String.Format("http://{0}", urls[0]);
for (int i = 0; i < ports.Length; i++)
{
Uris.Add(new Uri(String.Format("{0}:{1}", formattedUrl, ports[i])));
}
}
else
{
throw new Exception("The elasticsearch config pool setting is error.");
}
var pool = new StaticConnectionPool(Uris);
String index = GetValueByName(nvPair, DefaultIndexIndex, "palas");
DefaultIndex = index;
ConnectSetting = new ConnectionSettings(pool).BasicAuthentication("carey", "jfyhdcm").DefaultIndex(index).DisableDirectStreaming();
}
private static String GetValueByName(Dictionary<String, String> nvPair, String name, String defaultValue)
{
String value = null;
if (nvPair.TryGetValue(name, out value))
{
return value;
}
return defaultValue;
}
}
}
using System.Reflection;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 有关程序集的一般信息由以下
// 控制。更改这些特性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("Delete_TaikorES_LocalES")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Delete_TaikorES_LocalES")]
[assembly: AssemblyCopyright("Copyright © 2018")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
//将 ComVisible 设置为 false 将使此程序集中的类型
//对 COM 组件不可见。 如果需要从 COM 访问此程序集中的类型,
//请将此类型的 ComVisible 特性设置为 true。
[assembly: ComVisible(false)]
// 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID
[assembly: Guid("7a0c164a-a1b8-49d9-933c-1c448d3214a6")]
// 程序集的版本信息由下列四个值组成:
//
// 主版本
// 次版本
// 生成号
// 修订号
//
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值,
// 方法是按如下所示使用“*”: :
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
++ "b/10.Paul\351\234\200\346\261\202-JSON\350\264\235\346\240\274ES\345\257\274\345\205\245\346\234\254\345\234\260ES/ImportLocalES/Delete_TaikorES_LocalES/bin/Debug/09_38_16_842delete\346\225\260\346\215\256\345\244\207\344\273\275.txt"
++ "b/10.Paul\351\234\200\346\261\202-JSON\350\264\235\346\240\274ES\345\257\274\345\205\245\346\234\254\345\234\260ES/ImportLocalES/Delete_TaikorES_LocalES/bin/Debug/09_50_55_051delete\346\225\260\346\215\256\345\244\207\344\273\275.txt"
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
</startup>
<connectionStrings>
<!--全部改成minder本地配置-->
<!--Minder本地ES-->
<add name="ESDatabase" connectionString="host=minder;port=9200;defaultIndex=palas_test;requesttimeout=30000" />
</connectionStrings>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Elasticsearch.Net" publicKeyToken="96c599bbe3e70f5d" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/>
</startup>
<connectionStrings>
<!--全部改成minder本地配置-->
<!--Minder本地ES-->
<!--<add name="ESDatabase" connectionString="host=minder;port=9200;defaultIndex=palas_test;requesttimeout=30000" />-->
<!--来源ES、 态格生产环境ES-->
<add name="ESDatabase" connectionString="host=mech.palaspom.com|tank.palaspom.com;port=19235;defaultIndex=palas" />
</connectionStrings>
</configuration>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\Data\0529TotalCrawlID.json
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\Data\0529TotalCrawlID.json
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\Data\MatchCrawlID.csv
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\Delete_TaikorES_LocalES.exe.config
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\Delete_TaikorES_LocalES.exe
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\Delete_TaikorES_LocalES.pdb
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\Elasticsearch.Net.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\HTCommon.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\ICSharpCode.SharpZipLib.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\Nest.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\Newtonsoft.Json.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\NPOI.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\NPOI.OOXML.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\NPOI.OpenXml4Net.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\NPOI.OpenXmlFormats.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\pdfbox-app-2.0.7.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\IKVM.OpenJDK.Core.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\NPOI.ScratchPad.HWPF.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\HtmlAgilityPack.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\ServiceStack.Interfaces.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\ServiceStack.Redis.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\HooLab.Runtime.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\HooLab.Config.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\HooLab.Log.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\Z.EntityFramework.Plus.EF6.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\hanlp-1.3.1.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\IKVM.Runtime.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\IKVM.OpenJDK.Util.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\IKVM.OpenJDK.Text.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\IKVM.OpenJDK.SwingAWT.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\IKVM.OpenJDK.Media.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\IKVM.OpenJDK.XML.API.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\IKVM.OpenJDK.Security.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\IKVM.OpenJDK.Naming.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\IKVM.OpenJDK.Beans.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\IKVM.OpenJDK.Jdbc.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\ServiceStack.Common.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\ServiceStack.Text.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\EntityFramework.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\IKVM.Runtime.JNI.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\IKVM.OpenJDK.Management.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\IKVM.AWT.WinForms.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\IKVM.OpenJDK.Charsets.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\IKVM.OpenJDK.Corba.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\IKVM.OpenJDK.Remoting.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\HTCommon.pdb
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\Elasticsearch.Net.xml
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\Nest.xml
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\Newtonsoft.Json.xml
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\NPOI.xml
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\HtmlAgilityPack.pdb
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\HtmlAgilityPack.xml
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\ServiceStack.Common.xml
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\ServiceStack.Text.xml
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\EntityFramework.xml
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\zh-Hans\EntityFramework.resources.dll
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\obj\Debug\Delete_TaikorES_LocalES.exe
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\obj\Debug\Delete_TaikorES_LocalES.pdb
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\bin\Debug\Data\DBand5Wmatch4.csv
D:\smallproject\10.Paul需求-JSON贝格ES导入本地ES\ImportLocalES\Delete_TaikorES_LocalES\obj\Debug\Delete_TaikorES_LocalES.csprojResolveAssemblyReference.cache
++ "b/10.Paul\351\234\200\346\261\202-JSON\350\264\235\346\240\274ES\345\257\274\345\205\245\346\234\254\345\234\260ES/ImportLocalES/Delete_TaikorES_LocalES/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs"
++ "b/10.Paul\351\234\200\346\261\202-JSON\350\264\235\346\240\274ES\345\257\274\345\205\245\346\234\254\345\234\260ES/ImportLocalES/Delete_TaikorES_LocalES/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs"
++ "b/10.Paul\351\234\200\346\261\202-JSON\350\264\235\346\240\274ES\345\257\274\345\205\245\346\234\254\345\234\260ES/ImportLocalES/Delete_TaikorES_LocalES/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs"
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Elasticsearch.Net" version="6.1.0" targetFramework="net461" />
<package id="NEST" version="6.0.0" targetFramework="net461" />
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net461" />
<package id="NPOI" version="2.3.0" targetFramework="net461" />
<package id="SharpZipLib" version="0.86.0" targetFramework="net461" />
</packages>
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment