├── .vs └── HanziDictionary │ ├── DesignTimeBuild │ └── .dtbcache │ └── v15 │ ├── .suo │ └── Server │ └── sqlite3 │ ├── storage.ide │ ├── storage.ide-shm │ └── storage.ide-wal ├── HanziDictionary.sln ├── HanziRadical ├── App.config ├── App.xaml ├── App.xaml.cs ├── DBCache.cs ├── ExcelOperationHelper.cs ├── Hanzi.db3 ├── HanziApiHelper.cs ├── HanziDictionary.csproj ├── HanziSqlliteHelper.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── RequestResponseHelper.cs ├── bin │ └── Debug │ │ ├── Aspose.Cells.dll │ │ ├── EntityFramework.SqlServer.dll │ │ ├── EntityFramework.SqlServer.xml │ │ ├── EntityFramework.dll │ │ ├── EntityFramework.xml │ │ ├── Hanzi.db3 │ │ ├── HanziDictionary.exe │ │ ├── HanziDictionary.exe.config │ │ ├── HanziDictionary.pdb │ │ ├── HanziRadical.exe │ │ ├── HanziRadical.exe.config │ │ ├── HanziRadical.pdb │ │ ├── Newtonsoft.Json.dll │ │ ├── System.Data.SQLite.EF6.dll │ │ ├── System.Data.SQLite.Linq.dll │ │ ├── System.Data.SQLite.dll │ │ ├── System.Data.SQLite.dll.config │ │ ├── System.Data.SQLite.xml │ │ ├── linq2db.dll │ │ ├── x64 │ │ └── SQLite.Interop.dll │ │ ├── x86 │ │ └── SQLite.Interop.dll │ │ └── 汉字列表.txt ├── obj │ └── Debug │ │ ├── App.g.cs │ │ ├── App.g.i.cs │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── HanziDictionary.Properties.Resources.resources │ │ ├── HanziDictionary.csproj.CopyComplete │ │ ├── HanziDictionary.csproj.CoreCompileInputs.cache │ │ ├── HanziDictionary.csproj.FileListAbsolute.txt │ │ ├── HanziDictionary.csproj.GenerateResource.cache │ │ ├── HanziDictionary.csprojAssemblyReference.cache │ │ ├── HanziDictionary.exe │ │ ├── HanziDictionary.g.resources │ │ ├── HanziDictionary.pdb │ │ ├── HanziDictionary_Content.g.cs │ │ ├── HanziDictionary_Content.g.i.cs │ │ ├── HanziDictionary_MarkupCompile.cache │ │ ├── HanziDictionary_MarkupCompile.i.cache │ │ ├── HanziRadical.Properties.Resources.resources │ │ ├── HanziRadical.csproj.CopyComplete │ │ ├── HanziRadical.csproj.CoreCompileInputs.cache │ │ ├── HanziRadical.csproj.FileListAbsolute.txt │ │ ├── HanziRadical.csproj.GenerateResource.cache │ │ ├── HanziRadical.csprojAssemblyReference.cache │ │ ├── HanziRadical.exe │ │ ├── HanziRadical.g.resources │ │ ├── HanziRadical.pdb │ │ ├── HanziRadical_Content.g.i.cs │ │ ├── HanziRadical_MarkupCompile.cache │ │ ├── HanziRadical_MarkupCompile.i.cache │ │ ├── HanziRadical_MarkupCompile.i.lref │ │ ├── HanziRadical_MarkupCompile.lref │ │ ├── MainWindow.baml │ │ ├── MainWindow.g.cs │ │ ├── MainWindow.g.i.cs │ │ ├── TempPE │ │ └── Properties.Resources.Designer.cs.dll │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── packages.config └── 汉字列表.txt └── packages ├── Aspose.Cells.dll ├── EntityFramework.6.2.0 ├── EntityFramework.6.2.0.nupkg ├── content │ └── net40 │ │ ├── App.config.transform │ │ └── Web.config.transform ├── lib │ ├── net40 │ │ ├── EntityFramework.SqlServer.dll │ │ ├── EntityFramework.SqlServer.xml │ │ ├── EntityFramework.dll │ │ └── EntityFramework.xml │ └── net45 │ │ ├── EntityFramework.SqlServer.dll │ │ ├── EntityFramework.SqlServer.xml │ │ ├── EntityFramework.dll │ │ └── EntityFramework.xml └── tools │ ├── EntityFramework.PowerShell.Utility.dll │ ├── EntityFramework.PowerShell.dll │ ├── EntityFramework.psd1 │ ├── EntityFramework.psm1 │ ├── about_EntityFramework.help.txt │ ├── init.ps1 │ ├── install.ps1 │ └── migrate.exe ├── Newtonsoft.Json.dll ├── System.Data.SQLite.1.0.109.1 ├── .signature.p7s └── System.Data.SQLite.1.0.109.1.nupkg ├── System.Data.SQLite.Core.1.0.109.1 ├── .signature.p7s ├── System.Data.SQLite.Core.1.0.109.1.nupkg ├── build │ ├── net20 │ │ ├── System.Data.SQLite.Core.targets │ │ ├── x64 │ │ │ └── SQLite.Interop.dll │ │ └── x86 │ │ │ └── SQLite.Interop.dll │ ├── net40 │ │ ├── System.Data.SQLite.Core.targets │ │ ├── x64 │ │ │ └── SQLite.Interop.dll │ │ └── x86 │ │ │ └── SQLite.Interop.dll │ ├── net45 │ │ ├── System.Data.SQLite.Core.targets │ │ ├── x64 │ │ │ └── SQLite.Interop.dll │ │ └── x86 │ │ │ └── SQLite.Interop.dll │ ├── net451 │ │ ├── System.Data.SQLite.Core.targets │ │ ├── x64 │ │ │ └── SQLite.Interop.dll │ │ └── x86 │ │ │ └── SQLite.Interop.dll │ └── net46 │ │ ├── System.Data.SQLite.Core.targets │ │ ├── x64 │ │ └── SQLite.Interop.dll │ │ └── x86 │ │ └── SQLite.Interop.dll ├── lib │ ├── net20 │ │ ├── System.Data.SQLite.dll │ │ ├── System.Data.SQLite.dll.config │ │ └── System.Data.SQLite.xml │ ├── net40 │ │ ├── System.Data.SQLite.dll │ │ ├── System.Data.SQLite.dll.config │ │ └── System.Data.SQLite.xml │ ├── net45 │ │ ├── System.Data.SQLite.dll │ │ ├── System.Data.SQLite.dll.config │ │ └── System.Data.SQLite.xml │ ├── net451 │ │ ├── System.Data.SQLite.dll │ │ ├── System.Data.SQLite.dll.config │ │ └── System.Data.SQLite.xml │ ├── net46 │ │ ├── System.Data.SQLite.dll │ │ ├── System.Data.SQLite.dll.config │ │ └── System.Data.SQLite.xml │ └── netstandard2.0 │ │ ├── System.Data.SQLite.dll │ │ ├── System.Data.SQLite.dll.config │ │ └── System.Data.SQLite.xml └── runtimes │ ├── linux-x64 │ └── lib │ │ └── netstandard2.0 │ │ └── SQLite.Interop.dll │ ├── osx-x64 │ └── lib │ │ └── netstandard2.0 │ │ └── SQLite.Interop.dll │ ├── win-x64 │ └── lib │ │ └── netstandard2.0 │ │ └── SQLite.Interop.dll │ └── win-x86 │ └── lib │ └── netstandard2.0 │ └── SQLite.Interop.dll ├── System.Data.SQLite.EF6.1.0.109.0 ├── .signature.p7s ├── System.Data.SQLite.EF6.1.0.109.0.nupkg ├── content │ ├── net40 │ │ ├── app.config.install.xdt │ │ ├── app.config.transform │ │ ├── web.config.install.xdt │ │ └── web.config.transform │ ├── net45 │ │ ├── app.config.install.xdt │ │ ├── app.config.transform │ │ ├── web.config.install.xdt │ │ └── web.config.transform │ ├── net451 │ │ ├── app.config.install.xdt │ │ ├── app.config.transform │ │ ├── web.config.install.xdt │ │ └── web.config.transform │ └── net46 │ │ ├── app.config.install.xdt │ │ ├── app.config.transform │ │ ├── web.config.install.xdt │ │ └── web.config.transform ├── lib │ ├── net40 │ │ └── System.Data.SQLite.EF6.dll │ ├── net45 │ │ └── System.Data.SQLite.EF6.dll │ ├── net451 │ │ └── System.Data.SQLite.EF6.dll │ └── net46 │ │ └── System.Data.SQLite.EF6.dll └── tools │ ├── net40 │ └── install.ps1 │ ├── net45 │ └── install.ps1 │ ├── net451 │ └── install.ps1 │ └── net46 │ └── install.ps1 ├── System.Data.SQLite.Linq.1.0.109.0 ├── .signature.p7s ├── System.Data.SQLite.Linq.1.0.109.0.nupkg ├── content │ ├── net20 │ │ ├── app.config.transform │ │ └── web.config.transform │ ├── net40 │ │ ├── app.config.transform │ │ └── web.config.transform │ ├── net45 │ │ ├── app.config.transform │ │ └── web.config.transform │ ├── net451 │ │ ├── app.config.transform │ │ └── web.config.transform │ └── net46 │ │ ├── app.config.transform │ │ └── web.config.transform └── lib │ ├── net20 │ └── System.Data.SQLite.Linq.dll │ ├── net40 │ └── System.Data.SQLite.Linq.dll │ ├── net45 │ └── System.Data.SQLite.Linq.dll │ ├── net451 │ └── System.Data.SQLite.Linq.dll │ └── net46 │ └── System.Data.SQLite.Linq.dll └── linq2db.dll /.vs/HanziDictionary/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/.vs/HanziDictionary/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /.vs/HanziDictionary/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/.vs/HanziDictionary/v15/.suo -------------------------------------------------------------------------------- /.vs/HanziDictionary/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/.vs/HanziDictionary/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /.vs/HanziDictionary/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/.vs/HanziDictionary/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /.vs/HanziDictionary/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/.vs/HanziDictionary/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /HanziDictionary.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.27703.2042 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HanziDictionary", "HanziRadical\HanziDictionary.csproj", "{2ADE1596-274B-433A-8072-D293FEE10507}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {2ADE1596-274B-433A-8072-D293FEE10507}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {2ADE1596-274B-433A-8072-D293FEE10507}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {2ADE1596-274B-433A-8072-D293FEE10507}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {2ADE1596-274B-433A-8072-D293FEE10507}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {8BA687CC-8146-4479-82B4-C88AAD7CC260} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /HanziRadical/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 |
6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /HanziRadical/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /HanziRadical/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace HanziDictionary 10 | { 11 | /// 12 | /// App.xaml 的交互逻辑 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /HanziRadical/DBCache.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Data; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | using LinqToDB.DataProvider.SQLite; 8 | 9 | namespace HanziDictionary 10 | { 11 | public class DbCache where TDB : LinqToDB.Data.DataConnection, new() 12 | { 13 | private readonly string _connectionString; 14 | private readonly Func _getConnectionStringFunc; 15 | 16 | private string ConnectionString 17 | => string.IsNullOrEmpty(_connectionString) ? _getConnectionStringFunc() : _connectionString; 18 | 19 | public DbCache(string connectionString) 20 | { 21 | _connectionString = connectionString; 22 | } 23 | 24 | public DbCache(Func getConnectionStringFunc) 25 | { 26 | _getConnectionStringFunc = getConnectionStringFunc; 27 | } 28 | 29 | public void Execute(Action execute) 30 | { 31 | TDB db = null; 32 | try 33 | { 34 | db = (TDB)Activator.CreateInstance(typeof(TDB), new SQLiteDataProvider(), ConnectionString); 35 | execute(db); 36 | } 37 | catch (Exception ex) 38 | { 39 | 40 | } 41 | finally 42 | { 43 | db?.Dispose(); 44 | } 45 | } 46 | 47 | public bool ExecuteTransaction(Action execute) 48 | { 49 | TDB db = null; 50 | try 51 | { 52 | db = (TDB)Activator.CreateInstance(typeof(TDB), new SQLiteDataProvider(), ConnectionString); 53 | using (var transaction = db.BeginTransaction(IsolationLevel.ReadCommitted)) 54 | { 55 | try 56 | { 57 | execute(db); 58 | } 59 | catch (Exception ex) 60 | { 61 | transaction.Rollback(); 62 | return false; 63 | } 64 | transaction.Commit(); 65 | return true; 66 | } 67 | } 68 | finally 69 | { 70 | db?.Dispose(); 71 | } 72 | } 73 | 74 | public TReturn Execute(Func execute) 75 | { 76 | TDB db = null; 77 | try 78 | { 79 | db = (TDB)Activator.CreateInstance(typeof(TDB), new SQLiteDataProvider(), ConnectionString); 80 | return execute(db); 81 | } 82 | catch (Exception ex) 83 | { 84 | return default(TReturn); 85 | } 86 | finally 87 | { 88 | db?.Dispose(); 89 | } 90 | } 91 | } 92 | } 93 | -------------------------------------------------------------------------------- /HanziRadical/ExcelOperationHelper.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using Aspose.Cells; 7 | using Microsoft.Win32; 8 | 9 | namespace HanziDictionary 10 | { 11 | class ExcelOperationHelper 12 | { 13 | public static void SaveHanziTextLinesToExcel(List hanziDataList) 14 | { 15 | Workbook wb = new Workbook(); 16 | Worksheet sheet = wb.Worksheets[0]; 17 | 18 | SetFirRow(sheet); 19 | 20 | SetSheetContent(sheet, hanziDataList); 21 | 22 | //调整列表显示 23 | sheet.FreezePanes(1, 1, 1, 0); 24 | sheet.AutoFitColumns(); 25 | 26 | SaveFileDialog sfDialog = new SaveFileDialog(); 27 | sfDialog.InitialDirectory = @"F:\OneDrive\WorkArea\工作项\汉字\"; 28 | sfDialog.Filter = "*.Excel文件|*.xlsx"; 29 | if (sfDialog.ShowDialog() == true) 30 | { 31 | string filePath = sfDialog.FileName; 32 | wb.Save(filePath); 33 | } 34 | } 35 | 36 | private static void SetSheetContent(Worksheet sheet, List hanziDataList) 37 | { 38 | int rowIndex = 1; 39 | foreach (var hanziData in hanziDataList) 40 | { 41 | var hanziDataTemp = hanziData; 42 | var hanzi = hanziDataTemp.Substring(0, hanziDataTemp.IndexOf("|")); 43 | 44 | hanziDataTemp = hanziDataTemp.Substring(hanzi.Length + 1, hanziDataTemp.Length - hanzi.Length - 1); 45 | var pinyin = hanziDataTemp.Substring(0, hanziDataTemp.IndexOf("|")); 46 | 47 | hanziDataTemp = hanziDataTemp.Substring(pinyin.Length + 1, hanziDataTemp.Length - pinyin.Length - 1); 48 | var radical = hanziDataTemp.Substring(0, hanziDataTemp.IndexOf("|")); 49 | 50 | hanziDataTemp = hanziDataTemp.Substring(radical.Length + 1, hanziDataTemp.Length - radical.Length - 1); 51 | var biHua = hanziDataTemp.Substring(0, hanziDataTemp.IndexOf("|")); 52 | 53 | hanziDataTemp = hanziDataTemp.Substring(biHua.Length + 1, hanziDataTemp.Length - biHua.Length - 1); 54 | var wubi = hanziDataTemp.Substring(0, hanziDataTemp.IndexOf("|")); 55 | 56 | hanziDataTemp = hanziDataTemp.Substring(wubi.Length + 1, hanziDataTemp.Length - wubi.Length - 1); 57 | var biHuaCode = hanziDataTemp; 58 | 59 | sheet.Cells[rowIndex, 0].Value = hanzi; 60 | sheet.Cells[rowIndex, 1].Value = pinyin; 61 | sheet.Cells[rowIndex, 2].Value = radical == "难检字" ? string.Empty : radical; ; 62 | sheet.Cells[rowIndex, 3].Value = biHua; 63 | sheet.Cells[rowIndex, 4].Value = wubi; 64 | sheet.Cells[rowIndex, 5].Value = biHuaCode; 65 | 66 | rowIndex++; 67 | } 68 | } 69 | 70 | private static void SetFirRow(Worksheet sheet) 71 | { 72 | Style style = new Style(); 73 | style.Number = 49; 74 | sheet.Cells[0, 0].Value = "汉字"; 75 | sheet.Cells[0, 1].Value = "拼音"; 76 | sheet.Cells[0, 2].Value = "部首"; 77 | sheet.Cells[0, 3].Value = "笔画"; 78 | sheet.Cells[0, 4].Value = "五笔"; 79 | sheet.Cells.ApplyColumnStyle(3, style, new StyleFlag()); 80 | sheet.Cells[0, 5].Value = "笔顺编号"; 81 | sheet.Cells.ApplyColumnStyle(1, style, new StyleFlag()); 82 | } 83 | } 84 | } 85 | -------------------------------------------------------------------------------- /HanziRadical/Hanzi.db3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/Hanzi.db3 -------------------------------------------------------------------------------- /HanziRadical/HanziApiHelper.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Diagnostics; 4 | using System.IO; 5 | using System.Linq; 6 | using System.Net; 7 | using System.Runtime.Serialization; 8 | using System.Text; 9 | using System.Threading.Tasks; 10 | using System.Web; 11 | using Newtonsoft.Json; 12 | using Newtonsoft.Json.Linq; 13 | 14 | namespace HanziDictionary 15 | { 16 | /// 17 | /// 聚合接口-汉字 18 | /// 19 | public class HanziApiHelper : HttpRequestBase 20 | { 21 | private const string NotFountRadical = "难检字"; 22 | 23 | /// 24 | /// 查找部首 25 | /// 26 | /// 27 | /// 28 | public static string FindRadical(string hanzi) 29 | { 30 | var hanziDetail = FindHanzi(hanzi); 31 | 32 | if (hanziDetail!=null && hanziDetail.Radical!=NotFountRadical) 33 | { 34 | return hanziDetail.Radical; 35 | } 36 | 37 | return string.Empty; 38 | } 39 | 40 | private const string BiHuaCodeKey = "笔顺编号:"; 41 | 42 | /// 43 | /// 查找笔顺编号 如:聚12211154323334 44 | /// 45 | /// 46 | /// 47 | public static string FindBiHuaCode(string hanzi) 48 | { 49 | var hanziDetail = FindHanzi(hanzi); 50 | 51 | var bihuaCodeStr=hanziDetail?.SimpleDetailContent.FirstOrDefault(i=>i.Contains(BiHuaCodeKey)); 52 | if (!string.IsNullOrWhiteSpace(bihuaCodeStr)) 53 | { 54 | return bihuaCodeStr.Replace(bihuaCodeStr, BiHuaCodeKey); 55 | } 56 | 57 | return string.Empty; 58 | } 59 | 60 | public static HanziDetail FindHanzi(string hanzi) 61 | { 62 | //1.根据汉字查询字典 63 | string url1 = "http://v.juhe.cn/xhzd/query"; 64 | 65 | var parameters1 = new Dictionary(); 66 | 67 | parameters1.Add("word", hanzi); //填写需要查询的汉字,UTF8 urlencode编码 68 | parameters1.Add("key", "1810cd6518b7e8e644edfd6ee0ddc547");//你申请的key 69 | parameters1.Add("dtype", ""); //返回数据的格式,xml或json,默认json 70 | 71 | string result2 = SendPost(url1, parameters1, "get"); 72 | 73 | var hanziRequestResponse = JsonConvert.DeserializeObject(result2); 74 | 75 | //HanziDetail hanziDetail = null; 76 | //if (hanziRequestResponse.ErrorCode == "0" && hanziRequestResponse.Result != null) 77 | //{ 78 | // hanziDetail = hanziRequestResponse.Result; 79 | //} 80 | 81 | return hanziRequestResponse.Result; 82 | } 83 | } 84 | 85 | [DataContract] 86 | public class HanziRequestResponse 87 | { 88 | [DataMember(Name = "reason")] 89 | public string Reason { get; set; } 90 | 91 | [DataMember(Name = "error_code")] 92 | public string ErrorCode { get; set; } 93 | 94 | [DataMember(Name = "result")] 95 | public HanziDetail Result { get; set; } 96 | } 97 | [DataContract] 98 | public class HanziDetail 99 | { 100 | [DataMember(Name = "zi")] 101 | public string Hanzi { get; set; } 102 | 103 | /// 104 | /// 部首 105 | /// 106 | [DataMember(Name = "bushou")] 107 | public string Radical { get; set; } 108 | 109 | /// 110 | /// 拼音 111 | /// 112 | [DataMember(Name = "pinyin")] 113 | public string Pinyin { get; set; } 114 | 115 | /// 116 | /// 笔画数 117 | /// 118 | [DataMember(Name = "bihua")] 119 | public string Bihua { get; set; } 120 | 121 | /// 122 | /// 五笔 123 | /// 124 | [DataMember(Name = "wubi")] 125 | public string WuBi { get; set; } 126 | 127 | /// 128 | /// 极简介绍 129 | /// 130 | [DataMember(Name = "jijie")] 131 | public List SimpleDetailContent { get; set; } 132 | 133 | /// 134 | /// 详简 135 | /// 136 | [DataMember(Name = "xiangjie")] 137 | public List DetailContent { get; set; } 138 | } 139 | } 140 | -------------------------------------------------------------------------------- /HanziRadical/HanziDictionary.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {2ADE1596-274B-433A-8072-D293FEE10507} 8 | WinExe 9 | HanziDictionary 10 | HanziDictionary 11 | v4.6.1 12 | 512 13 | {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 14 | 4 15 | true 16 | 17 | 18 | 19 | 20 | AnyCPU 21 | true 22 | full 23 | false 24 | bin\Debug\ 25 | DEBUG;TRACE 26 | prompt 27 | 4 28 | 29 | 30 | AnyCPU 31 | pdbonly 32 | true 33 | bin\Release\ 34 | TRACE 35 | prompt 36 | 4 37 | 38 | 39 | 40 | ..\packages\Aspose.Cells.dll 41 | 42 | 43 | ..\packages\EntityFramework.6.2.0\lib\net45\EntityFramework.dll 44 | 45 | 46 | ..\packages\EntityFramework.6.2.0\lib\net45\EntityFramework.SqlServer.dll 47 | 48 | 49 | ..\packages\linq2db.dll 50 | 51 | 52 | False 53 | ..\packages\Newtonsoft.Json.dll 54 | 55 | 56 | 57 | 58 | 59 | 60 | ..\packages\System.Data.SQLite.Core.1.0.109.1\lib\net46\System.Data.SQLite.dll 61 | 62 | 63 | ..\packages\System.Data.SQLite.EF6.1.0.109.0\lib\net46\System.Data.SQLite.EF6.dll 64 | 65 | 66 | ..\packages\System.Data.SQLite.Linq.1.0.109.0\lib\net46\System.Data.SQLite.Linq.dll 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 4.0 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | MSBuild:Compile 86 | Designer 87 | 88 | 89 | 90 | 91 | 92 | 93 | MSBuild:Compile 94 | Designer 95 | 96 | 97 | App.xaml 98 | Code 99 | 100 | 101 | 102 | MainWindow.xaml 103 | Code 104 | 105 | 106 | 107 | 108 | Code 109 | 110 | 111 | True 112 | True 113 | Resources.resx 114 | 115 | 116 | True 117 | Settings.settings 118 | True 119 | 120 | 121 | ResXFileCodeGenerator 122 | Resources.Designer.cs 123 | 124 | 125 | Always 126 | 127 | 128 | 129 | SettingsSingleFileGenerator 130 | Settings.Designer.cs 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | Always 139 | 140 | 141 | 142 | 143 | 144 | 145 | 这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。 146 | 147 | 148 | 149 | -------------------------------------------------------------------------------- /HanziRadical/HanziSqlliteHelper.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Data.Linq; 4 | using System.IO; 5 | using System.Linq; 6 | using System.Text; 7 | using System.Threading.Tasks; 8 | using LinqToDB; 9 | using LinqToDB.Data; 10 | using LinqToDB.DataProvider; 11 | using LinqToDB.Mapping; 12 | 13 | namespace HanziDictionary 14 | { 15 | class HanziSqlliteHelper 16 | { 17 | private static readonly string DbName = "cw.db3"; 18 | private readonly DbCache _hanziCache; 19 | private readonly DbCache _hanziRadicalCache; 20 | private List _hanzis = new List(); 21 | private List _hanziRadicals = new List(); 22 | 23 | public HanziSqlliteHelper(string dbPath) 24 | { 25 | var exists = File.Exists(dbPath); 26 | _hanziCache = new DbCache(() => $"Data Source={dbPath}"); 27 | _hanziRadicalCache = new DbCache(() => $"Data Source={dbPath}"); 28 | } 29 | 30 | public List GetAllHanziInfos() 31 | { 32 | _hanzis = _hanziCache.Execute(db => db.HanziList).ToList(); 33 | return _hanzis; 34 | } 35 | 36 | public void SaveHanziList(List hanziInfos) 37 | { 38 | _hanziCache.ExecuteTransaction(hanziDb => 39 | { 40 | hanziDb.Insert(hanziInfos); 41 | }); 42 | } 43 | 44 | public void SaveHanzi(HanziInfo hanziInfo) 45 | { 46 | _hanziCache.ExecuteTransaction(hanziDb => 47 | { 48 | hanziDb.Insert(hanziInfo); 49 | }); 50 | } 51 | 52 | public void UpdateHanziInfo(HanziInfo hanziInfo) 53 | { 54 | _hanziCache.ExecuteTransaction(hanziDb => { hanziDb.Update(hanziInfo); }); 55 | } 56 | } 57 | public partial class HanziDb : DataConnection 58 | { 59 | public LinqToDB.ITable HanziList => GetTable(); 60 | 61 | public HanziDb() 62 | { 63 | InitDataContext(); 64 | } 65 | 66 | public HanziDb(string configuration) 67 | : base(configuration) 68 | { 69 | InitDataContext(); 70 | } 71 | 72 | public HanziDb(IDataProvider dataProvider, string connectionString) 73 | : base(dataProvider, connectionString) 74 | { 75 | InitDataContext(); 76 | } 77 | 78 | partial void InitDataContext(); 79 | } 80 | 81 | public partial class HanziRadicalDb : DataConnection 82 | { 83 | public LinqToDB.ITable ClassicalWorks => GetTable(); 84 | 85 | public HanziRadicalDb() 86 | { 87 | InitDataContext(); 88 | } 89 | 90 | public HanziRadicalDb(string configuration) 91 | : base(configuration) 92 | { 93 | InitDataContext(); 94 | } 95 | 96 | public HanziRadicalDb(IDataProvider dataProvider, string connectionString) 97 | : base(dataProvider, connectionString) 98 | { 99 | InitDataContext(); 100 | } 101 | 102 | partial void InitDataContext(); 103 | } 104 | 105 | /// 106 | /// 部首 107 | /// 108 | [Table("RadicalList")] 109 | public class HaiziRadical 110 | { 111 | [Column, NotNull] 112 | public int ID { get; set; } 113 | 114 | [Column, Nullable] 115 | public string Radical { get; set; } 116 | 117 | [Column, Nullable] 118 | public string StrokeCount { get; set; } 119 | 120 | [Column, Nullable] 121 | public string StrokeCode { get; set; } 122 | 123 | } 124 | /// 125 | /// 汉字 126 | /// 127 | [Table("HanziList")] 128 | public class HanziInfo 129 | { 130 | [Column, NotNull] 131 | public int ID { get; set; } 132 | 133 | [Column, Nullable] 134 | public string Hanzi { get; set; } 135 | 136 | [Column, Nullable] 137 | public string Pinyin { get; set; } 138 | 139 | [Column, Nullable] 140 | public string Radical { get; set; } 141 | 142 | [Column, Nullable] 143 | public int StrokeCount { get; set; } 144 | 145 | [Column, Nullable] 146 | public string StrokeCode { get; set; } 147 | [Column, Nullable] 148 | public string WuBi { get; set; } 149 | 150 | [Column, Nullable] 151 | public string SimpleIntroduction { get; set; } 152 | 153 | [Column, Nullable] 154 | public string DetailIntroduction { get; set; } 155 | } 156 | } 157 | -------------------------------------------------------------------------------- /HanziRadical/MainWindow.xaml: -------------------------------------------------------------------------------- 1 |  8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /HanziRadical/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Diagnostics; 5 | using System.IO; 6 | using System.Linq; 7 | using System.Net; 8 | using System.Text; 9 | using System.Text.RegularExpressions; 10 | using System.Threading.Tasks; 11 | using System.Web; 12 | using System.Windows; 13 | using System.Windows.Controls; 14 | using System.Windows.Data; 15 | using System.Windows.Documents; 16 | using System.Windows.Input; 17 | using System.Windows.Media; 18 | using System.Windows.Media.Imaging; 19 | using System.Windows.Navigation; 20 | using System.Windows.Shapes; 21 | using Aspose.Cells; 22 | using Microsoft.Win32; 23 | using Newtonsoft.Json; 24 | using Newtonsoft.Json.Linq; 25 | using Path = System.IO.Path; 26 | using Style = Aspose.Cells.Style; 27 | 28 | namespace HanziDictionary 29 | { 30 | /// 31 | /// MainWindow.xaml 的交互逻辑 32 | /// 33 | public partial class MainWindow : Window 34 | { 35 | public MainWindow() 36 | { 37 | InitializeComponent(); 38 | 39 | var filePath = Path.Combine(System.AppDomain.CurrentDomain.BaseDirectory, "汉字列表.txt"); 40 | HanziFilePathTextBox.Text = filePath; 41 | } 42 | 43 | private void ButtonBase_OnClick(object sender, RoutedEventArgs e) 44 | { 45 | var hanziLines = File.ReadAllLines(HanziFilePathTextBox.Text); 46 | var hanziDataList = hanziLines.Where(i => !string.IsNullOrWhiteSpace(i)).ToList(); 47 | 48 | string saveDbPath = Path.Combine(System.AppDomain.CurrentDomain.BaseDirectory, "Hanzi.db3"); 49 | 50 | using (var backgroundWorker = new BackgroundWorker() { WorkerReportsProgress = true }) 51 | { 52 | backgroundWorker.ProgressChanged += BackgroundWorker_ProgressChanged; 53 | backgroundWorker.DoWork += BackgroundWorker_DoWork; 54 | backgroundWorker.RunWorkerCompleted += BackgroundWorker_RunWorkerCompleted; 55 | backgroundWorker.RunWorkerAsync(Tuple.Create(saveDbPath, hanziDataList)); 56 | } 57 | } 58 | 59 | private void BackgroundWorker_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e) 60 | { 61 | var desktopFolder = Environment.GetFolderPath(Environment.SpecialFolder.Desktop); 62 | var destDbPath = Path.Combine(desktopFolder, "Hanzi.db3"); 63 | File.Move(e.Result.ToString(), destDbPath); 64 | LoadingTextBlock.Text = $"汉字信息下载完成,下载地址:{destDbPath}"; 65 | } 66 | 67 | private void BackgroundWorker_DoWork(object sender, DoWorkEventArgs e) 68 | { 69 | var worker = (BackgroundWorker)sender; 70 | var workerModel = (Tuple>)e.Argument; 71 | 72 | List hanziInfos = new List(); 73 | HanziSqlliteHelper hanziSqlliteHelper = new HanziSqlliteHelper(workerModel.Item1); 74 | int rowIndex = 1; 75 | foreach (var hanzi in workerModel.Item2) 76 | { 77 | var result = HanziApiHelper.FindHanzi(hanzi); 78 | if (result == null) 79 | { 80 | continue; 81 | } 82 | 83 | var radical = result.Radical == "难检字" ? string.Empty : result.Radical; 84 | 85 | var biHuaCode = string.Empty; 86 | var bihuaCodeStr = result?.SimpleDetailContent.FirstOrDefault(i => i.Contains("笔顺编号:")); 87 | if (!string.IsNullOrWhiteSpace(bihuaCodeStr)) 88 | { 89 | biHuaCode = bihuaCodeStr.Replace("笔顺编号:", ""); 90 | } 91 | 92 | //var content = $"{hanzi}|{result.Pinyin}|{radical}|{result.Bihua}|{result.WuBi}|{biHuaCode}"; 93 | 94 | Match match = Regex.Match(biHuaCode, "\\d+"); 95 | if (match.Success) 96 | { 97 | biHuaCode = match.Value; 98 | } 99 | else if (!match.Success && int.TryParse(match.Value, out int biHuaCodeConvertResult)) 100 | { 101 | biHuaCode = biHuaCodeConvertResult == 0 ? string.Empty : biHuaCodeConvertResult.ToString(); 102 | } 103 | 104 | var hanziInfo = new HanziInfo() 105 | { 106 | ID = rowIndex, 107 | Hanzi = hanzi, 108 | Pinyin = result.Pinyin, 109 | Radical = radical == "难检字" ? string.Empty : radical, 110 | StrokeCount = Convert.ToInt32(result.Bihua), 111 | StrokeCode = biHuaCode, 112 | WuBi = result.WuBi, 113 | SimpleIntroduction = string.Join("\r\n", result.SimpleDetailContent), 114 | DetailIntroduction = string.Join("\r\n", result.DetailContent), 115 | }; 116 | 117 | hanziSqlliteHelper.SaveHanzi(hanziInfo); 118 | //报告进度 119 | var progress = rowIndex * 100 / workerModel.Item2.Count; 120 | worker.ReportProgress(Convert.ToInt32(rowIndex)); 121 | rowIndex++; 122 | } 123 | 124 | e.Result = workerModel.Item1; 125 | } 126 | 127 | private void BackgroundWorker_ProgressChanged(object sender, ProgressChangedEventArgs e) 128 | { 129 | LoadingTextBlock.Text = "已获取" + e.ProgressPercentage + "个汉字"; 130 | } 131 | 132 | 133 | 134 | #region 废弃代码 135 | 136 | 137 | private void GetAllHanziDetailsFromJuHeApi() 138 | { 139 | var filePath = @"F:\OneDrive\WorkArea\工作项\汉字\汉字列表.txt"; 140 | var hanziLines = File.ReadAllLines(filePath); 141 | var hanziList = hanziLines.Where(i => !string.IsNullOrWhiteSpace(i)).ToList(); 142 | 143 | var searchedContent = new List(); 144 | foreach (var hanzi in hanziList) 145 | { 146 | var result = HanziApiHelper.FindHanzi(hanzi); 147 | if (result == null) 148 | { 149 | continue; 150 | } 151 | 152 | var radical = result.Radical == "难检字" ? string.Empty : result.Radical; 153 | 154 | var biHuaCode = string.Empty; 155 | var bihuaCodeStr = result?.SimpleDetailContent.FirstOrDefault(i => i.Contains("笔顺编号:")); 156 | if (!string.IsNullOrWhiteSpace(bihuaCodeStr)) 157 | { 158 | biHuaCode = bihuaCodeStr.Replace("笔顺编号:", ""); 159 | } 160 | 161 | var content = $"{hanzi}|{result.Pinyin}|{radical}|{result.Bihua}|{result.WuBi}|{biHuaCode}"; 162 | 163 | searchedContent.Add(content); 164 | } 165 | 166 | var newfilePath = @"F:\OneDrive\WorkArea\工作项\汉字\汉字列表New.txt"; 167 | File.WriteAllLines(newfilePath, searchedContent); 168 | } 169 | 170 | private void TranslateTextToExcel() 171 | { 172 | var filePath = @"F:\OneDrive\WorkArea\工作项\汉字\汉字列表New.txt"; 173 | var hanziLines = File.ReadAllLines(filePath); 174 | var hanziDataList = hanziLines.Where(i => !string.IsNullOrWhiteSpace(i)).ToList(); 175 | 176 | ExcelOperationHelper.SaveHanziTextLinesToExcel(hanziDataList); 177 | } 178 | 179 | private void SaveHanziTextLinesToDB() 180 | { 181 | var filePath = @"F:\OneDrive\WorkArea\工作项\汉字\汉字列表New.txt"; 182 | var hanziLines = File.ReadAllLines(filePath); 183 | var hanziDataList = hanziLines.Where(i => !string.IsNullOrWhiteSpace(i)).ToList(); 184 | 185 | int rowIndex = 1; 186 | var searchedContent = new List(); 187 | 188 | var hanziSqlliteHelper = new HanziSqlliteHelper(Path.Combine(System.AppDomain.CurrentDomain.BaseDirectory, "Hanzi.db3")); 189 | var allHanziInfos = hanziSqlliteHelper.GetAllHanziInfos(); 190 | foreach (var hanziData in hanziDataList) 191 | { 192 | var hanziDataTemp = hanziData; 193 | var hanzi = hanziDataTemp.Substring(0, hanziDataTemp.IndexOf("|")); 194 | 195 | hanziDataTemp = hanziDataTemp.Substring(hanzi.Length + 1, hanziDataTemp.Length - hanzi.Length - 1); 196 | var pinyin = hanziDataTemp.Substring(0, hanziDataTemp.IndexOf("|")); 197 | 198 | hanziDataTemp = hanziDataTemp.Substring(pinyin.Length + 1, hanziDataTemp.Length - pinyin.Length - 1); 199 | var radical = hanziDataTemp.Substring(0, hanziDataTemp.IndexOf("|")); 200 | 201 | hanziDataTemp = hanziDataTemp.Substring(radical.Length + 1, hanziDataTemp.Length - radical.Length - 1); 202 | var biHua = hanziDataTemp.Substring(0, hanziDataTemp.IndexOf("|")); 203 | 204 | hanziDataTemp = hanziDataTemp.Substring(biHua.Length + 1, hanziDataTemp.Length - biHua.Length - 1); 205 | var wubi = hanziDataTemp.Substring(0, hanziDataTemp.IndexOf("|")); 206 | 207 | hanziDataTemp = hanziDataTemp.Substring(wubi.Length + 1, hanziDataTemp.Length - wubi.Length - 1); 208 | var biHuaCode = hanziDataTemp; 209 | 210 | //姁|xǔ|女|8|vqkg|53135251y?)〕神态和悦娇媚,如“姣服极丽,姁姁致态。” 211 | Match match = Regex.Match(biHuaCode, "\\d+"); 212 | var tryParse = int.TryParse(match.Value, out int biHuaCodeConvertResult); 213 | 214 | //var aaa = new HanziInfo() 215 | //{ 216 | // ID = rowIndex, 217 | // Hanzi = hanzi, 218 | // Pinyin = pinyin, 219 | // Radical = radical == "难检字" ? string.Empty : radical, 220 | // StrokeCount = Convert.ToInt32(biHua), 221 | // WuBi = wubi, 222 | 223 | // StrokeCode = biHuaCodeConvertResult.ToString(), 224 | //}; 225 | //hanziSqlliteHelper.SaveHanzi(aaa); 226 | 227 | if (allHanziInfos.Any(i => i.Hanzi == hanzi && string.IsNullOrWhiteSpace(i.StrokeCode))) 228 | { 229 | var hanziInfo = allHanziInfos.First(i => i.Hanzi == hanzi); 230 | hanziInfo.StrokeCode = 231 | biHuaCodeConvertResult == 0 ? string.Empty : biHuaCodeConvertResult.ToString(); 232 | hanziSqlliteHelper.UpdateHanziInfo(hanziInfo); 233 | } 234 | 235 | rowIndex++; 236 | } 237 | } 238 | 239 | #endregion 240 | } 241 | } 242 | -------------------------------------------------------------------------------- /HanziRadical/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Resources; 3 | using System.Runtime.CompilerServices; 4 | using System.Runtime.InteropServices; 5 | using System.Windows; 6 | 7 | // 有关程序集的一般信息由以下 8 | // 控制。更改这些特性值可修改 9 | // 与程序集关联的信息。 10 | [assembly: AssemblyTitle("HanziDictionary")] 11 | [assembly: AssemblyDescription("")] 12 | [assembly: AssemblyConfiguration("")] 13 | [assembly: AssemblyCompany("")] 14 | [assembly: AssemblyProduct("HanziDictionary")] 15 | [assembly: AssemblyCopyright("Copyright © 2018")] 16 | [assembly: AssemblyTrademark("")] 17 | [assembly: AssemblyCulture("")] 18 | 19 | // 将 ComVisible 设置为 false 会使此程序集中的类型 20 | //对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型 21 | //请将此类型的 ComVisible 特性设置为 true。 22 | [assembly: ComVisible(false)] 23 | 24 | //若要开始生成可本地化的应用程序,请设置 25 | //.csproj 文件中的 CultureYouAreCodingWith 26 | //例如,如果您在源文件中使用的是美国英语, 27 | //使用的是美国英语,请将 设置为 en-US。 然后取消 28 | //对以下 NeutralResourceLanguage 特性的注释。 更新 29 | //以下行中的“en-US”以匹配项目文件中的 UICulture 设置。 30 | 31 | //[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)] 32 | 33 | 34 | [assembly: ThemeInfo( 35 | ResourceDictionaryLocation.None, //主题特定资源词典所处位置 36 | //(未在页面中找到资源时使用, 37 | //或应用程序资源字典中找到时使用) 38 | ResourceDictionaryLocation.SourceAssembly //常规资源词典所处位置 39 | //(未在页面中找到资源时使用, 40 | //、应用程序或任何主题专用资源字典中找到时使用) 41 | )] 42 | 43 | 44 | // 程序集的版本信息由下列四个值组成: 45 | // 46 | // 主版本 47 | // 次版本 48 | // 生成号 49 | // 修订号 50 | // 51 | // 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号 52 | // 方法是按如下所示使用“*”: : 53 | // [assembly: AssemblyVersion("1.0.*")] 54 | [assembly: AssemblyVersion("1.0.0.0")] 55 | [assembly: AssemblyFileVersion("1.0.0.0")] 56 | -------------------------------------------------------------------------------- /HanziRadical/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace HanziDictionary.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// 一个强类型的资源类,用于查找本地化的字符串等。 17 | /// 18 | // 此类是由 StronglyTypedResourceBuilder 19 | // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。 20 | // 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen 21 | // (以 /str 作为命令选项),或重新生成 VS 项目。 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// 返回此类使用的缓存的 ResourceManager 实例。 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("HanziDictionary.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// 使用此强类型资源类,为所有资源查找 51 | /// 重写当前线程的 CurrentUICulture 属性。 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /HanziRadical/Properties/Resources.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | text/microsoft-resx 107 | 108 | 109 | 2.0 110 | 111 | 112 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 113 | 114 | 115 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | -------------------------------------------------------------------------------- /HanziRadical/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace HanziDictionary.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.7.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /HanziRadical/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /HanziRadical/RequestResponseHelper.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.IO; 4 | using System.Linq; 5 | using System.Net; 6 | using System.Text; 7 | using System.Threading.Tasks; 8 | using System.Web; 9 | 10 | namespace HanziDictionary 11 | { 12 | public class HttpRequestBase 13 | { 14 | /// 15 | /// Http (GET/POST) 16 | /// 17 | /// 请求URL 18 | /// 请求参数 19 | /// 请求方法 20 | /// 响应内容 21 | public static string SendPost(string url, IDictionary parameters, string method) 22 | { 23 | if (method.ToLower() == "post") 24 | { 25 | HttpWebRequest req = null; 26 | HttpWebResponse rsp = null; 27 | System.IO.Stream reqStream = null; 28 | try 29 | { 30 | req = (HttpWebRequest)WebRequest.Create(url); 31 | req.Method = method; 32 | req.KeepAlive = false; 33 | req.ProtocolVersion = HttpVersion.Version10; 34 | req.Timeout = 5000; 35 | req.ContentType = "application/x-www-form-urlencoded;charset=utf-8"; 36 | byte[] postData = Encoding.UTF8.GetBytes(BuildQuery(parameters, "utf8")); 37 | reqStream = req.GetRequestStream(); 38 | reqStream.Write(postData, 0, postData.Length); 39 | rsp = (HttpWebResponse)req.GetResponse(); 40 | Encoding encoding = Encoding.GetEncoding(rsp.CharacterSet); 41 | return GetResponseAsString(rsp, encoding); 42 | } 43 | catch (Exception ex) 44 | { 45 | return ex.Message; 46 | } 47 | finally 48 | { 49 | if (reqStream != null) reqStream.Close(); 50 | if (rsp != null) rsp.Close(); 51 | } 52 | } 53 | else 54 | { 55 | //创建请求 56 | HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url + "?" + BuildQuery(parameters, "utf8")); 57 | 58 | //GET请求 59 | request.Method = "GET"; 60 | request.ReadWriteTimeout = 5000; 61 | request.ContentType = "text/html;charset=UTF-8"; 62 | HttpWebResponse response = (HttpWebResponse)request.GetResponse(); 63 | Stream myResponseStream = response.GetResponseStream(); 64 | StreamReader myStreamReader = new StreamReader(myResponseStream, Encoding.GetEncoding("utf-8")); 65 | 66 | //返回内容 67 | string retString = myStreamReader.ReadToEnd(); 68 | return retString; 69 | } 70 | } 71 | 72 | /// 73 | /// 组装普通文本请求参数。 74 | /// 75 | /// Key-Value形式请求参数字典 76 | /// URL编码后的请求数据 77 | public static string BuildQuery(IDictionary parameters, string encode) 78 | { 79 | StringBuilder postData = new StringBuilder(); 80 | bool hasParam = false; 81 | IEnumerator> dem = parameters.GetEnumerator(); 82 | while (dem.MoveNext()) 83 | { 84 | string name = dem.Current.Key; 85 | string value = dem.Current.Value; 86 | // 忽略参数名或参数值为空的参数 87 | if (!string.IsNullOrEmpty(name))//&& !string.IsNullOrEmpty(value) 88 | { 89 | if (hasParam) 90 | { 91 | postData.Append("&"); 92 | } 93 | postData.Append(name); 94 | postData.Append("="); 95 | if (encode == "gb2312") 96 | { 97 | postData.Append(HttpUtility.UrlEncode(value, Encoding.GetEncoding("gb2312"))); 98 | } 99 | else if (encode == "utf8") 100 | { 101 | postData.Append(HttpUtility.UrlEncode(value, Encoding.UTF8)); 102 | } 103 | else 104 | { 105 | postData.Append(value); 106 | } 107 | hasParam = true; 108 | } 109 | } 110 | return postData.ToString(); 111 | } 112 | 113 | /// 114 | /// 把响应流转换为文本。 115 | /// 116 | /// 响应流对象 117 | /// 编码方式 118 | /// 响应文本 119 | public static string GetResponseAsString(HttpWebResponse rsp, Encoding encoding) 120 | { 121 | System.IO.Stream stream = null; 122 | StreamReader reader = null; 123 | try 124 | { 125 | // 以字符流的方式读取HTTP响应 126 | stream = rsp.GetResponseStream(); 127 | reader = new StreamReader(stream, encoding); 128 | return reader.ReadToEnd(); 129 | } 130 | finally 131 | { 132 | // 释放资源 133 | if (reader != null) reader.Close(); 134 | if (stream != null) stream.Close(); 135 | if (rsp != null) rsp.Close(); 136 | } 137 | } 138 | } 139 | } 140 | -------------------------------------------------------------------------------- /HanziRadical/bin/Debug/Aspose.Cells.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/bin/Debug/Aspose.Cells.dll -------------------------------------------------------------------------------- /HanziRadical/bin/Debug/EntityFramework.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/bin/Debug/EntityFramework.SqlServer.dll -------------------------------------------------------------------------------- /HanziRadical/bin/Debug/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/bin/Debug/EntityFramework.dll -------------------------------------------------------------------------------- /HanziRadical/bin/Debug/Hanzi.db3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/bin/Debug/Hanzi.db3 -------------------------------------------------------------------------------- /HanziRadical/bin/Debug/HanziDictionary.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/bin/Debug/HanziDictionary.exe -------------------------------------------------------------------------------- /HanziRadical/bin/Debug/HanziDictionary.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 |
6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /HanziRadical/bin/Debug/HanziDictionary.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/bin/Debug/HanziDictionary.pdb -------------------------------------------------------------------------------- /HanziRadical/bin/Debug/HanziRadical.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/bin/Debug/HanziRadical.exe -------------------------------------------------------------------------------- /HanziRadical/bin/Debug/HanziRadical.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /HanziRadical/bin/Debug/HanziRadical.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/bin/Debug/HanziRadical.pdb -------------------------------------------------------------------------------- /HanziRadical/bin/Debug/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/bin/Debug/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /HanziRadical/bin/Debug/System.Data.SQLite.EF6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/bin/Debug/System.Data.SQLite.EF6.dll -------------------------------------------------------------------------------- /HanziRadical/bin/Debug/System.Data.SQLite.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/bin/Debug/System.Data.SQLite.Linq.dll -------------------------------------------------------------------------------- /HanziRadical/bin/Debug/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/bin/Debug/System.Data.SQLite.dll -------------------------------------------------------------------------------- /HanziRadical/bin/Debug/System.Data.SQLite.dll.config: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 17 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /HanziRadical/bin/Debug/linq2db.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/bin/Debug/linq2db.dll -------------------------------------------------------------------------------- /HanziRadical/bin/Debug/x64/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/bin/Debug/x64/SQLite.Interop.dll -------------------------------------------------------------------------------- /HanziRadical/bin/Debug/x86/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/bin/Debug/x86/SQLite.Interop.dll -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/App.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "0CB0F6F39163FE19096E1F92DCADA6B9FFBF7EB9" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // 此代码由工具生成。 5 | // 运行时版本:4.0.30319.42000 6 | // 7 | // 对此文件的更改可能会导致不正确的行为,并且如果 8 | // 重新生成代码,这些更改将会丢失。 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | using System; 13 | using System.Diagnostics; 14 | using System.Windows; 15 | using System.Windows.Automation; 16 | using System.Windows.Controls; 17 | using System.Windows.Controls.Primitives; 18 | using System.Windows.Data; 19 | using System.Windows.Documents; 20 | using System.Windows.Ink; 21 | using System.Windows.Input; 22 | using System.Windows.Markup; 23 | using System.Windows.Media; 24 | using System.Windows.Media.Animation; 25 | using System.Windows.Media.Effects; 26 | using System.Windows.Media.Imaging; 27 | using System.Windows.Media.Media3D; 28 | using System.Windows.Media.TextFormatting; 29 | using System.Windows.Navigation; 30 | using System.Windows.Shapes; 31 | using System.Windows.Shell; 32 | 33 | 34 | namespace HanziDictionary { 35 | 36 | 37 | /// 38 | /// App 39 | /// 40 | public partial class App : System.Windows.Application { 41 | 42 | /// 43 | /// InitializeComponent 44 | /// 45 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 46 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 47 | public void InitializeComponent() { 48 | 49 | #line 4 "..\..\App.xaml" 50 | this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative); 51 | 52 | #line default 53 | #line hidden 54 | } 55 | 56 | /// 57 | /// Application Entry Point. 58 | /// 59 | [System.STAThreadAttribute()] 60 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 61 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 62 | public static void Main() { 63 | HanziDictionary.App app = new HanziDictionary.App(); 64 | app.InitializeComponent(); 65 | app.Run(); 66 | } 67 | } 68 | } 69 | 70 | -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/App.g.i.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "0CB0F6F39163FE19096E1F92DCADA6B9FFBF7EB9" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // 此代码由工具生成。 5 | // 运行时版本:4.0.30319.42000 6 | // 7 | // 对此文件的更改可能会导致不正确的行为,并且如果 8 | // 重新生成代码,这些更改将会丢失。 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | using System; 13 | using System.Diagnostics; 14 | using System.Windows; 15 | using System.Windows.Automation; 16 | using System.Windows.Controls; 17 | using System.Windows.Controls.Primitives; 18 | using System.Windows.Data; 19 | using System.Windows.Documents; 20 | using System.Windows.Ink; 21 | using System.Windows.Input; 22 | using System.Windows.Markup; 23 | using System.Windows.Media; 24 | using System.Windows.Media.Animation; 25 | using System.Windows.Media.Effects; 26 | using System.Windows.Media.Imaging; 27 | using System.Windows.Media.Media3D; 28 | using System.Windows.Media.TextFormatting; 29 | using System.Windows.Navigation; 30 | using System.Windows.Shapes; 31 | using System.Windows.Shell; 32 | 33 | 34 | namespace HanziDictionary { 35 | 36 | 37 | /// 38 | /// App 39 | /// 40 | public partial class App : System.Windows.Application { 41 | 42 | /// 43 | /// InitializeComponent 44 | /// 45 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 46 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 47 | public void InitializeComponent() { 48 | 49 | #line 4 "..\..\App.xaml" 50 | this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative); 51 | 52 | #line default 53 | #line hidden 54 | } 55 | 56 | /// 57 | /// Application Entry Point. 58 | /// 59 | [System.STAThreadAttribute()] 60 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 61 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 62 | public static void Main() { 63 | HanziDictionary.App app = new HanziDictionary.App(); 64 | app.InitializeComponent(); 65 | app.Run(); 66 | } 67 | } 68 | } 69 | 70 | -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/HanziDictionary.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/obj/Debug/HanziDictionary.Properties.Resources.resources -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/HanziDictionary.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/obj/Debug/HanziDictionary.csproj.CopyComplete -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/HanziDictionary.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 5956f53e940215339f863e51398e4a209280c4d3 2 | -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/HanziDictionary.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | F:\GitHub\HanziRadical\HanziRadical\obj\Debug\MainWindow.baml 2 | F:\GitHub\HanziRadical\HanziRadical\obj\Debug\MainWindow.g.cs 3 | F:\GitHub\HanziRadical\HanziRadical\obj\Debug\App.g.cs 4 | F:\GitHub\HanziRadical\HanziRadical\obj\Debug\HanziDictionary_MarkupCompile.cache 5 | F:\GitHub\HanziRadical\HanziRadical\obj\Debug\HanziDictionary.g.resources 6 | F:\GitHub\HanziRadical\HanziRadical\obj\Debug\HanziDictionary.Properties.Resources.resources 7 | F:\GitHub\HanziRadical\HanziRadical\obj\Debug\HanziDictionary.csproj.GenerateResource.cache 8 | F:\GitHub\HanziRadical\HanziRadical\obj\Debug\HanziDictionary.csproj.CoreCompileInputs.cache 9 | F:\GitHub\HanziRadical\HanziRadical\bin\Debug\HanziDictionary.exe.config 10 | F:\GitHub\HanziRadical\HanziRadical\bin\Debug\HanziDictionary.exe 11 | F:\GitHub\HanziRadical\HanziRadical\bin\Debug\HanziDictionary.pdb 12 | F:\GitHub\HanziRadical\HanziRadical\bin\Debug\Aspose.Cells.dll 13 | F:\GitHub\HanziRadical\HanziRadical\bin\Debug\Newtonsoft.Json.dll 14 | F:\GitHub\HanziRadical\HanziRadical\obj\Debug\HanziDictionary.csproj.CopyComplete 15 | F:\GitHub\HanziRadical\HanziRadical\obj\Debug\HanziDictionary.exe 16 | F:\GitHub\HanziRadical\HanziRadical\obj\Debug\HanziDictionary.pdb 17 | F:\GitHub\HanziRadical\HanziRadical\obj\Debug\HanziDictionary.csprojAssemblyReference.cache 18 | F:\GitHub\HanziDictionary\HanziRadical\obj\Debug\MainWindow.baml 19 | F:\GitHub\HanziDictionary\HanziRadical\obj\Debug\MainWindow.g.cs 20 | F:\GitHub\HanziDictionary\HanziRadical\obj\Debug\App.g.cs 21 | F:\GitHub\HanziDictionary\HanziRadical\obj\Debug\HanziDictionary_MarkupCompile.cache 22 | F:\GitHub\HanziDictionary\HanziRadical\obj\Debug\HanziDictionary.g.resources 23 | F:\GitHub\HanziDictionary\HanziRadical\obj\Debug\HanziDictionary.Properties.Resources.resources 24 | F:\GitHub\HanziDictionary\HanziRadical\obj\Debug\HanziDictionary.csproj.GenerateResource.cache 25 | F:\GitHub\HanziDictionary\HanziRadical\obj\Debug\HanziDictionary.csproj.CoreCompileInputs.cache 26 | F:\GitHub\HanziDictionary\HanziRadical\obj\Debug\HanziDictionary.exe 27 | F:\GitHub\HanziDictionary\HanziRadical\obj\Debug\HanziDictionary.pdb 28 | F:\GitHub\HanziDictionary\HanziRadical\bin\Debug\HanziDictionary.exe.config 29 | F:\GitHub\HanziDictionary\HanziRadical\bin\Debug\HanziDictionary.exe 30 | F:\GitHub\HanziDictionary\HanziRadical\bin\Debug\HanziDictionary.pdb 31 | F:\GitHub\HanziDictionary\HanziRadical\bin\Debug\Aspose.Cells.dll 32 | F:\GitHub\HanziDictionary\HanziRadical\bin\Debug\linq2db.dll 33 | F:\GitHub\HanziDictionary\HanziRadical\bin\Debug\Newtonsoft.Json.dll 34 | F:\GitHub\HanziDictionary\HanziRadical\obj\Debug\HanziDictionary.csproj.CopyComplete 35 | F:\GitHub\HanziDictionary\HanziRadical\bin\Debug\EntityFramework.dll 36 | F:\GitHub\HanziDictionary\HanziRadical\bin\Debug\EntityFramework.SqlServer.dll 37 | F:\GitHub\HanziDictionary\HanziRadical\bin\Debug\System.Data.SQLite.dll 38 | F:\GitHub\HanziDictionary\HanziRadical\bin\Debug\System.Data.SQLite.EF6.dll 39 | F:\GitHub\HanziDictionary\HanziRadical\bin\Debug\System.Data.SQLite.Linq.dll 40 | F:\GitHub\HanziDictionary\HanziRadical\bin\Debug\EntityFramework.xml 41 | F:\GitHub\HanziDictionary\HanziRadical\bin\Debug\EntityFramework.SqlServer.xml 42 | F:\GitHub\HanziDictionary\HanziRadical\bin\Debug\System.Data.SQLite.xml 43 | F:\GitHub\HanziDictionary\HanziRadical\bin\Debug\System.Data.SQLite.dll.config 44 | F:\GitHub\HanziDictionary\HanziRadical\bin\Debug\汉字列表.txt 45 | F:\GitHub\HanziDictionary\HanziRadical\obj\Debug\HanziDictionary_Content.g.cs 46 | F:\GitHub\HanziDictionary\HanziRadical\bin\Debug\Hanzi.db3 47 | F:\GitHub\HanziDictionary\HanziRadical\obj\Debug\HanziDictionary.csprojAssemblyReference.cache 48 | -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/HanziDictionary.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/obj/Debug/HanziDictionary.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/HanziDictionary.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/obj/Debug/HanziDictionary.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/HanziDictionary.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/obj/Debug/HanziDictionary.exe -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/HanziDictionary.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/obj/Debug/HanziDictionary.g.resources -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/HanziDictionary.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/obj/Debug/HanziDictionary.pdb -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/HanziDictionary_Content.g.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("hanzi.db3")] 12 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("%e6%b1%89%e5%ad%97%e5%88%97%e8%a1%a8.txt")] 13 | 14 | 15 | -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/HanziDictionary_Content.g.i.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("hanzi.db3")] 12 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("%e6%b1%89%e5%ad%97%e5%88%97%e8%a1%a8.txt")] 13 | 14 | 15 | -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/HanziDictionary_MarkupCompile.cache: -------------------------------------------------------------------------------- 1 | HanziDictionary 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | F:\GitHub\HanziDictionary\HanziRadical\obj\Debug\ 8 | HanziDictionary 9 | none 10 | false 11 | DEBUG;TRACE 12 | F:\GitHub\HanziDictionary\HanziRadical\App.xaml 13 | 11151548125 14 | 21690444033 15 | 10-466756904 16 | 25-1226434866 17 | MainWindow.xaml; 18 | 19 | False 20 | 21 | -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/HanziDictionary_MarkupCompile.i.cache: -------------------------------------------------------------------------------- 1 | HanziDictionary 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | F:\GitHub\HanziDictionary\HanziRadical\obj\Debug\ 8 | HanziDictionary 9 | none 10 | false 11 | DEBUG;TRACE 12 | F:\GitHub\HanziDictionary\HanziRadical\App.xaml 13 | 11151548125 14 | 21690444033 15 | 1484486196 16 | 25-1226434866 17 | MainWindow.xaml; 18 | 19 | False 20 | 21 | -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/HanziRadical.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/obj/Debug/HanziRadical.Properties.Resources.resources -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/HanziRadical.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/obj/Debug/HanziRadical.csproj.CopyComplete -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/HanziRadical.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 303591cb58d61abf70efdcc5b483d951d20a718d 2 | -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/HanziRadical.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | F:\GitHub\HanziRadical\HanziRadical\bin\Debug\Newtonsoft.Json.dll 2 | F:\GitHub\HanziRadical\HanziRadical\bin\Debug\HanziRadical.exe.config 3 | F:\GitHub\HanziRadical\HanziRadical\bin\Debug\HanziRadical.exe 4 | F:\GitHub\HanziRadical\HanziRadical\bin\Debug\HanziRadical.pdb 5 | F:\GitHub\HanziRadical\HanziRadical\obj\Debug\HanziRadical.csprojAssemblyReference.cache 6 | F:\GitHub\HanziRadical\HanziRadical\obj\Debug\MainWindow.g.cs 7 | F:\GitHub\HanziRadical\HanziRadical\obj\Debug\App.g.cs 8 | F:\GitHub\HanziRadical\HanziRadical\obj\Debug\HanziRadical_MarkupCompile.cache 9 | F:\GitHub\HanziRadical\HanziRadical\obj\Debug\HanziRadical_MarkupCompile.lref 10 | F:\GitHub\HanziRadical\HanziRadical\obj\Debug\MainWindow.baml 11 | F:\GitHub\HanziRadical\HanziRadical\obj\Debug\HanziRadical.g.resources 12 | F:\GitHub\HanziRadical\HanziRadical\obj\Debug\HanziRadical.Properties.Resources.resources 13 | F:\GitHub\HanziRadical\HanziRadical\obj\Debug\HanziRadical.csproj.GenerateResource.cache 14 | F:\GitHub\HanziRadical\HanziRadical\obj\Debug\HanziRadical.csproj.CoreCompileInputs.cache 15 | F:\GitHub\HanziRadical\HanziRadical\obj\Debug\HanziRadical.csproj.CopyComplete 16 | F:\GitHub\HanziRadical\HanziRadical\obj\Debug\HanziRadical.exe 17 | F:\GitHub\HanziRadical\HanziRadical\obj\Debug\HanziRadical.pdb 18 | -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/HanziRadical.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/obj/Debug/HanziRadical.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/HanziRadical.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/obj/Debug/HanziRadical.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/HanziRadical.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/obj/Debug/HanziRadical.exe -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/HanziRadical.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/obj/Debug/HanziRadical.g.resources -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/HanziRadical.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/obj/Debug/HanziRadical.pdb -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/HanziRadical_Content.g.i.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("newtonsoft.json.dll")] 12 | 13 | 14 | -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/HanziRadical_MarkupCompile.cache: -------------------------------------------------------------------------------- 1 | HanziRadical 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | F:\GitHub\HanziRadical\HanziRadical\obj\Debug\ 8 | HanziRadical 9 | none 10 | false 11 | DEBUG;TRACE 12 | F:\GitHub\HanziRadical\HanziRadical\App.xaml 13 | 11151548125 14 | 15 | 7-20235433 16 | 16127868475 17 | MainWindow.xaml; 18 | 19 | False 20 | 21 | -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/HanziRadical_MarkupCompile.i.cache: -------------------------------------------------------------------------------- 1 | HanziRadical 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | F:\GitHub\HanziRadical\HanziRadical\obj\Debug\ 8 | HanziRadical 9 | none 10 | false 11 | DEBUG;TRACE 12 | F:\GitHub\HanziRadical\HanziRadical\App.xaml 13 | 11151548125 14 | 15 | 11531007667 16 | 16127868475 17 | MainWindow.xaml; 18 | 19 | True 20 | 21 | -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/HanziRadical_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 |  2 | 3 | FF:\GitHub\HanziRadical\HanziRadical\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/HanziRadical_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 |  2 | 3 | FF:\GitHub\HanziRadical\HanziRadical\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/obj/Debug/MainWindow.baml -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/MainWindow.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "A6FDA3A955D4B24105647E2BA640A04117836639" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // 此代码由工具生成。 5 | // 运行时版本:4.0.30319.42000 6 | // 7 | // 对此文件的更改可能会导致不正确的行为,并且如果 8 | // 重新生成代码,这些更改将会丢失。 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | using System; 13 | using System.Diagnostics; 14 | using System.Windows; 15 | using System.Windows.Automation; 16 | using System.Windows.Controls; 17 | using System.Windows.Controls.Primitives; 18 | using System.Windows.Data; 19 | using System.Windows.Documents; 20 | using System.Windows.Ink; 21 | using System.Windows.Input; 22 | using System.Windows.Markup; 23 | using System.Windows.Media; 24 | using System.Windows.Media.Animation; 25 | using System.Windows.Media.Effects; 26 | using System.Windows.Media.Imaging; 27 | using System.Windows.Media.Media3D; 28 | using System.Windows.Media.TextFormatting; 29 | using System.Windows.Navigation; 30 | using System.Windows.Shapes; 31 | using System.Windows.Shell; 32 | 33 | 34 | namespace HanziDictionary { 35 | 36 | 37 | /// 38 | /// MainWindow 39 | /// 40 | public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { 41 | 42 | 43 | #line 11 "..\..\MainWindow.xaml" 44 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 45 | internal System.Windows.Controls.TextBox HanziFilePathTextBox; 46 | 47 | #line default 48 | #line hidden 49 | 50 | 51 | #line 14 "..\..\MainWindow.xaml" 52 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 53 | internal System.Windows.Controls.TextBlock LoadingTextBlock; 54 | 55 | #line default 56 | #line hidden 57 | 58 | private bool _contentLoaded; 59 | 60 | /// 61 | /// InitializeComponent 62 | /// 63 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 64 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 65 | public void InitializeComponent() { 66 | if (_contentLoaded) { 67 | return; 68 | } 69 | _contentLoaded = true; 70 | System.Uri resourceLocater = new System.Uri("/HanziDictionary;component/mainwindow.xaml", System.UriKind.Relative); 71 | 72 | #line 1 "..\..\MainWindow.xaml" 73 | System.Windows.Application.LoadComponent(this, resourceLocater); 74 | 75 | #line default 76 | #line hidden 77 | } 78 | 79 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 80 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 81 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 82 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] 83 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] 84 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] 85 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { 86 | switch (connectionId) 87 | { 88 | case 1: 89 | this.HanziFilePathTextBox = ((System.Windows.Controls.TextBox)(target)); 90 | return; 91 | case 2: 92 | 93 | #line 13 "..\..\MainWindow.xaml" 94 | ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.ButtonBase_OnClick); 95 | 96 | #line default 97 | #line hidden 98 | return; 99 | case 3: 100 | this.LoadingTextBlock = ((System.Windows.Controls.TextBlock)(target)); 101 | return; 102 | } 103 | this._contentLoaded = true; 104 | } 105 | } 106 | } 107 | 108 | -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/MainWindow.g.i.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "A6FDA3A955D4B24105647E2BA640A04117836639" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // 此代码由工具生成。 5 | // 运行时版本:4.0.30319.42000 6 | // 7 | // 对此文件的更改可能会导致不正确的行为,并且如果 8 | // 重新生成代码,这些更改将会丢失。 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | using System; 13 | using System.Diagnostics; 14 | using System.Windows; 15 | using System.Windows.Automation; 16 | using System.Windows.Controls; 17 | using System.Windows.Controls.Primitives; 18 | using System.Windows.Data; 19 | using System.Windows.Documents; 20 | using System.Windows.Ink; 21 | using System.Windows.Input; 22 | using System.Windows.Markup; 23 | using System.Windows.Media; 24 | using System.Windows.Media.Animation; 25 | using System.Windows.Media.Effects; 26 | using System.Windows.Media.Imaging; 27 | using System.Windows.Media.Media3D; 28 | using System.Windows.Media.TextFormatting; 29 | using System.Windows.Navigation; 30 | using System.Windows.Shapes; 31 | using System.Windows.Shell; 32 | 33 | 34 | namespace HanziDictionary { 35 | 36 | 37 | /// 38 | /// MainWindow 39 | /// 40 | public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { 41 | 42 | 43 | #line 11 "..\..\MainWindow.xaml" 44 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 45 | internal System.Windows.Controls.TextBox HanziFilePathTextBox; 46 | 47 | #line default 48 | #line hidden 49 | 50 | 51 | #line 14 "..\..\MainWindow.xaml" 52 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 53 | internal System.Windows.Controls.TextBlock LoadingTextBlock; 54 | 55 | #line default 56 | #line hidden 57 | 58 | private bool _contentLoaded; 59 | 60 | /// 61 | /// InitializeComponent 62 | /// 63 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 64 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 65 | public void InitializeComponent() { 66 | if (_contentLoaded) { 67 | return; 68 | } 69 | _contentLoaded = true; 70 | System.Uri resourceLocater = new System.Uri("/HanziDictionary;component/mainwindow.xaml", System.UriKind.Relative); 71 | 72 | #line 1 "..\..\MainWindow.xaml" 73 | System.Windows.Application.LoadComponent(this, resourceLocater); 74 | 75 | #line default 76 | #line hidden 77 | } 78 | 79 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 80 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 81 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 82 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] 83 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] 84 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] 85 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { 86 | switch (connectionId) 87 | { 88 | case 1: 89 | this.HanziFilePathTextBox = ((System.Windows.Controls.TextBox)(target)); 90 | return; 91 | case 2: 92 | 93 | #line 13 "..\..\MainWindow.xaml" 94 | ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.ButtonBase_OnClick); 95 | 96 | #line default 97 | #line hidden 98 | return; 99 | case 3: 100 | this.LoadingTextBlock = ((System.Windows.Controls.TextBlock)(target)); 101 | return; 102 | } 103 | this._contentLoaded = true; 104 | } 105 | } 106 | } 107 | 108 | -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /HanziRadical/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/HanziRadical/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /HanziRadical/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /packages/Aspose.Cells.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/Aspose.Cells.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.2.0/EntityFramework.6.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/EntityFramework.6.2.0/EntityFramework.6.2.0.nupkg -------------------------------------------------------------------------------- /packages/EntityFramework.6.2.0/content/net40/App.config.transform: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/EntityFramework.6.2.0/content/net40/Web.config.transform: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/EntityFramework.6.2.0/lib/net40/EntityFramework.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/EntityFramework.6.2.0/lib/net40/EntityFramework.SqlServer.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.2.0/lib/net40/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/EntityFramework.6.2.0/lib/net40/EntityFramework.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.2.0/lib/net45/EntityFramework.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/EntityFramework.6.2.0/lib/net45/EntityFramework.SqlServer.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.2.0/lib/net45/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/EntityFramework.6.2.0/lib/net45/EntityFramework.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.2.0/tools/EntityFramework.PowerShell.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/EntityFramework.6.2.0/tools/EntityFramework.PowerShell.Utility.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.2.0/tools/EntityFramework.PowerShell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/EntityFramework.6.2.0/tools/EntityFramework.PowerShell.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.2.0/tools/EntityFramework.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/EntityFramework.6.2.0/tools/EntityFramework.psd1 -------------------------------------------------------------------------------- /packages/EntityFramework.6.2.0/tools/about_EntityFramework.help.txt: -------------------------------------------------------------------------------- 1 | TOPIC 2 | about_EntityFramework 3 | 4 | SHORT DESCRIPTION 5 | Provides information about Entity Framework commands. 6 | 7 | LONG DESCRIPTION 8 | This topic describes the Entity Framework commands. Entity Framework is 9 | Microsoft's recommended data access technology for new applications. 10 | 11 | The following Entity Framework cmdlets are used with Entity Framework 12 | Migrations. 13 | 14 | Cmdlet Description 15 | ----------------- --------------------------------------------------- 16 | Enable-Migrations Enables Code First Migrations in a project. 17 | 18 | Add-Migration Scaffolds a migration script for any pending model 19 | changes. 20 | 21 | Update-Database Applies any pending migrations to the database. 22 | 23 | Get-Migrations Displays the migrations that have been applied to 24 | the target database. 25 | 26 | The following Entity Framework cmdlets are used by NuGet packages that 27 | install Entity Framework providers. These commands are not usually used as 28 | part of normal application development. 29 | 30 | Cmdlet Description 31 | ------------------------------ --------------------------------------- 32 | Add-EFProvider Adds or updates an Entity Framework 33 | provider entry in the project config 34 | file. 35 | 36 | Add-EFDefaultConnectionFactory Adds or updates an Entity Framework 37 | default connection factory in the 38 | project config file. 39 | 40 | Initialize-EFConfiguration Initializes the Entity Framework 41 | section in the project config file and 42 | sets defaults. 43 | 44 | SEE ALSO 45 | Enable-Migrations 46 | Add-Migration 47 | Update-Database 48 | Get-Migrations 49 | -------------------------------------------------------------------------------- /packages/EntityFramework.6.2.0/tools/init.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | if (Get-Module | ?{ $_.Name -eq 'EntityFramework' }) 4 | { 5 | Remove-Module EntityFramework 6 | } 7 | 8 | Import-Module (Join-Path $toolsPath EntityFramework.psd1) 9 | 10 | # SIG # Begin signature block 11 | # MIIa3gYJKoZIhvcNAQcCoIIazzCCGssCAQExCzAJBgUrDgMCGgUAMGkGCisGAQQB 12 | # gjcCAQSgWzBZMDQGCisGAQQBgjcCAR4wJgIDAQAABBAfzDtgWUsITrck0sYpfvNR 13 | # AgEAAgEAAgEAAgEAAgEAMCEwCQYFKw4DAhoFAAQUjXj4E03IfImYfKMB4CA3DfY0 14 | # KZmgghWAMIIEwjCCA6qgAwIBAgITMwAAAMDeLD0HlORJeQAAAAAAwDANBgkqhkiG 15 | # 9w0BAQUFADB3MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4G 16 | # A1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSEw 17 | # HwYDVQQDExhNaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EwHhcNMTYwOTA3MTc1ODUw 18 | # WhcNMTgwOTA3MTc1ODUwWjCBsjELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hp 19 | # bmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jw 20 | # b3JhdGlvbjEMMAoGA1UECxMDQU9DMScwJQYDVQQLEx5uQ2lwaGVyIERTRSBFU046 21 | # N0FCNS0yREYyLURBM0YxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNl 22 | # cnZpY2UwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDoiKVSfklVAB4E 23 | # Oc9+r95kl32muXNITYcTbaRtuJl+MQzEnD0eU2JUXx2mI06ONnTfFW39ZQPF1pvU 24 | # WkHBrS6m8oKy7Em4Ol91RJ5Knwy1VvY2Tawqh+VxwdARRgOeFtFm0S+Pa+BrXtVU 25 | # hTtGl0BGMsKGEQKdDNGJD259Iq47qPLw3CmllE3/YFw1GGoJ9C3ry+I7ntxIjJYB 26 | # LXA122vw93OOD/zWFh1SVq2AejPxcjKtHH2hjoeTKwkFeMNtIekrUSvhbuCGxW5r 27 | # 54KW0Yus4o8392l9Vz8lSEn2j/TgPTqD6EZlzkpw54VSwede/vyqgZIrRbat0bAh 28 | # b8doY8vDAgMBAAGjggEJMIIBBTAdBgNVHQ4EFgQUFf5K2jOJ0xmF1WRZxNxTQRBP 29 | # tzUwHwYDVR0jBBgwFoAUIzT42VJGcArtQPt2+7MrsMM1sw8wVAYDVR0fBE0wSzBJ 30 | # oEegRYZDaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraS9jcmwvcHJvZHVjdHMv 31 | # TWljcm9zb2Z0VGltZVN0YW1wUENBLmNybDBYBggrBgEFBQcBAQRMMEowSAYIKwYB 32 | # BQUHMAKGPGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljcm9z 33 | # b2Z0VGltZVN0YW1wUENBLmNydDATBgNVHSUEDDAKBggrBgEFBQcDCDANBgkqhkiG 34 | # 9w0BAQUFAAOCAQEAGeJAuzJMR+kovMi8RK/LtfrKazWlR5Lx02hM9GFmMk1zWCSc 35 | # pfVY6xqfzWFllCFHBtOaJZqLiV97jfNCLpG0PULz24CWSkG7jJ+mZaCSicZ7ZC3b 36 | # WDh1zpc54llYVyyTkRVYx/mtc9GujqbS8CBZgjaT/JsECnvGAPUcLYuSGt53CU1b 37 | # UuiNwuzAhai4glcYyq3/7qMmmAtbnbCZhR5ySoMy7BwdzN70drLtafCJQncfAHXV 38 | # O5r6SX4U/2J2zvWhA8lqhZu9SRulFGRvf81VTf+k5rJ2TjL6dYtSchooJ5YVvUk6 39 | # i7bfV0VBN8xpaUhk8jbBnxhDPKIvDvnZlhPuJjCCBOswggPToAMCAQICEzMAAAF4 40 | # JVq1zSPGX5UAAQAAAXgwDQYJKoZIhvcNAQEFBQAweTELMAkGA1UEBhMCVVMxEzAR 41 | # BgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1p 42 | # Y3Jvc29mdCBDb3Jwb3JhdGlvbjEjMCEGA1UEAxMaTWljcm9zb2Z0IENvZGUgU2ln 43 | # bmluZyBQQ0EwHhcNMTcwODExMjAxMTE1WhcNMTgwODExMjAxMTE1WjCBgjELMAkG 44 | # A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx 45 | # HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEMMAoGA1UECxMDQU9DMR4w 46 | # HAYDVQQDExVNaWNyb3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUA 47 | # A4IBDwAwggEKAoIBAQCZbh1TVaudsrIbXUPPB9c8S+E+dKSbskHKYlG6SGTH8jhT 48 | # hpuvGiAO87F2b9GHVN+DvszaMkGy/xQgHaGEJLfpnb3kpakic7E0bjDHdG4KnHRb 49 | # no/wfUkGLfS79o+cw//RY8Ck6yE+0czDBcxp0Gbw5JyGP+KFqvzRR/3Tv3nt/5x0 50 | # 5ZnEOHYP+eDVikDvn/DH+oxxtiCfX3tkvtm/yX4eOb47YdmYKQjCgz2+Nil/lupY 51 | # vU0QFIjvke3jshqQINDng/vO9ys2qA0ex/q5hlLKQTST99dGoM86Ge6F723ReToq 52 | # KnGLN8kiCG7uNapOAIQrpCHZq96CVumiaA5ZvxU9AgMBAAGjggFgMIIBXDATBgNV 53 | # HSUEDDAKBggrBgEFBQcDAzAdBgNVHQ4EFgQUjuhtD3FD7tk/RKloJFX05cpgLjcw 54 | # UQYDVR0RBEowSKRGMEQxDDAKBgNVBAsTA0FPQzE0MDIGA1UEBRMrMjI5ODAzKzFh 55 | # YmY5ZTVmLWNlZDAtNDJlNi1hNjVkLWQ5MzUwOTU5ZmUwZTAfBgNVHSMEGDAWgBTL 56 | # EejK0rQWWAHJNy4zFha5TJoKHzBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3Js 57 | # Lm1pY3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNDb2RTaWdQQ0FfMDgt 58 | # MzEtMjAxMC5jcmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8v 59 | # d3d3Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY0NvZFNpZ1BDQV8wOC0zMS0y 60 | # MDEwLmNydDANBgkqhkiG9w0BAQUFAAOCAQEAYnG/oHG/xgZYR8NAMHZ/vE9GM0e4 61 | # 7YdhuTea2uY7pSGwM707wp8Wan0Fa6evK1PWfcd/XNOh2BpEv5o8RmKDoEsG0ECP 62 | # 13Jug7cklfKreBVHQ+Djg43VVFLZpuo7aOAVK6wjlcnpPUtn+SfH9K0aM2FjDKVJ 63 | # FW6XFKXBat5R+Zp6uOxWTxpSeMTeDC5zF6IY6ogR1uzU+9EQoRlAvkwX6po+exEL 64 | # nMLr4++P+fqOxIU+PODIoB8ijClAqwwKvLlMPa3qlrNHt+LweTMu7lvGC/RA18wU 65 | # zzXAeomuZ03blUw+bkOiVgWOk4S0RN7EnW7zjJV8gd/+G2dbToUi1cB/fTCCBbww 66 | # ggOkoAMCAQICCmEzJhoAAAAAADEwDQYJKoZIhvcNAQEFBQAwXzETMBEGCgmSJomT 67 | # 8ixkARkWA2NvbTEZMBcGCgmSJomT8ixkARkWCW1pY3Jvc29mdDEtMCsGA1UEAxMk 68 | # TWljcm9zb2Z0IFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5MB4XDTEwMDgzMTIy 69 | # MTkzMloXDTIwMDgzMTIyMjkzMloweTELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldh 70 | # c2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBD 71 | # b3Jwb3JhdGlvbjEjMCEGA1UEAxMaTWljcm9zb2Z0IENvZGUgU2lnbmluZyBQQ0Ew 72 | # ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCycllcGTBkvx2aYCAgQpl2 73 | # U2w+G9ZvzMvx6mv+lxYQ4N86dIMaty+gMuz/3sJCTiPVcgDbNVcKicquIEn08Gis 74 | # TUuNpb15S3GbRwfa/SXfnXWIz6pzRH/XgdvzvfI2pMlcRdyvrT3gKGiXGqelcnNW 75 | # 8ReU5P01lHKg1nZfHndFg4U4FtBzWwW6Z1KNpbJpL9oZC/6SdCnidi9U3RQwWfjS 76 | # jWL9y8lfRjFQuScT5EAwz3IpECgixzdOPaAyPZDNoTgGhVxOVoIoKgUyt0vXT2Pn 77 | # 0i1i8UU956wIAPZGoZ7RW4wmU+h6qkryRs83PDietHdcpReejcsRj1Y8wawJXwPT 78 | # AgMBAAGjggFeMIIBWjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTLEejK0rQW 79 | # WAHJNy4zFha5TJoKHzALBgNVHQ8EBAMCAYYwEgYJKwYBBAGCNxUBBAUCAwEAATAj 80 | # BgkrBgEEAYI3FQIEFgQU/dExTtMmipXhmGA7qDFvpjy82C0wGQYJKwYBBAGCNxQC 81 | # BAweCgBTAHUAYgBDAEEwHwYDVR0jBBgwFoAUDqyCYEBWJ5flJRP8KuEKU5VZ5KQw 82 | # UAYDVR0fBEkwRzBFoEOgQYY/aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraS9j 83 | # cmwvcHJvZHVjdHMvbWljcm9zb2Z0cm9vdGNlcnQuY3JsMFQGCCsGAQUFBwEBBEgw 84 | # RjBEBggrBgEFBQcwAoY4aHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraS9jZXJ0 85 | # cy9NaWNyb3NvZnRSb290Q2VydC5jcnQwDQYJKoZIhvcNAQEFBQADggIBAFk5Pn8m 86 | # Rq/rb0CxMrVq6w4vbqhJ9+tfde1MOy3XQ60L/svpLTGjI8x8UJiAIV2sPS9MuqKo 87 | # VpzjcLu4tPh5tUly9z7qQX/K4QwXaculnCAt+gtQxFbNLeNK0rxw56gNogOlVuC4 88 | # iktX8pVCnPHz7+7jhh80PLhWmvBTI4UqpIIck+KUBx3y4k74jKHK6BOlkU7IG9KP 89 | # cpUqcW2bGvgc8FPWZ8wi/1wdzaKMvSeyeWNWRKJRzfnpo1hW3ZsCRUQvX/TartSC 90 | # Mm78pJUT5Otp56miLL7IKxAOZY6Z2/Wi+hImCWU4lPF6H0q70eFW6NB4lhhcyTUW 91 | # X92THUmOLb6tNEQc7hAVGgBd3TVbIc6YxwnuhQ6MT20OE049fClInHLR82zKwexw 92 | # o1eSV32UjaAbSANa98+jZwp0pTbtLS8XyOZyNxL0b7E8Z4L5UrKNMxZlHg6K3RDe 93 | # ZPRvzkbU0xfpecQEtNP7LN8fip6sCvsTJ0Ct5PnhqX9GuwdgR2VgQE6wQuxO7bN2 94 | # edgKNAltHIAxH+IOVN3lofvlRxCtZJj/UBYufL8FIXrilUEnacOTj5XJjdibIa4N 95 | # XJzwoq6GaIMMai27dmsAHZat8hZ79haDJLmIz2qoRzEvmtzjcT3XAH5iR9HOiMm4 96 | # GPoOco3Boz2vAkBq/2mbluIQqBC0N1AI1sM9MIIGBzCCA++gAwIBAgIKYRZoNAAA 97 | # AAAAHDANBgkqhkiG9w0BAQUFADBfMRMwEQYKCZImiZPyLGQBGRYDY29tMRkwFwYK 98 | # CZImiZPyLGQBGRYJbWljcm9zb2Z0MS0wKwYDVQQDEyRNaWNyb3NvZnQgUm9vdCBD 99 | # ZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcNMDcwNDAzMTI1MzA5WhcNMjEwNDAzMTMw 100 | # MzA5WjB3MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE 101 | # BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSEwHwYD 102 | # VQQDExhNaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EwggEiMA0GCSqGSIb3DQEBAQUA 103 | # A4IBDwAwggEKAoIBAQCfoWyx39tIkip8ay4Z4b3i48WZUSNQrc7dGE4kD+7Rp9FM 104 | # rXQwIBHrB9VUlRVJlBtCkq6YXDAm2gBr6Hu97IkHD/cOBJjwicwfyzMkh53y9Gcc 105 | # LPx754gd6udOo6HBI1PKjfpFzwnQXq/QsEIEovmmbJNn1yjcRlOwhtDlKEYuJ6yG 106 | # T1VSDOQDLPtqkJAwbofzWTCd+n7Wl7PoIZd++NIT8wi3U21StEWQn0gASkdmEScp 107 | # ZqiX5NMGgUqi+YSnEUcUCYKfhO1VeP4Bmh1QCIUAEDBG7bfeI0a7xC1Un68eeEEx 108 | # d8yb3zuDk6FhArUdDbH895uyAc4iS1T/+QXDwiALAgMBAAGjggGrMIIBpzAPBgNV 109 | # HRMBAf8EBTADAQH/MB0GA1UdDgQWBBQjNPjZUkZwCu1A+3b7syuwwzWzDzALBgNV 110 | # HQ8EBAMCAYYwEAYJKwYBBAGCNxUBBAMCAQAwgZgGA1UdIwSBkDCBjYAUDqyCYEBW 111 | # J5flJRP8KuEKU5VZ5KShY6RhMF8xEzARBgoJkiaJk/IsZAEZFgNjb20xGTAXBgoJ 112 | # kiaJk/IsZAEZFgltaWNyb3NvZnQxLTArBgNVBAMTJE1pY3Jvc29mdCBSb290IENl 113 | # cnRpZmljYXRlIEF1dGhvcml0eYIQea0WoUqgpa1Mc1j0BxMuZTBQBgNVHR8ESTBH 114 | # MEWgQ6BBhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0 115 | # cy9taWNyb3NvZnRyb290Y2VydC5jcmwwVAYIKwYBBQUHAQEESDBGMEQGCCsGAQUF 116 | # BzAChjhodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY3Jvc29m 117 | # dFJvb3RDZXJ0LmNydDATBgNVHSUEDDAKBggrBgEFBQcDCDANBgkqhkiG9w0BAQUF 118 | # AAOCAgEAEJeKw1wDRDbd6bStd9vOeVFNAbEudHFbbQwTq86+e4+4LtQSooxtYrhX 119 | # AstOIBNQmd16QOJXu69YmhzhHQGGrLt48ovQ7DsB7uK+jwoFyI1I4vBTFd1Pq5Lk 120 | # 541q1YDB5pTyBi+FA+mRKiQicPv2/OR4mS4N9wficLwYTp2OawpylbihOZxnLcVR 121 | # DupiXD8WmIsgP+IHGjL5zDFKdjE9K3ILyOpwPf+FChPfwgphjvDXuBfrTot/xTUr 122 | # XqO/67x9C0J71FNyIe4wyrt4ZVxbARcKFA7S2hSY9Ty5ZlizLS/n+YWGzFFW6J1w 123 | # lGysOUzU9nm/qhh6YinvopspNAZ3GmLJPR5tH4LwC8csu89Ds+X57H2146SodDW4 124 | # TsVxIxImdgs8UoxxWkZDFLyzs7BNZ8ifQv+AeSGAnhUwZuhCEl4ayJ4iIdBD6Svp 125 | # u/RIzCzU2DKATCYqSCRfWupW76bemZ3KOm+9gSd0BhHudiG/m4LBJ1S2sWo9iaF2 126 | # YbRuoROmv6pH8BJv/YoybLL+31HIjCPJZr2dHYcSZAI9La9Zj7jkIeW1sMpjtHhU 127 | # BdRBLlCslLCleKuzoJZ1GtmShxN1Ii8yqAhuoFuMJb+g74TKIdbrHk/Jmu5J4PcB 128 | # ZW+JC33Iacjmbuqnl84xKf8OxVtc2E0bodj6L54/LlUWa8kTo/0xggTIMIIExAIB 129 | # ATCBkDB5MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE 130 | # BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSMwIQYD 131 | # VQQDExpNaWNyb3NvZnQgQ29kZSBTaWduaW5nIFBDQQITMwAAAXglWrXNI8ZflQAB 132 | # AAABeDAJBgUrDgMCGgUAoIHhMBkGCSqGSIb3DQEJAzEMBgorBgEEAYI3AgEEMBwG 133 | # CisGAQQBgjcCAQsxDjAMBgorBgEEAYI3AgEVMCMGCSqGSIb3DQEJBDEWBBTq02RG 134 | # y+pjEYntEMXja7SF8TbmOjCBgAYKKwYBBAGCNwIBDDFyMHCgUoBQAEUAbgB0AGkA 135 | # dAB5ACAARgByAGEAbQBlAHcAbwByAGsAIABUAG8AbwBsAHMAIABmAG8AcgAgAFYA 136 | # aQBzAHUAYQBsACAAUwB0AHUAZABpAG+hGoAYaHR0cDovL21zZG4uY29tL2RhdGEv 137 | # ZWYgMA0GCSqGSIb3DQEBAQUABIIBAHQSKzEL3TItnbRhSBIYMFwe3udOxpA/S2dB 138 | # gUgxV1NkH+j0UbOnslGkt8gDBIlFre+2F+b7U4dnBiOjhizMyeAKSHYGdHqSoDJ0 139 | # lM4D5tuTSnoJ8FZtem/IjyBgKCmFMv05/ivF2StQ/nBhLj0QYcF4S9NZXj6JKFNa 140 | # WZJjFRaMRbkyvyD+p22Y1FyvcZPetZfoBYXs7GoaDdLvwrvfjKFwv4YGZ40WIGDX 141 | # 566IZCmnpMNJ2bfj8rNZUQBi8SZocFfAPw+9r/FLz51UTrKB0YRCBTXeWMYOJRpt 142 | # 6is5bbSLYJz7Y/BvoLy1Lt+BaqJEntP2lB3RvSsEm+BZOtDCcAahggIoMIICJAYJ 143 | # KoZIhvcNAQkGMYICFTCCAhECAQEwgY4wdzELMAkGA1UEBhMCVVMxEzARBgNVBAgT 144 | # Cldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29m 145 | # dCBDb3Jwb3JhdGlvbjEhMB8GA1UEAxMYTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENB 146 | # AhMzAAAAwN4sPQeU5El5AAAAAADAMAkGBSsOAwIaBQCgXTAYBgkqhkiG9w0BCQMx 147 | # CwYJKoZIhvcNAQcBMBwGCSqGSIb3DQEJBTEPFw0xNzEwMjMyMDEzNDVaMCMGCSqG 148 | # SIb3DQEJBDEWBBSn3QkcYO648MmwXthSXKh2NV8R9TANBgkqhkiG9w0BAQUFAASC 149 | # AQCnYTuQPUR6cHCGZStrauV4FQS+OC0dCo7D+mHETHYnDfgRKAloSQFBSqCm4C2+ 150 | # GH20vmak1LgnN48Gc7YBQ4tXyW0HXo8yfCJDBeaF1tYGGLIMPthq3Pqu0+mqrJ2C 151 | # rklJw6+cKsF9+ESo9hoTCf3qztNjbEtaXrsakX+dALcMzJ4ism2oh5bUHd6CxWfF 152 | # Z/xLn4VQxzmZUSPbnhkIAoPwauAswHi1jgqo7Qd0HSIKHGNex7SOGgBfTWD4gCe4 153 | # IzGJlFFmCT6pFsjvreEnaQLNBv+yOj9P1Pf4MDVrNQn0OLeWSxfpf+XfgECLi0LS 154 | # QMxcy5Q0PezBaxQKzBTp39mT 155 | # SIG # End signature block 156 | -------------------------------------------------------------------------------- /packages/EntityFramework.6.2.0/tools/install.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | Initialize-EFConfiguration $project 4 | Add-EFProvider $project 'System.Data.SqlClient' 'System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer' 5 | 6 | Write-Host 7 | Write-Host "Type 'get-help EntityFramework' to see all available Entity Framework commands." 8 | 9 | # SIG # Begin signature block 10 | # MIIa3gYJKoZIhvcNAQcCoIIazzCCGssCAQExCzAJBgUrDgMCGgUAMGkGCisGAQQB 11 | # gjcCAQSgWzBZMDQGCisGAQQBgjcCAR4wJgIDAQAABBAfzDtgWUsITrck0sYpfvNR 12 | # AgEAAgEAAgEAAgEAAgEAMCEwCQYFKw4DAhoFAAQUt8mwpdjiFmu2B4KBh+vEeQ+V 13 | # VnSgghWAMIIEwjCCA6qgAwIBAgITMwAAALu2dyRxSiAAIAAAAAAAuzANBgkqhkiG 14 | # 9w0BAQUFADB3MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4G 15 | # A1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSEw 16 | # HwYDVQQDExhNaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EwHhcNMTYwOTA3MTc1ODQ3 17 | # WhcNMTgwOTA3MTc1ODQ3WjCBsjELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hp 18 | # bmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jw 19 | # b3JhdGlvbjEMMAoGA1UECxMDQU9DMScwJQYDVQQLEx5uQ2lwaGVyIERTRSBFU046 20 | # MERFOC0yREM1LTNDQTkxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNl 21 | # cnZpY2UwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC48+U38sLxQNu8 22 | # OO1wnT9mKeHv+f/jxafTFXzx9VF59IK/n/jLv4HIXt8ucy3KjBTM5Jf6D0nQlI4h 23 | # Sizjrn6lO61q+V8oZiYYhjgR258rg8MDIrPpZMxK6OmD0d1wtksHW1cG21YKg5jg 24 | # idT2hmQBpiL9Cra3ccY5keu0kl6OfZFoj4DF0i0JRVFSy1C9gKP4H950XIjlA2Yo 25 | # TWN0LuHEHYMvwD1mOpAq2dVwPZh6xeNnpV8U/qLneyb9I/SqY/87tsZCn4FH7R3x 26 | # 0TgK2eRwpWXfwGbUb1R/UTLd20aQ+my4NWwSsndeG+0vsYwaF40heB2lo1ThmByr 27 | # OTBmEosTAgMBAAGjggEJMIIBBTAdBgNVHQ4EFgQUj9yNX+4+R8GZ7rcy4MdnJHXO 28 | # KkswHwYDVR0jBBgwFoAUIzT42VJGcArtQPt2+7MrsMM1sw8wVAYDVR0fBE0wSzBJ 29 | # oEegRYZDaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraS9jcmwvcHJvZHVjdHMv 30 | # TWljcm9zb2Z0VGltZVN0YW1wUENBLmNybDBYBggrBgEFBQcBAQRMMEowSAYIKwYB 31 | # BQUHMAKGPGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljcm9z 32 | # b2Z0VGltZVN0YW1wUENBLmNydDATBgNVHSUEDDAKBggrBgEFBQcDCDANBgkqhkiG 33 | # 9w0BAQUFAAOCAQEAcMI8Q0PxQVvxZSD1fjszuD6VF/qPZjKZj9WLTjWjZT2k9lzG 34 | # yvSL7vy9J7lnyMATrbm5ptqAfdonNygLaBm05MnrIvgPJYK89wyTIyS1u71ro7z+ 35 | # EVrGPaKZiD+WvH8SWP+OWZQNf55fEL8tZo+a1oHm3lUARi5rR916OQvb4UnCENyV 36 | # g8IfmupnwpxHcmIBUWZtTKAuKmuX/c8G2z4KJ8WhruYjPDWYQXJrQ5t7PhZa19Ge 37 | # kOOtigge9EKIAWhZUJkw9fnfRm2IFX0gWtOzRXVNhR109ISacbNxd0oUboRYHmlq 38 | # wGrOz64/3SDdOeN7PjvLwFmThuoXIsxrjQD8ODCCBOswggPToAMCAQICEzMAAAF4 39 | # JVq1zSPGX5UAAQAAAXgwDQYJKoZIhvcNAQEFBQAweTELMAkGA1UEBhMCVVMxEzAR 40 | # BgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1p 41 | # Y3Jvc29mdCBDb3Jwb3JhdGlvbjEjMCEGA1UEAxMaTWljcm9zb2Z0IENvZGUgU2ln 42 | # bmluZyBQQ0EwHhcNMTcwODExMjAxMTE1WhcNMTgwODExMjAxMTE1WjCBgjELMAkG 43 | # A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx 44 | # HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEMMAoGA1UECxMDQU9DMR4w 45 | # HAYDVQQDExVNaWNyb3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUA 46 | # A4IBDwAwggEKAoIBAQCZbh1TVaudsrIbXUPPB9c8S+E+dKSbskHKYlG6SGTH8jhT 47 | # hpuvGiAO87F2b9GHVN+DvszaMkGy/xQgHaGEJLfpnb3kpakic7E0bjDHdG4KnHRb 48 | # no/wfUkGLfS79o+cw//RY8Ck6yE+0czDBcxp0Gbw5JyGP+KFqvzRR/3Tv3nt/5x0 49 | # 5ZnEOHYP+eDVikDvn/DH+oxxtiCfX3tkvtm/yX4eOb47YdmYKQjCgz2+Nil/lupY 50 | # vU0QFIjvke3jshqQINDng/vO9ys2qA0ex/q5hlLKQTST99dGoM86Ge6F723ReToq 51 | # KnGLN8kiCG7uNapOAIQrpCHZq96CVumiaA5ZvxU9AgMBAAGjggFgMIIBXDATBgNV 52 | # HSUEDDAKBggrBgEFBQcDAzAdBgNVHQ4EFgQUjuhtD3FD7tk/RKloJFX05cpgLjcw 53 | # UQYDVR0RBEowSKRGMEQxDDAKBgNVBAsTA0FPQzE0MDIGA1UEBRMrMjI5ODAzKzFh 54 | # YmY5ZTVmLWNlZDAtNDJlNi1hNjVkLWQ5MzUwOTU5ZmUwZTAfBgNVHSMEGDAWgBTL 55 | # EejK0rQWWAHJNy4zFha5TJoKHzBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3Js 56 | # Lm1pY3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNDb2RTaWdQQ0FfMDgt 57 | # MzEtMjAxMC5jcmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8v 58 | # d3d3Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY0NvZFNpZ1BDQV8wOC0zMS0y 59 | # MDEwLmNydDANBgkqhkiG9w0BAQUFAAOCAQEAYnG/oHG/xgZYR8NAMHZ/vE9GM0e4 60 | # 7YdhuTea2uY7pSGwM707wp8Wan0Fa6evK1PWfcd/XNOh2BpEv5o8RmKDoEsG0ECP 61 | # 13Jug7cklfKreBVHQ+Djg43VVFLZpuo7aOAVK6wjlcnpPUtn+SfH9K0aM2FjDKVJ 62 | # FW6XFKXBat5R+Zp6uOxWTxpSeMTeDC5zF6IY6ogR1uzU+9EQoRlAvkwX6po+exEL 63 | # nMLr4++P+fqOxIU+PODIoB8ijClAqwwKvLlMPa3qlrNHt+LweTMu7lvGC/RA18wU 64 | # zzXAeomuZ03blUw+bkOiVgWOk4S0RN7EnW7zjJV8gd/+G2dbToUi1cB/fTCCBbww 65 | # ggOkoAMCAQICCmEzJhoAAAAAADEwDQYJKoZIhvcNAQEFBQAwXzETMBEGCgmSJomT 66 | # 8ixkARkWA2NvbTEZMBcGCgmSJomT8ixkARkWCW1pY3Jvc29mdDEtMCsGA1UEAxMk 67 | # TWljcm9zb2Z0IFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5MB4XDTEwMDgzMTIy 68 | # MTkzMloXDTIwMDgzMTIyMjkzMloweTELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldh 69 | # c2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBD 70 | # b3Jwb3JhdGlvbjEjMCEGA1UEAxMaTWljcm9zb2Z0IENvZGUgU2lnbmluZyBQQ0Ew 71 | # ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCycllcGTBkvx2aYCAgQpl2 72 | # U2w+G9ZvzMvx6mv+lxYQ4N86dIMaty+gMuz/3sJCTiPVcgDbNVcKicquIEn08Gis 73 | # TUuNpb15S3GbRwfa/SXfnXWIz6pzRH/XgdvzvfI2pMlcRdyvrT3gKGiXGqelcnNW 74 | # 8ReU5P01lHKg1nZfHndFg4U4FtBzWwW6Z1KNpbJpL9oZC/6SdCnidi9U3RQwWfjS 75 | # jWL9y8lfRjFQuScT5EAwz3IpECgixzdOPaAyPZDNoTgGhVxOVoIoKgUyt0vXT2Pn 76 | # 0i1i8UU956wIAPZGoZ7RW4wmU+h6qkryRs83PDietHdcpReejcsRj1Y8wawJXwPT 77 | # AgMBAAGjggFeMIIBWjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTLEejK0rQW 78 | # WAHJNy4zFha5TJoKHzALBgNVHQ8EBAMCAYYwEgYJKwYBBAGCNxUBBAUCAwEAATAj 79 | # BgkrBgEEAYI3FQIEFgQU/dExTtMmipXhmGA7qDFvpjy82C0wGQYJKwYBBAGCNxQC 80 | # BAweCgBTAHUAYgBDAEEwHwYDVR0jBBgwFoAUDqyCYEBWJ5flJRP8KuEKU5VZ5KQw 81 | # UAYDVR0fBEkwRzBFoEOgQYY/aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraS9j 82 | # cmwvcHJvZHVjdHMvbWljcm9zb2Z0cm9vdGNlcnQuY3JsMFQGCCsGAQUFBwEBBEgw 83 | # RjBEBggrBgEFBQcwAoY4aHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraS9jZXJ0 84 | # cy9NaWNyb3NvZnRSb290Q2VydC5jcnQwDQYJKoZIhvcNAQEFBQADggIBAFk5Pn8m 85 | # Rq/rb0CxMrVq6w4vbqhJ9+tfde1MOy3XQ60L/svpLTGjI8x8UJiAIV2sPS9MuqKo 86 | # VpzjcLu4tPh5tUly9z7qQX/K4QwXaculnCAt+gtQxFbNLeNK0rxw56gNogOlVuC4 87 | # iktX8pVCnPHz7+7jhh80PLhWmvBTI4UqpIIck+KUBx3y4k74jKHK6BOlkU7IG9KP 88 | # cpUqcW2bGvgc8FPWZ8wi/1wdzaKMvSeyeWNWRKJRzfnpo1hW3ZsCRUQvX/TartSC 89 | # Mm78pJUT5Otp56miLL7IKxAOZY6Z2/Wi+hImCWU4lPF6H0q70eFW6NB4lhhcyTUW 90 | # X92THUmOLb6tNEQc7hAVGgBd3TVbIc6YxwnuhQ6MT20OE049fClInHLR82zKwexw 91 | # o1eSV32UjaAbSANa98+jZwp0pTbtLS8XyOZyNxL0b7E8Z4L5UrKNMxZlHg6K3RDe 92 | # ZPRvzkbU0xfpecQEtNP7LN8fip6sCvsTJ0Ct5PnhqX9GuwdgR2VgQE6wQuxO7bN2 93 | # edgKNAltHIAxH+IOVN3lofvlRxCtZJj/UBYufL8FIXrilUEnacOTj5XJjdibIa4N 94 | # XJzwoq6GaIMMai27dmsAHZat8hZ79haDJLmIz2qoRzEvmtzjcT3XAH5iR9HOiMm4 95 | # GPoOco3Boz2vAkBq/2mbluIQqBC0N1AI1sM9MIIGBzCCA++gAwIBAgIKYRZoNAAA 96 | # AAAAHDANBgkqhkiG9w0BAQUFADBfMRMwEQYKCZImiZPyLGQBGRYDY29tMRkwFwYK 97 | # CZImiZPyLGQBGRYJbWljcm9zb2Z0MS0wKwYDVQQDEyRNaWNyb3NvZnQgUm9vdCBD 98 | # ZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcNMDcwNDAzMTI1MzA5WhcNMjEwNDAzMTMw 99 | # MzA5WjB3MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE 100 | # BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSEwHwYD 101 | # VQQDExhNaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EwggEiMA0GCSqGSIb3DQEBAQUA 102 | # A4IBDwAwggEKAoIBAQCfoWyx39tIkip8ay4Z4b3i48WZUSNQrc7dGE4kD+7Rp9FM 103 | # rXQwIBHrB9VUlRVJlBtCkq6YXDAm2gBr6Hu97IkHD/cOBJjwicwfyzMkh53y9Gcc 104 | # LPx754gd6udOo6HBI1PKjfpFzwnQXq/QsEIEovmmbJNn1yjcRlOwhtDlKEYuJ6yG 105 | # T1VSDOQDLPtqkJAwbofzWTCd+n7Wl7PoIZd++NIT8wi3U21StEWQn0gASkdmEScp 106 | # ZqiX5NMGgUqi+YSnEUcUCYKfhO1VeP4Bmh1QCIUAEDBG7bfeI0a7xC1Un68eeEEx 107 | # d8yb3zuDk6FhArUdDbH895uyAc4iS1T/+QXDwiALAgMBAAGjggGrMIIBpzAPBgNV 108 | # HRMBAf8EBTADAQH/MB0GA1UdDgQWBBQjNPjZUkZwCu1A+3b7syuwwzWzDzALBgNV 109 | # HQ8EBAMCAYYwEAYJKwYBBAGCNxUBBAMCAQAwgZgGA1UdIwSBkDCBjYAUDqyCYEBW 110 | # J5flJRP8KuEKU5VZ5KShY6RhMF8xEzARBgoJkiaJk/IsZAEZFgNjb20xGTAXBgoJ 111 | # kiaJk/IsZAEZFgltaWNyb3NvZnQxLTArBgNVBAMTJE1pY3Jvc29mdCBSb290IENl 112 | # cnRpZmljYXRlIEF1dGhvcml0eYIQea0WoUqgpa1Mc1j0BxMuZTBQBgNVHR8ESTBH 113 | # MEWgQ6BBhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0 114 | # cy9taWNyb3NvZnRyb290Y2VydC5jcmwwVAYIKwYBBQUHAQEESDBGMEQGCCsGAQUF 115 | # BzAChjhodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY3Jvc29m 116 | # dFJvb3RDZXJ0LmNydDATBgNVHSUEDDAKBggrBgEFBQcDCDANBgkqhkiG9w0BAQUF 117 | # AAOCAgEAEJeKw1wDRDbd6bStd9vOeVFNAbEudHFbbQwTq86+e4+4LtQSooxtYrhX 118 | # AstOIBNQmd16QOJXu69YmhzhHQGGrLt48ovQ7DsB7uK+jwoFyI1I4vBTFd1Pq5Lk 119 | # 541q1YDB5pTyBi+FA+mRKiQicPv2/OR4mS4N9wficLwYTp2OawpylbihOZxnLcVR 120 | # DupiXD8WmIsgP+IHGjL5zDFKdjE9K3ILyOpwPf+FChPfwgphjvDXuBfrTot/xTUr 121 | # XqO/67x9C0J71FNyIe4wyrt4ZVxbARcKFA7S2hSY9Ty5ZlizLS/n+YWGzFFW6J1w 122 | # lGysOUzU9nm/qhh6YinvopspNAZ3GmLJPR5tH4LwC8csu89Ds+X57H2146SodDW4 123 | # TsVxIxImdgs8UoxxWkZDFLyzs7BNZ8ifQv+AeSGAnhUwZuhCEl4ayJ4iIdBD6Svp 124 | # u/RIzCzU2DKATCYqSCRfWupW76bemZ3KOm+9gSd0BhHudiG/m4LBJ1S2sWo9iaF2 125 | # YbRuoROmv6pH8BJv/YoybLL+31HIjCPJZr2dHYcSZAI9La9Zj7jkIeW1sMpjtHhU 126 | # BdRBLlCslLCleKuzoJZ1GtmShxN1Ii8yqAhuoFuMJb+g74TKIdbrHk/Jmu5J4PcB 127 | # ZW+JC33Iacjmbuqnl84xKf8OxVtc2E0bodj6L54/LlUWa8kTo/0xggTIMIIExAIB 128 | # ATCBkDB5MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE 129 | # BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSMwIQYD 130 | # VQQDExpNaWNyb3NvZnQgQ29kZSBTaWduaW5nIFBDQQITMwAAAXglWrXNI8ZflQAB 131 | # AAABeDAJBgUrDgMCGgUAoIHhMBkGCSqGSIb3DQEJAzEMBgorBgEEAYI3AgEEMBwG 132 | # CisGAQQBgjcCAQsxDjAMBgorBgEEAYI3AgEVMCMGCSqGSIb3DQEJBDEWBBSYs3+C 133 | # WsAb+LOoocEiqHmU0Q3ALzCBgAYKKwYBBAGCNwIBDDFyMHCgUoBQAEUAbgB0AGkA 134 | # dAB5ACAARgByAGEAbQBlAHcAbwByAGsAIABUAG8AbwBsAHMAIABmAG8AcgAgAFYA 135 | # aQBzAHUAYQBsACAAUwB0AHUAZABpAG+hGoAYaHR0cDovL21zZG4uY29tL2RhdGEv 136 | # ZWYgMA0GCSqGSIb3DQEBAQUABIIBABPzPT3kEODvGlQjfMBKfQudfoZrNqovPz0Y 137 | # cdler/amP+mg1mtJd+v+zn+UQXQi1DbBmqGuxQYj18vdb6eBGBZAlwYag91Lkp95 138 | # ILAZ926dAn0DXTLoXlZL1AVpRM8+/kqsHFCboI+Q1vO8FTO4/XpwuaCfwlvGAXxH 139 | # AcUVLEnmJeZvBv0npW8NghCkfrAVT3G2nE+4mjP/cRHlukWUDiogHhkcWZOrWYBk 140 | # aEEbojPYO1I+NW16NNp0Fq3VZO1Crr96I2HbrT2ogR2EJOWpPH0IyogZv4b0+E7S 141 | # VXX33Lp5YpzbzgdIPUvsFpKfidoRzLmi4SD0Tc8S46NlgXotFM6hggIoMIICJAYJ 142 | # KoZIhvcNAQkGMYICFTCCAhECAQEwgY4wdzELMAkGA1UEBhMCVVMxEzARBgNVBAgT 143 | # Cldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29m 144 | # dCBDb3Jwb3JhdGlvbjEhMB8GA1UEAxMYTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENB 145 | # AhMzAAAAu7Z3JHFKIAAgAAAAAAC7MAkGBSsOAwIaBQCgXTAYBgkqhkiG9w0BCQMx 146 | # CwYJKoZIhvcNAQcBMBwGCSqGSIb3DQEJBTEPFw0xNzEwMjMyMDEzMzlaMCMGCSqG 147 | # SIb3DQEJBDEWBBR5eDKlzjbXG+gQhPSdEMDmmjY6BTANBgkqhkiG9w0BAQUFAASC 148 | # AQB777+HNR9jVbg2sXZm72fSrm3jxSLugzhcA4OxhZObW96AnJknlduQvAGqcDV+ 149 | # Lt9CyaYLMt6I89MGkP9PBv8t5xhW0rHuBykna+5tTL8wvYrKd7r4ZvXT7YtHrqxO 150 | # c+WLBPUD8XvSxI2wEsXt6uPCt44sd8PdO7VMiRNWth9aWo7rWaP0kGGAt0qhspI8 151 | # 6mhsnam+SRGuDCpoLYcMTc1vVVKu1zZ9wgfxNCaf9YVswKmFc7Mj7VNpA3qd6Te0 152 | # RNAEkgZr84KzCf8CYtWMsSy9k68drBbP0JosTxCLrJ9/zud6fykp5UcljzdKHKdU 153 | # LMT4QBU8ya4StU9IgrUFBBcI 154 | # SIG # End signature block 155 | -------------------------------------------------------------------------------- /packages/EntityFramework.6.2.0/tools/migrate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/EntityFramework.6.2.0/tools/migrate.exe -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/System.Data.SQLite.1.0.109.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.1.0.109.1/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Data.SQLite.1.0.109.1/System.Data.SQLite.1.0.109.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.1.0.109.1/System.Data.SQLite.1.0.109.1.nupkg -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Core.1.0.109.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.Core.1.0.109.1/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Core.1.0.109.1/System.Data.SQLite.Core.1.0.109.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.Core.1.0.109.1/System.Data.SQLite.Core.1.0.109.1.nupkg -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Core.1.0.109.1/build/net20/System.Data.SQLite.Core.targets: -------------------------------------------------------------------------------- 1 | 11 | 12 | 17 | 18 | 22 | 26 | 27 | 32 | 33 | 34 | 37 | 38 | 39 | 44 | 45 | 48 | 49 | %(RecursiveDir)%(FileName)%(Extension) 50 | Always 51 | 52 | 53 | 54 | 59 | 60 | 67 | 71 | 73 | 74 | 75 | 78 | 79 | 84 | 88 | 89 | 90 | 91 | 94 | 95 | 97 | 98 | 99 | bin\%(RecursiveDir)%(Filename)%(Extension) 100 | 101 | 102 | 103 | 104 | 109 | 110 | 111 | 112 | $(PostBuildEventDependsOn); 113 | CopySQLiteInteropFiles; 114 | 115 | 116 | $(BuildDependsOn); 117 | CopySQLiteInteropFiles; 118 | 119 | 120 | $(CleanDependsOn); 121 | CleanSQLiteInteropFiles; 122 | 123 | 124 | 125 | 130 | 131 | 137 | 138 | CollectSQLiteInteropFiles; 139 | $(PipelineCollectFilesPhaseDependsOn); 140 | 141 | 142 | 143 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Core.1.0.109.1/build/net20/x64/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.Core.1.0.109.1/build/net20/x64/SQLite.Interop.dll -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Core.1.0.109.1/build/net20/x86/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.Core.1.0.109.1/build/net20/x86/SQLite.Interop.dll -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Core.1.0.109.1/build/net40/System.Data.SQLite.Core.targets: -------------------------------------------------------------------------------- 1 | 11 | 12 | 17 | 18 | 22 | 26 | 27 | 32 | 33 | 34 | 37 | 38 | 39 | 44 | 45 | 48 | 49 | %(RecursiveDir)%(FileName)%(Extension) 50 | Always 51 | 52 | 53 | 54 | 59 | 60 | 67 | 71 | 73 | 74 | 75 | 78 | 79 | 84 | 88 | 89 | 90 | 91 | 94 | 95 | 97 | 98 | 99 | bin\%(RecursiveDir)%(Filename)%(Extension) 100 | 101 | 102 | 103 | 104 | 109 | 110 | 111 | 112 | $(PostBuildEventDependsOn); 113 | CopySQLiteInteropFiles; 114 | 115 | 116 | $(BuildDependsOn); 117 | CopySQLiteInteropFiles; 118 | 119 | 120 | $(CleanDependsOn); 121 | CleanSQLiteInteropFiles; 122 | 123 | 124 | 125 | 130 | 131 | 137 | 138 | CollectSQLiteInteropFiles; 139 | $(PipelineCollectFilesPhaseDependsOn); 140 | 141 | 142 | 143 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Core.1.0.109.1/build/net40/x64/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.Core.1.0.109.1/build/net40/x64/SQLite.Interop.dll -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Core.1.0.109.1/build/net40/x86/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.Core.1.0.109.1/build/net40/x86/SQLite.Interop.dll -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Core.1.0.109.1/build/net45/System.Data.SQLite.Core.targets: -------------------------------------------------------------------------------- 1 | 11 | 12 | 17 | 18 | 22 | 26 | 27 | 32 | 33 | 34 | 37 | 38 | 39 | 44 | 45 | 48 | 49 | %(RecursiveDir)%(FileName)%(Extension) 50 | Always 51 | 52 | 53 | 54 | 59 | 60 | 67 | 71 | 73 | 74 | 75 | 78 | 79 | 84 | 88 | 89 | 90 | 91 | 94 | 95 | 97 | 98 | 99 | bin\%(RecursiveDir)%(Filename)%(Extension) 100 | 101 | 102 | 103 | 104 | 109 | 110 | 111 | 112 | $(PostBuildEventDependsOn); 113 | CopySQLiteInteropFiles; 114 | 115 | 116 | $(BuildDependsOn); 117 | CopySQLiteInteropFiles; 118 | 119 | 120 | $(CleanDependsOn); 121 | CleanSQLiteInteropFiles; 122 | 123 | 124 | 125 | 130 | 131 | 137 | 138 | CollectSQLiteInteropFiles; 139 | $(PipelineCollectFilesPhaseDependsOn); 140 | 141 | 142 | 143 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Core.1.0.109.1/build/net45/x64/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.Core.1.0.109.1/build/net45/x64/SQLite.Interop.dll -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Core.1.0.109.1/build/net45/x86/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.Core.1.0.109.1/build/net45/x86/SQLite.Interop.dll -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Core.1.0.109.1/build/net451/System.Data.SQLite.Core.targets: -------------------------------------------------------------------------------- 1 | 11 | 12 | 17 | 18 | 22 | 26 | 27 | 32 | 33 | 34 | 37 | 38 | 39 | 44 | 45 | 48 | 49 | %(RecursiveDir)%(FileName)%(Extension) 50 | Always 51 | 52 | 53 | 54 | 59 | 60 | 67 | 71 | 73 | 74 | 75 | 78 | 79 | 84 | 88 | 89 | 90 | 91 | 94 | 95 | 97 | 98 | 99 | bin\%(RecursiveDir)%(Filename)%(Extension) 100 | 101 | 102 | 103 | 104 | 109 | 110 | 111 | 112 | $(PostBuildEventDependsOn); 113 | CopySQLiteInteropFiles; 114 | 115 | 116 | $(BuildDependsOn); 117 | CopySQLiteInteropFiles; 118 | 119 | 120 | $(CleanDependsOn); 121 | CleanSQLiteInteropFiles; 122 | 123 | 124 | 125 | 130 | 131 | 137 | 138 | CollectSQLiteInteropFiles; 139 | $(PipelineCollectFilesPhaseDependsOn); 140 | 141 | 142 | 143 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Core.1.0.109.1/build/net451/x64/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.Core.1.0.109.1/build/net451/x64/SQLite.Interop.dll -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Core.1.0.109.1/build/net451/x86/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.Core.1.0.109.1/build/net451/x86/SQLite.Interop.dll -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Core.1.0.109.1/build/net46/System.Data.SQLite.Core.targets: -------------------------------------------------------------------------------- 1 | 11 | 12 | 17 | 18 | 22 | 26 | 27 | 32 | 33 | 34 | 37 | 38 | 39 | 44 | 45 | 48 | 49 | %(RecursiveDir)%(FileName)%(Extension) 50 | Always 51 | 52 | 53 | 54 | 59 | 60 | 67 | 71 | 73 | 74 | 75 | 78 | 79 | 84 | 88 | 89 | 90 | 91 | 94 | 95 | 97 | 98 | 99 | bin\%(RecursiveDir)%(Filename)%(Extension) 100 | 101 | 102 | 103 | 104 | 109 | 110 | 111 | 112 | $(PostBuildEventDependsOn); 113 | CopySQLiteInteropFiles; 114 | 115 | 116 | $(BuildDependsOn); 117 | CopySQLiteInteropFiles; 118 | 119 | 120 | $(CleanDependsOn); 121 | CleanSQLiteInteropFiles; 122 | 123 | 124 | 125 | 130 | 131 | 137 | 138 | CollectSQLiteInteropFiles; 139 | $(PipelineCollectFilesPhaseDependsOn); 140 | 141 | 142 | 143 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Core.1.0.109.1/build/net46/x64/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.Core.1.0.109.1/build/net46/x64/SQLite.Interop.dll -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Core.1.0.109.1/build/net46/x86/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.Core.1.0.109.1/build/net46/x86/SQLite.Interop.dll -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Core.1.0.109.1/lib/net20/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.Core.1.0.109.1/lib/net20/System.Data.SQLite.dll -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Core.1.0.109.1/lib/net20/System.Data.SQLite.dll.config: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 17 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Core.1.0.109.1/lib/net40/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.Core.1.0.109.1/lib/net40/System.Data.SQLite.dll -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Core.1.0.109.1/lib/net40/System.Data.SQLite.dll.config: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 17 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Core.1.0.109.1/lib/net45/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.Core.1.0.109.1/lib/net45/System.Data.SQLite.dll -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Core.1.0.109.1/lib/net45/System.Data.SQLite.dll.config: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 17 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Core.1.0.109.1/lib/net451/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.Core.1.0.109.1/lib/net451/System.Data.SQLite.dll -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Core.1.0.109.1/lib/net451/System.Data.SQLite.dll.config: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 17 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Core.1.0.109.1/lib/net46/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.Core.1.0.109.1/lib/net46/System.Data.SQLite.dll -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Core.1.0.109.1/lib/net46/System.Data.SQLite.dll.config: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 17 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Core.1.0.109.1/lib/netstandard2.0/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.Core.1.0.109.1/lib/netstandard2.0/System.Data.SQLite.dll -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Core.1.0.109.1/lib/netstandard2.0/System.Data.SQLite.dll.config: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 17 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Core.1.0.109.1/runtimes/linux-x64/lib/netstandard2.0/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.Core.1.0.109.1/runtimes/linux-x64/lib/netstandard2.0/SQLite.Interop.dll -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Core.1.0.109.1/runtimes/osx-x64/lib/netstandard2.0/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.Core.1.0.109.1/runtimes/osx-x64/lib/netstandard2.0/SQLite.Interop.dll -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Core.1.0.109.1/runtimes/win-x64/lib/netstandard2.0/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.Core.1.0.109.1/runtimes/win-x64/lib/netstandard2.0/SQLite.Interop.dll -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Core.1.0.109.1/runtimes/win-x86/lib/netstandard2.0/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.Core.1.0.109.1/runtimes/win-x86/lib/netstandard2.0/SQLite.Interop.dll -------------------------------------------------------------------------------- /packages/System.Data.SQLite.EF6.1.0.109.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.EF6.1.0.109.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Data.SQLite.EF6.1.0.109.0/System.Data.SQLite.EF6.1.0.109.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.EF6.1.0.109.0/System.Data.SQLite.EF6.1.0.109.0.nupkg -------------------------------------------------------------------------------- /packages/System.Data.SQLite.EF6.1.0.109.0/content/net40/app.config.install.xdt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.EF6.1.0.109.0/content/net40/app.config.transform: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.EF6.1.0.109.0/content/net40/web.config.install.xdt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.EF6.1.0.109.0/content/net40/web.config.transform: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.EF6.1.0.109.0/content/net45/app.config.install.xdt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.EF6.1.0.109.0/content/net45/app.config.transform: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.EF6.1.0.109.0/content/net45/web.config.install.xdt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.EF6.1.0.109.0/content/net45/web.config.transform: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.EF6.1.0.109.0/content/net451/app.config.install.xdt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.EF6.1.0.109.0/content/net451/app.config.transform: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.EF6.1.0.109.0/content/net451/web.config.install.xdt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.EF6.1.0.109.0/content/net451/web.config.transform: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.EF6.1.0.109.0/content/net46/app.config.install.xdt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.EF6.1.0.109.0/content/net46/app.config.transform: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.EF6.1.0.109.0/content/net46/web.config.install.xdt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.EF6.1.0.109.0/content/net46/web.config.transform: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.EF6.1.0.109.0/lib/net40/System.Data.SQLite.EF6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.EF6.1.0.109.0/lib/net40/System.Data.SQLite.EF6.dll -------------------------------------------------------------------------------- /packages/System.Data.SQLite.EF6.1.0.109.0/lib/net45/System.Data.SQLite.EF6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.EF6.1.0.109.0/lib/net45/System.Data.SQLite.EF6.dll -------------------------------------------------------------------------------- /packages/System.Data.SQLite.EF6.1.0.109.0/lib/net451/System.Data.SQLite.EF6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.EF6.1.0.109.0/lib/net451/System.Data.SQLite.EF6.dll -------------------------------------------------------------------------------- /packages/System.Data.SQLite.EF6.1.0.109.0/lib/net46/System.Data.SQLite.EF6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.EF6.1.0.109.0/lib/net46/System.Data.SQLite.EF6.dll -------------------------------------------------------------------------------- /packages/System.Data.SQLite.EF6.1.0.109.0/tools/net40/install.ps1: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # 3 | # provider.ps1 -- 4 | # 5 | # Written by Joe Mistachkin. 6 | # Released to the public domain, use at your own risk! 7 | # 8 | ############################################################################### 9 | 10 | param($installPath, $toolsPath, $package, $project) 11 | 12 | Add-EFProvider $project "System.Data.SQLite.EF6" ` 13 | "System.Data.SQLite.EF6.SQLiteProviderServices, System.Data.SQLite.EF6" 14 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.EF6.1.0.109.0/tools/net45/install.ps1: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # 3 | # provider.ps1 -- 4 | # 5 | # Written by Joe Mistachkin. 6 | # Released to the public domain, use at your own risk! 7 | # 8 | ############################################################################### 9 | 10 | param($installPath, $toolsPath, $package, $project) 11 | 12 | Add-EFProvider $project "System.Data.SQLite.EF6" ` 13 | "System.Data.SQLite.EF6.SQLiteProviderServices, System.Data.SQLite.EF6" 14 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.EF6.1.0.109.0/tools/net451/install.ps1: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # 3 | # provider.ps1 -- 4 | # 5 | # Written by Joe Mistachkin. 6 | # Released to the public domain, use at your own risk! 7 | # 8 | ############################################################################### 9 | 10 | param($installPath, $toolsPath, $package, $project) 11 | 12 | Add-EFProvider $project "System.Data.SQLite.EF6" ` 13 | "System.Data.SQLite.EF6.SQLiteProviderServices, System.Data.SQLite.EF6" 14 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.EF6.1.0.109.0/tools/net46/install.ps1: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # 3 | # provider.ps1 -- 4 | # 5 | # Written by Joe Mistachkin. 6 | # Released to the public domain, use at your own risk! 7 | # 8 | ############################################################################### 9 | 10 | param($installPath, $toolsPath, $package, $project) 11 | 12 | Add-EFProvider $project "System.Data.SQLite.EF6" ` 13 | "System.Data.SQLite.EF6.SQLiteProviderServices, System.Data.SQLite.EF6" 14 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Linq.1.0.109.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.Linq.1.0.109.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Linq.1.0.109.0/System.Data.SQLite.Linq.1.0.109.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.Linq.1.0.109.0/System.Data.SQLite.Linq.1.0.109.0.nupkg -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Linq.1.0.109.0/content/net20/app.config.transform: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Linq.1.0.109.0/content/net20/web.config.transform: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Linq.1.0.109.0/content/net40/app.config.transform: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Linq.1.0.109.0/content/net40/web.config.transform: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Linq.1.0.109.0/content/net45/app.config.transform: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Linq.1.0.109.0/content/net45/web.config.transform: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Linq.1.0.109.0/content/net451/app.config.transform: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Linq.1.0.109.0/content/net451/web.config.transform: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Linq.1.0.109.0/content/net46/app.config.transform: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Linq.1.0.109.0/content/net46/web.config.transform: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Linq.1.0.109.0/lib/net20/System.Data.SQLite.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.Linq.1.0.109.0/lib/net20/System.Data.SQLite.Linq.dll -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Linq.1.0.109.0/lib/net40/System.Data.SQLite.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.Linq.1.0.109.0/lib/net40/System.Data.SQLite.Linq.dll -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Linq.1.0.109.0/lib/net45/System.Data.SQLite.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.Linq.1.0.109.0/lib/net45/System.Data.SQLite.Linq.dll -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Linq.1.0.109.0/lib/net451/System.Data.SQLite.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.Linq.1.0.109.0/lib/net451/System.Data.SQLite.Linq.dll -------------------------------------------------------------------------------- /packages/System.Data.SQLite.Linq.1.0.109.0/lib/net46/System.Data.SQLite.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/System.Data.SQLite.Linq.1.0.109.0/lib/net46/System.Data.SQLite.Linq.dll -------------------------------------------------------------------------------- /packages/linq2db.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kybs0/HanziDictionary/9575f9fb43252da85dc1e599dce0c2da3ec1b5ef/packages/linq2db.dll --------------------------------------------------------------------------------