Commit cfd0eb72 by mahaisong

feat:图片转视频、视频加笔刷、倒计时

parent 7f292e55
......@@ -10,6 +10,12 @@ using MediaFoundation.Misc;
using MediaFoundation.Transform;
using TantaCommon;
////通过读取缓存中公有、固定的变量值刷新。读的时候不lock,增长时lock或阻塞队列。不允许丢失。
///或者是Cuncurrent集合,记录当前进入班级的同学ID。可以防止重复。 统计Count即可。
/// +------------------------------------------------------------------------------------------------------------------------------+
/// ¦ TERMS OF USE: MIT License ¦
/// +------------------------------------------------------------------------------------------------------------------------------¦
......@@ -84,7 +90,7 @@ namespace GISportService
/// <history>
/// 01 Nov 18 Cynic - Ported In
/// </history>
public sealed class CanvaWriteText_Sync : TantaMFTBase_Sync
public sealed class Countdown_Signin_Sync : TantaMFTBase_Sync
{
// Format information
private int m_imageWidthInPixels;
......@@ -115,7 +121,7 @@ namespace GISportService
/// <history>
/// 01 Nov 18 Cynic - Ported In
/// </history>
public CanvaWriteText_Sync() : base()
public Countdown_Signin_Sync() : base()
{
// init this now
m_FrameCount = 0;
......@@ -130,7 +136,7 @@ namespace GISportService
/// <history>
/// 01 Nov 18 Cynic - Ported In
/// </history>
~CanvaWriteText_Sync()
~Countdown_Signin_Sync()
{
// DebugMessage("MFTTantaWriteText_Sync Destructor");
......@@ -397,7 +403,7 @@ namespace GISportService
}
// Calculate the image size (including padding)
m_cbImageSize = m_imageHeightInPixels * m_lStrideIfContiguous;//m_lStrideIfContiguous
m_cbImageSize = m_imageHeightInPixels * m_lStrideIfContiguous;
// now perform the initial setup of the fonts we will use to draw the text.
// since this information does not change (without a format change event)
......@@ -479,19 +485,19 @@ namespace GISportService
{
HResult hr = HResult.S_OK;
//// While we accept types that *might* be interlaced, if we actually receive
//// an interlaced sample, reject it.
//if (m_MightBeInterlaced == true)
//{
// int ix;
// While we accept types that *might* be interlaced, if we actually receive
// an interlaced sample, reject it.
if (m_MightBeInterlaced == true)
{
int ix;
// // Returns a bool: true = interlaced, false = progressive
// hr = InputSample.GetUINT32(MFAttributesClsid.MFSampleExtension_Interlaced, out ix);
// if (hr != HResult.S_OK || ix != 0)
// {
// hr = HResult.E_FAIL;
// }
//}
// Returns a bool: true = interlaced, false = progressive
hr = InputSample.GetUINT32(MFAttributesClsid.MFSampleExtension_Interlaced, out ix);
if (hr != HResult.S_OK || ix != 0)
{
hr = HResult.E_FAIL;
}
}
return hr;
}
......@@ -514,11 +520,11 @@ namespace GISportService
HResult hr = HResult.S_OK;
// see if the media type is one of our list of acceptable subtypes
//hr = TantaWMFUtils.CheckMediaType(pmt, MFMediaType.Video, m_MediaSubtypes);
//if (hr != HResult.S_OK)
//{
// throw new Exception("OnCheckMediaType call to TantaWMFUtils.CheckMediaType failed. Err=" + hr.ToString());
//}
hr = TantaWMFUtils.CheckMediaType(pmt, MFMediaType.Video, m_MediaSubtypes);
if (hr != HResult.S_OK)
{
throw new Exception("OnCheckMediaType call to TantaWMFUtils.CheckMediaType failed. Err=" + hr.ToString());
}
// Video must be progressive frames. Set this now
m_MightBeInterlaced = false;
......@@ -633,7 +639,7 @@ namespace GISportService
// you have to copy it about. See the MFTTantaGrayscale_Sync code.
// The strings to display.
string sString1 = "Hello!";
string sString1 = "签到中";
string sString2 = m_FrameCount.ToString();
// A wrapper around the video data.
......@@ -654,12 +660,16 @@ namespace GISportService
g.DrawString(sString1, m_fontOverlay, System.Drawing.Brushes.Red, sLeft, sTop, StringFormat.GenericTypographic);
// Add a frame number in the bottom right using the transparent font created earlier
d = g.MeasureString(sString2, m_transparentFont);
//d = g.MeasureString(sString2, m_transparentFont);
sLeft = (m_imageWidthInPixels - d.Width) - 10.0f;
sTop = (m_imageHeightInPixels - d.Height) - 10.0f;
//sLeft = (m_imageWidthInPixels - d.Width) - 10.0f;
//sTop = (m_imageHeightInPixels - d.Height) - 10.0f;
//g.DrawString(sString2, m_transparentFont, m_transparentBrush, sLeft, sTop, StringFormat.GenericTypographic);
g.DrawString(sString2, m_transparentFont, m_transparentBrush, sLeft, sTop, StringFormat.GenericTypographic);
d = g.MeasureString(sString2, m_fontOverlay);
sLeft = 0;
sTop = 0;
g.DrawString(sString2, m_fontOverlay, System.Drawing.Brushes.Red, sLeft, sTop, StringFormat.GenericTypographic);
}
}
......
......@@ -400,7 +400,7 @@ namespace GISportService
// audioThreadMethodHelper.enumstate = TantaEVRPlayerStateEnum.OpenPending;
// audioThread.Start(audioThreadMethodHelper); ;//构建拓扑 音频流
//}
Thread.Sleep(HEARTBEAT_DELAYTIME);
Thread.Sleep(HEARTBEAT_DELAYTIME*1000);
}
catch (Exception ex)
{
......@@ -857,11 +857,8 @@ namespace GISportService
/// <returns></returns>
private IMFTransform CreateTransformObjectAccordingToDisplay(string kongjian)
{
if (kongjian== "Signin") return new CanvaWriteText_Sync();
//if (radioButtonMFTGrayscaleAsync.Checked == true) return new MFTTantaGrayscale_Async();
//if (radioButtonMFTWriteText.Checked == true) return new MFTTantaWriteText_Sync(); ;
//if (radioButtonMFTGrayscaleSync.Checked == true) return new MFTTantaGrayscale_Sync();
//if (radioButtonMFTFrameCounter.Checked == true) return new MFTTantaFrameCounter_Sync();
if (kongjian== "Signin") return new Countdown_Signin_Sync();
return null;
}
......@@ -1101,7 +1098,7 @@ namespace GISportService
}
}
//VideoTransform = CreateTransformObjectAccordingToDisplay(kongjian);
VideoTransform = CreateTransformObjectAccordingToDisplay(kongjian);
if (VideoTransform != null)
{
// we do have an MFT transform object. Insert it into the topology between the source and output
......@@ -1200,6 +1197,7 @@ namespace GISportService
throw new Exception("OpenVideoFileAndPrepareSessionAndPlay call to sourceVideoNode.ConnectOutput failed. Err=" + hr.ToString());
}
}
if (type == 2)//视频
{
......@@ -1258,6 +1256,10 @@ namespace GISportService
{
Marshal.ReleaseComObject(sourceVideoNode);
}
if (VideoTransformNode != null)
{
Marshal.ReleaseComObject(VideoTransformNode);
}
if (outputSinkNodeVideo != null)
{
Marshal.ReleaseComObject(outputSinkNodeVideo);
......
......@@ -160,7 +160,7 @@
<Compile Include="FilePlayer.Designer.cs">
<DependentUpon>FilePlayer.cs</DependentUpon>
</Compile>
<Compile Include="CanvaWriteText_Sync.cs" />
<Compile Include="Control\Countdown_Signin_Sync.cs" />
<Compile Include="PlayDemo.cs">
<SubType>Form</SubType>
</Compile>
......
......@@ -122,6 +122,7 @@ namespace GISportService
FilePlayer1.InitMediaPlayer();
//加载命令服务
RemotingServer.getInstance(FilePlayer1);
}
public void PlayerStateChangedEventHandler(object sender, TantaEVRPlayerStateEnum playerState)
{
......
......@@ -46,12 +46,17 @@ namespace GISportService
////-pix_fmt format set pixel format, 'list' as argument shows all the pixel formats supported yuv420p
////-vcodec codec 强制使用codec编解码方式('copy' to copy stream)
////-b bitrate 设置比特率,缺省200kb/s
/// -an 不处理音频
////-s size 设置帧大小 格式为WXH 缺省160X128.下面的简写也可以直接使用:
////ffmpeg中采用H264,H265标准编码时,可能需要设置preset、
////转码-crf在优先保证画面质量(也不太在乎转码时间)的情况下,使用 - crf参数来控制转码是比较适宜的。这个参数的取值范围为0~51,其中0为无损模式,数值越大,画质越差,生成的文件却越小。从主观上讲,18~28是一个合理的范围。18被认为是视觉无损的(从技术角度上看当然还是有损的),它的输出视频质量和输入视频相当。
////-vframes number 设置转换多少桢(frame)的视频
////-t duration 设置纪录时间 hh:mm:ss[.xxx]格式的记录时间也支持
//string test2 = " -r 25 -loop 1 -i D:/GISports/img/f6ed67ae-02a4-46fd-8fcb-7944918b5c27.jpg -pix_fmt yuv420p -vcodec libx264 -b:v 600k -r:v 25 -preset medium -crf 30 -s 720x576 -r 25 -t 20 D:/GISports/img/h.mp4";
///主要参数: -i 设定输入流 -f 设定输出格式 -ss 开始时间 视频参数: -b 设定视频流量,默认为200Kbit/s -r 设定帧速率,默认为25 -s 设定画面的宽与高 -aspect 设定画面的比例 -vn 不处理视频 -vcodec 设定视频编解码器,未设定时则使用与输入流相同的编解码器
///音频参数: -ar 设定采样率 -ac 设定声音的Channel数 -acodec 设定声音编解码器,未设定时则使用与输入流相同的编解码器 -an 不处理音频
/////-r 提取图像的频率,-ss 开始时间,-t 持续时间
/////-bf B帧数目控制,-g 关键帧间隔控制,-s 分辨率控制
//string test2 = " -r 25 -loop 1 -i D:/GISports/img/f6ed67ae-02a4-46fd-8fcb-7944918b5c27.jpg -pix_fmt yuv420p -vcodec mpeg4 -b:v 600k -r:v 25 -preset medium -crf 30 -s 720x576 -r 25 -t 20 D:/GISports/img/h.mp4";
//string message = Processor.Execute(true, test2);
string configinputPath = "D:/GISports";
......@@ -128,7 +133,7 @@ namespace GISportService
string input = configinputPath + viewmodel.RPath;
string output = configOutputPath + viewmodel.VID + ".mp4";//固定转换
string goffmpeg = " -r 25 -loop 1 -i " + input + " -pix_fmt yuv420p -vcodec libx264 -b:v 600k -r:v 25 -preset medium -crf 30 -s 720x576 -r 25 -t " + sec + " " + output + "";
string goffmpeg = " -r 25 -loop 1 -i " + input + " -pix_fmt yuv420p -vcodec mpeg4 -b:v 600k -r:v 25 -preset medium -crf 30 -s 1920x1080 -r 25 -t " + sec + " " + output + "";
string message = Processor.Execute(true, goffmpeg);
}
}
......
条件编译:
在demo下会对制定的图片资源编译成视频。--已测试正常, 准备给前端PC配置资源时使用,自动将图片资源+时长,转换出同长的视频。
在demo下会对制定的图片资源编译成视频。--已测试正常, 准备给前端PC配置资源时使用(方法是Program中图片转视频的方法、路径),自动将图片资源+时长,转换出同长的视频。
在Debug下会打印每个资源具体播放时间。--已测试完全相等于数据库配置
singin 等倒计时定制控件,是实时的对每一个帧进行重写,背景视频时不断重新播放的。
预期:
1.篮球背景图,需要有课程介绍。
从数据库抽出文字,进行绘制。但是字体和位置都是固定的。所以数量一定不能多。
如果有特殊需要,在某个位置播放图片或视频,则需要再叠加处理。
2.课程结束图,需要刷新课程统计结果。一次统计,不断刷新展示。
还可能的更改:
canvas绘制时,使用真的图片覆盖,指定时长。 但是可能无法输出到Device,只能让显示屏显示 电脑屏幕。
现在把图片编译成视频,可以直接输出到 输出信号Device。
......@@ -20,6 +20,12 @@
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.Extensions.Configuration" publicKeyToken="adb9793829ddae60" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-2.2.0.0" newVersion="2.2.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.ValueTuple" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" />
</dependentAssembly>
......
2018-12-26 10:29:02,111 [1] ERROR EFCoreInitConfig.Config [(null)] - 数据库配置项,约定枚举中不存在GISportsModels,临时以key value 方式加载。 :
2018-12-26 19:27:09,665 [1] ERROR EFCoreInitConfig.Config [(null)] - 数据库配置项,约定枚举中不存在GISportsModels,临时以key value 方式加载。 :
2018-12-26 19:27:13,111 [1] ERROR GISportService.Program [(null)] - MySql.Data.MySqlClient.MySqlException (0x80004005): Unable to connect to any of the specified MySQL hosts.
在 MySqlConnector.Core.ServerSession.<ConnectAsync>d__58.MoveNext()
--- 引发异常的上一位置中堆栈跟踪的末尾 ---
在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
在 System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd(Task task)
在 MySqlConnector.Core.ConnectionPool.<GetSessionAsync>d__10.MoveNext()
--- 引发异常的上一位置中堆栈跟踪的末尾 ---
在 System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
在 MySqlConnector.Core.ConnectionPool.<GetSessionAsync>d__10.MoveNext()
--- 引发异常的上一位置中堆栈跟踪的末尾 ---
在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
在 System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.GetResult()
在 MySql.Data.MySqlClient.MySqlConnection.<CreateSessionAsync>d__91.MoveNext()
--- 引发异常的上一位置中堆栈跟踪的末尾 ---
在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
在 System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.GetResult()
在 MySql.Data.MySqlClient.MySqlConnection.<OpenAsync>d__25.MoveNext()
--- 引发异常的上一位置中堆栈跟踪的末尾 ---
在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
在 MySql.Data.MySqlClient.MySqlConnection.Open()
在 Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenDbConnection(Boolean errorsExpected)
在 Microsoft.EntityFrameworkCore.Storage.RelationalConnection.Open(Boolean errorsExpected)
在 Microsoft.EntityFrameworkCore.Query.Internal.QueryingEnumerable`1.Enumerator.BufferlessMoveNext(DbContext _, Boolean buffer)
在 Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.Execute[TState,TResult](TState state, Func`3 operation, Func`3 verifySucceeded)
在 Microsoft.EntityFrameworkCore.Query.Internal.QueryingEnumerable`1.Enumerator.MoveNext()
在 Microsoft.EntityFrameworkCore.Query.QueryMethodProvider.GetResult[TResult](IEnumerable`1 valueBuffers, Boolean throwOnNullResult)
在 lambda_method(Closure )
在 Microsoft.EntityFrameworkCore.Query.Internal.LinqOperatorProvider.ResultEnumerable`1.GetEnumerator()
在 Microsoft.EntityFrameworkCore.Query.Internal.LinqOperatorProvider.ExceptionInterceptor`1.EnumeratorExceptionInterceptor.MoveNext()
在 System.Linq.Enumerable.First[TSource](IEnumerable`1 source)
在 Microsoft.EntityFrameworkCore.Query.Internal.QueryCompiler.<>c__DisplayClass15_1`1.<CompileQueryCore>b__0(QueryContext qc)
在 Microsoft.EntityFrameworkCore.Query.Internal.QueryCompiler.Execute[TResult](Expression query)
在 Microsoft.EntityFrameworkCore.Query.Internal.EntityQueryProvider.Execute[TResult](Expression expression)
在 System.Linq.Queryable.Count[TSource](IQueryable`1 source)
在 GISportService.Program.Main() 位置 D:\smallproject\28.GISports\GISportService\Program.cs:行号 29 :
2018-12-26 19:27:58,840 [3] ERROR GISportService.FilePlayer [(null)] - MySql.Data.MySqlClient.MySqlException (0x80004005): Unable to connect to any of the specified MySQL hosts.
在 MySqlConnector.Core.ServerSession.<ConnectAsync>d__58.MoveNext()
--- 引发异常的上一位置中堆栈跟踪的末尾 ---
在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
在 System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd(Task task)
在 MySqlConnector.Core.ConnectionPool.<GetSessionAsync>d__10.MoveNext()
--- 引发异常的上一位置中堆栈跟踪的末尾 ---
在 System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
在 MySqlConnector.Core.ConnectionPool.<GetSessionAsync>d__10.MoveNext()
--- 引发异常的上一位置中堆栈跟踪的末尾 ---
在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
在 System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.GetResult()
在 MySql.Data.MySqlClient.MySqlConnection.<CreateSessionAsync>d__91.MoveNext()
--- 引发异常的上一位置中堆栈跟踪的末尾 ---
在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
在 System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.GetResult()
在 MySql.Data.MySqlClient.MySqlConnection.<OpenAsync>d__25.MoveNext()
--- 引发异常的上一位置中堆栈跟踪的末尾 ---
在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
在 MySql.Data.MySqlClient.MySqlConnection.Open()
在 Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenDbConnection(Boolean errorsExpected)
在 Microsoft.EntityFrameworkCore.Storage.RelationalConnection.Open(Boolean errorsExpected)
在 Microsoft.EntityFrameworkCore.Query.Internal.QueryingEnumerable`1.Enumerator.BufferlessMoveNext(DbContext _, Boolean buffer)
在 Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.Execute[TState,TResult](TState state, Func`3 operation, Func`3 verifySucceeded)
在 Microsoft.EntityFrameworkCore.Query.Internal.QueryingEnumerable`1.Enumerator.MoveNext()
在 Microsoft.EntityFrameworkCore.Query.Internal.LinqOperatorProvider.<_TrackEntities>d__17`2.MoveNext()
在 Microsoft.EntityFrameworkCore.Query.Internal.LinqOperatorProvider.ExceptionInterceptor`1.EnumeratorExceptionInterceptor.MoveNext()
在 System.Linq.Lookup`2.CreateForJoin(IEnumerable`1 source, Func`2 keySelector, IEqualityComparer`1 comparer)
在 System.Linq.Enumerable.<JoinIterator>d__38`4.MoveNext()
在 System.Linq.Buffer`1..ctor(IEnumerable`1 source)
在 System.Linq.OrderedEnumerable`1.<GetEnumerator>d__1.MoveNext()
在 System.Linq.Enumerable.WhereSelectEnumerableIterator`2.MoveNext()
在 System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
在 System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
在 GISportService.FilePlayer.LoadCourseResource(Int32 vcid) 位置 D:\smallproject\28.GISports\GISportService\FilePlayer.cs:行号 176 :
2018-12-26 19:28:02,603 [3] ERROR GISportService.FilePlayer [(null)] - MySql.Data.MySqlClient.MySqlException (0x80004005): Unable to connect to any of the specified MySQL hosts.
在 MySqlConnector.Core.ServerSession.<ConnectAsync>d__58.MoveNext()
--- 引发异常的上一位置中堆栈跟踪的末尾 ---
在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
在 System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd(Task task)
在 MySqlConnector.Core.ConnectionPool.<GetSessionAsync>d__10.MoveNext()
--- 引发异常的上一位置中堆栈跟踪的末尾 ---
在 System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
在 MySqlConnector.Core.ConnectionPool.<GetSessionAsync>d__10.MoveNext()
--- 引发异常的上一位置中堆栈跟踪的末尾 ---
在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
在 System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.GetResult()
在 MySql.Data.MySqlClient.MySqlConnection.<CreateSessionAsync>d__91.MoveNext()
--- 引发异常的上一位置中堆栈跟踪的末尾 ---
在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
在 System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.GetResult()
在 MySql.Data.MySqlClient.MySqlConnection.<OpenAsync>d__25.MoveNext()
--- 引发异常的上一位置中堆栈跟踪的末尾 ---
在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
在 MySql.Data.MySqlClient.MySqlConnection.Open()
在 Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenDbConnection(Boolean errorsExpected)
在 Microsoft.EntityFrameworkCore.Storage.RelationalConnection.Open(Boolean errorsExpected)
在 Microsoft.EntityFrameworkCore.Query.Internal.QueryingEnumerable`1.Enumerator.BufferlessMoveNext(DbContext _, Boolean buffer)
在 Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.Execute[TState,TResult](TState state, Func`3 operation, Func`3 verifySucceeded)
在 Microsoft.EntityFrameworkCore.Query.Internal.QueryingEnumerable`1.Enumerator.MoveNext()
在 Microsoft.EntityFrameworkCore.Query.Internal.LinqOperatorProvider.<_TrackEntities>d__17`2.MoveNext()
在 Microsoft.EntityFrameworkCore.Query.Internal.LinqOperatorProvider.ExceptionInterceptor`1.EnumeratorExceptionInterceptor.MoveNext()
在 System.Linq.Lookup`2.CreateForJoin(IEnumerable`1 source, Func`2 keySelector, IEqualityComparer`1 comparer)
在 System.Linq.Enumerable.<JoinIterator>d__38`4.MoveNext()
在 System.Linq.Buffer`1..ctor(IEnumerable`1 source)
在 System.Linq.OrderedEnumerable`1.<GetEnumerator>d__1.MoveNext()
在 System.Linq.Enumerable.WhereSelectEnumerableIterator`2.MoveNext()
在 System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
在 System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
在 GISportService.FilePlayer.LoadCourseResource(Int32 vcid) 位置 D:\smallproject\28.GISports\GISportService\FilePlayer.cs:行号 224 :
2018-12-26 19:31:29,960 [1] ERROR EFCoreInitConfig.Config [(null)] - 数据库配置项,约定枚举中不存在GISportsModels,临时以key value 方式加载。 :
2018-12-26 19:31:33,736 [1] ERROR GISportService.Program [(null)] - MySql.Data.MySqlClient.MySqlException (0x80004005): Unable to connect to any of the specified MySQL hosts.
在 MySqlConnector.Core.ServerSession.<ConnectAsync>d__58.MoveNext()
--- 引发异常的上一位置中堆栈跟踪的末尾 ---
在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
在 System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd(Task task)
在 MySqlConnector.Core.ConnectionPool.<GetSessionAsync>d__10.MoveNext()
--- 引发异常的上一位置中堆栈跟踪的末尾 ---
在 System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
在 MySqlConnector.Core.ConnectionPool.<GetSessionAsync>d__10.MoveNext()
--- 引发异常的上一位置中堆栈跟踪的末尾 ---
在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
在 System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.GetResult()
在 MySql.Data.MySqlClient.MySqlConnection.<CreateSessionAsync>d__91.MoveNext()
--- 引发异常的上一位置中堆栈跟踪的末尾 ---
在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
在 System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.GetResult()
在 MySql.Data.MySqlClient.MySqlConnection.<OpenAsync>d__25.MoveNext()
--- 引发异常的上一位置中堆栈跟踪的末尾 ---
在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
在 MySql.Data.MySqlClient.MySqlConnection.Open()
在 Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenDbConnection(Boolean errorsExpected)
在 Microsoft.EntityFrameworkCore.Storage.RelationalConnection.Open(Boolean errorsExpected)
在 Microsoft.EntityFrameworkCore.Query.Internal.QueryingEnumerable`1.Enumerator.BufferlessMoveNext(DbContext _, Boolean buffer)
在 Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.Execute[TState,TResult](TState state, Func`3 operation, Func`3 verifySucceeded)
在 Microsoft.EntityFrameworkCore.Query.Internal.QueryingEnumerable`1.Enumerator.MoveNext()
在 Microsoft.EntityFrameworkCore.Query.QueryMethodProvider.GetResult[TResult](IEnumerable`1 valueBuffers, Boolean throwOnNullResult)
在 lambda_method(Closure )
在 Microsoft.EntityFrameworkCore.Query.Internal.LinqOperatorProvider.ResultEnumerable`1.GetEnumerator()
在 Microsoft.EntityFrameworkCore.Query.Internal.LinqOperatorProvider.ExceptionInterceptor`1.EnumeratorExceptionInterceptor.MoveNext()
在 System.Linq.Enumerable.First[TSource](IEnumerable`1 source)
在 Microsoft.EntityFrameworkCore.Query.Internal.QueryCompiler.<>c__DisplayClass15_1`1.<CompileQueryCore>b__0(QueryContext qc)
在 Microsoft.EntityFrameworkCore.Query.Internal.QueryCompiler.Execute[TResult](Expression query)
在 Microsoft.EntityFrameworkCore.Query.Internal.EntityQueryProvider.Execute[TResult](Expression expression)
在 System.Linq.Queryable.Count[TSource](IQueryable`1 source)
在 GISportService.Program.Main() 位置 D:\smallproject\28.GISports\GISportService\Program.cs:行号 29 :
2018-12-26 19:32:11,197 [1] ERROR EFCoreInitConfig.Config [(null)] - 数据库配置项,约定枚举中不存在GISportsModels,临时以key value 方式加载。 :
2018-12-26 19:32:14,795 [1] ERROR GISportService.Program [(null)] - MySql.Data.MySqlClient.MySqlException (0x80004005): Unable to connect to any of the specified MySQL hosts.
在 MySqlConnector.Core.ServerSession.<ConnectAsync>d__58.MoveNext()
--- 引发异常的上一位置中堆栈跟踪的末尾 ---
在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
在 System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd(Task task)
在 MySqlConnector.Core.ConnectionPool.<GetSessionAsync>d__10.MoveNext()
--- 引发异常的上一位置中堆栈跟踪的末尾 ---
在 System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
在 MySqlConnector.Core.ConnectionPool.<GetSessionAsync>d__10.MoveNext()
--- 引发异常的上一位置中堆栈跟踪的末尾 ---
在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
在 System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.GetResult()
在 MySql.Data.MySqlClient.MySqlConnection.<CreateSessionAsync>d__91.MoveNext()
--- 引发异常的上一位置中堆栈跟踪的末尾 ---
在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
在 System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.GetResult()
在 MySql.Data.MySqlClient.MySqlConnection.<OpenAsync>d__25.MoveNext()
--- 引发异常的上一位置中堆栈跟踪的末尾 ---
在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
在 MySql.Data.MySqlClient.MySqlConnection.Open()
在 Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenDbConnection(Boolean errorsExpected)
在 Microsoft.EntityFrameworkCore.Storage.RelationalConnection.Open(Boolean errorsExpected)
在 Microsoft.EntityFrameworkCore.Query.Internal.QueryingEnumerable`1.Enumerator.BufferlessMoveNext(DbContext _, Boolean buffer)
在 Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.Execute[TState,TResult](TState state, Func`3 operation, Func`3 verifySucceeded)
在 Microsoft.EntityFrameworkCore.Query.Internal.QueryingEnumerable`1.Enumerator.MoveNext()
在 Microsoft.EntityFrameworkCore.Query.QueryMethodProvider.GetResult[TResult](IEnumerable`1 valueBuffers, Boolean throwOnNullResult)
在 lambda_method(Closure )
在 Microsoft.EntityFrameworkCore.Query.Internal.LinqOperatorProvider.ResultEnumerable`1.GetEnumerator()
在 Microsoft.EntityFrameworkCore.Query.Internal.LinqOperatorProvider.ExceptionInterceptor`1.EnumeratorExceptionInterceptor.MoveNext()
在 System.Linq.Enumerable.First[TSource](IEnumerable`1 source)
在 Microsoft.EntityFrameworkCore.Query.Internal.QueryCompiler.<>c__DisplayClass15_1`1.<CompileQueryCore>b__0(QueryContext qc)
在 Microsoft.EntityFrameworkCore.Query.Internal.QueryCompiler.Execute[TResult](Expression query)
在 Microsoft.EntityFrameworkCore.Query.Internal.EntityQueryProvider.Execute[TResult](Expression expression)
在 System.Linq.Queryable.Count[TSource](IQueryable`1 source)
在 GISportService.Program.Main() 位置 D:\smallproject\28.GISports\GISportService\Program.cs:行号 29 :
2018-12-26 19:34:18,877 [1] ERROR EFCoreInitConfig.Config [(null)] - 数据库配置项,约定枚举中不存在GISportsModels,临时以key value 方式加载。 :
2018-12-26 19:41:36,868 [1] ERROR EFCoreInitConfig.Config [(null)] - 数据库配置项,约定枚举中不存在GISportsModels,临时以key value 方式加载。 :
2018-12-26 19:49:22,910 [1] ERROR EFCoreInitConfig.Config [(null)] - 数据库配置项,约定枚举中不存在GISportsModels,临时以key value 方式加载。 :
2018-12-26 19:50:57,206 [1] ERROR EFCoreInitConfig.Config [(null)] - 数据库配置项,约定枚举中不存在GISportsModels,临时以key value 方式加载。 :
2018-12-26 19:51:48,435 [1] ERROR EFCoreInitConfig.Config [(null)] - 数据库配置项,约定枚举中不存在GISportsModels,临时以key value 方式加载。 :
2018-12-26 19:54:02,155 [1] ERROR EFCoreInitConfig.Config [(null)] - 数据库配置项,约定枚举中不存在GISportsModels,临时以key value 方式加载。 :
2018-12-26 20:06:34,188 [1] ERROR EFCoreInitConfig.Config [(null)] - 数据库配置项,约定枚举中不存在GISportsModels,临时以key value 方式加载。 :
2018-12-26 20:09:33,794 [1] ERROR EFCoreInitConfig.Config [(null)] - 数据库配置项,约定枚举中不存在GISportsModels,临时以key value 方式加载。 :
2018-12-26 20:10:18,252 [1] ERROR EFCoreInitConfig.Config [(null)] - 数据库配置项,约定枚举中不存在GISportsModels,临时以key value 方式加载。 :
2018-12-27 09:53:39,547 [1] ERROR EFCoreInitConfig.Config [(null)] - 数据库配置项,约定枚举中不存在GISportsModels,临时以key value 方式加载。 :
2018-12-27 09:54:28,825 [1] ERROR EFCoreInitConfig.Config [(null)] - 数据库配置项,约定枚举中不存在GISportsModels,临时以key value 方式加载。 :
2018-12-27 09:59:27,943 [1] ERROR EFCoreInitConfig.Config [(null)] - 数据库配置项,约定枚举中不存在GISportsModels,临时以key value 方式加载。 :
......@@ -379,3 +379,33 @@
12/19/2018 17:28:38 GISportService.FilePlayer: ctlTantaEVRFilePlayer_SizeChanged
12/26/2018 10:29:43 GISportService.FilePlayer: ctlTantaEVRFilePlayer_SizeChanged
12/26/2018 10:29:43 GISportService.FilePlayer: ctlTantaEVRFilePlayer_SizeChanged
12/26/2018 19:27:19 GISportService.FilePlayer: ctlTantaEVRFilePlayer_SizeChanged
12/26/2018 19:27:19 GISportService.FilePlayer: ctlTantaEVRFilePlayer_SizeChanged
12/26/2018 19:31:33 GISportService.FilePlayer: ctlTantaEVRFilePlayer_SizeChanged
12/26/2018 19:31:33 GISportService.FilePlayer: ctlTantaEVRFilePlayer_SizeChanged
12/26/2018 19:32:14 GISportService.FilePlayer: ctlTantaEVRFilePlayer_SizeChanged
12/26/2018 19:32:14 GISportService.FilePlayer: ctlTantaEVRFilePlayer_SizeChanged
12/26/2018 19:34:20 GISportService.FilePlayer: ctlTantaEVRFilePlayer_SizeChanged
12/26/2018 19:34:20 GISportService.FilePlayer: ctlTantaEVRFilePlayer_SizeChanged
12/26/2018 19:41:38 GISportService.FilePlayer: ctlTantaEVRFilePlayer_SizeChanged
12/26/2018 19:41:38 GISportService.FilePlayer: ctlTantaEVRFilePlayer_SizeChanged
12/26/2018 19:49:25 GISportService.FilePlayer: ctlTantaEVRFilePlayer_SizeChanged
12/26/2018 19:49:25 GISportService.FilePlayer: ctlTantaEVRFilePlayer_SizeChanged
12/26/2018 19:50:58 GISportService.FilePlayer: ctlTantaEVRFilePlayer_SizeChanged
12/26/2018 19:50:58 GISportService.FilePlayer: ctlTantaEVRFilePlayer_SizeChanged
12/26/2018 19:51:50 GISportService.FilePlayer: ctlTantaEVRFilePlayer_SizeChanged
12/26/2018 19:51:50 GISportService.FilePlayer: ctlTantaEVRFilePlayer_SizeChanged
12/26/2018 19:54:05 GISportService.FilePlayer: ctlTantaEVRFilePlayer_SizeChanged
12/26/2018 19:54:05 GISportService.FilePlayer: ctlTantaEVRFilePlayer_SizeChanged
12/26/2018 20:06:36 GISportService.FilePlayer: ctlTantaEVRFilePlayer_SizeChanged
12/26/2018 20:06:36 GISportService.FilePlayer: ctlTantaEVRFilePlayer_SizeChanged
12/26/2018 20:09:35 GISportService.FilePlayer: ctlTantaEVRFilePlayer_SizeChanged
12/26/2018 20:09:35 GISportService.FilePlayer: ctlTantaEVRFilePlayer_SizeChanged
12/26/2018 20:10:19 GISportService.FilePlayer: ctlTantaEVRFilePlayer_SizeChanged
12/26/2018 20:10:19 GISportService.FilePlayer: ctlTantaEVRFilePlayer_SizeChanged
12/27/2018 09:53:42 GISportService.FilePlayer: ctlTantaEVRFilePlayer_SizeChanged
12/27/2018 09:53:42 GISportService.FilePlayer: ctlTantaEVRFilePlayer_SizeChanged
12/27/2018 09:54:30 GISportService.FilePlayer: ctlTantaEVRFilePlayer_SizeChanged
12/27/2018 09:54:30 GISportService.FilePlayer: ctlTantaEVRFilePlayer_SizeChanged
12/27/2018 09:59:30 GISportService.FilePlayer: ctlTantaEVRFilePlayer_SizeChanged
12/27/2018 09:59:30 GISportService.FilePlayer: ctlTantaEVRFilePlayer_SizeChanged
04d09ba3a62e423f871626c2be5a51544ddc4799
5e066b49f313cb287086e2f3aea16f50dcdb0237
......@@ -20,6 +20,12 @@
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.Extensions.Configuration" publicKeyToken="adb9793829ddae60" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-2.2.0.0" newVersion="2.2.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.ValueTuple" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" />
</dependentAssembly>
......
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v2.0",
"signature": "4892bdcd4c5931abe7206898ea39b4d81a8a426e"
"signature": "b7adc9b9c5a712c46b79685d3e4234b0f5415509"
},
"compilationOptions": {},
"targets": {
......@@ -17,14 +17,6 @@
"GISportsModels.dll": {}
}
},
"Google.Protobuf/3.5.1": {
"runtime": {
"lib/netstandard1.0/Google.Protobuf.dll": {
"assemblyVersion": "3.5.1.0",
"fileVersion": "3.5.1.0"
}
}
},
"log4net/2.0.8": {
"dependencies": {
"System.AppContext": "4.1.0",
......@@ -44,7 +36,7 @@
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
"System.Runtime.Serialization.Formatters": "4.3.0",
"System.Text.RegularExpressions": "4.1.0",
......@@ -121,7 +113,7 @@
},
"Microsoft.Extensions.Caching.Abstractions/2.1.1": {
"dependencies": {
"Microsoft.Extensions.Primitives": "2.2.0"
"Microsoft.Extensions.Primitives": "2.1.1"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
......@@ -143,61 +135,61 @@
}
}
},
"Microsoft.Extensions.Configuration/2.2.0": {
"Microsoft.Extensions.Configuration/2.1.1": {
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "2.2.0"
"Microsoft.Extensions.Configuration.Abstractions": "2.1.1"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18315"
"assemblyVersion": "2.1.1.0",
"fileVersion": "2.1.1.18157"
}
}
},
"Microsoft.Extensions.Configuration.Abstractions/2.2.0": {
"Microsoft.Extensions.Configuration.Abstractions/2.1.1": {
"dependencies": {
"Microsoft.Extensions.Primitives": "2.2.0"
"Microsoft.Extensions.Primitives": "2.1.1"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18315"
"assemblyVersion": "2.1.1.0",
"fileVersion": "2.1.1.18157"
}
}
},
"Microsoft.Extensions.Configuration.Binder/2.2.0": {
"Microsoft.Extensions.Configuration.Binder/2.1.1": {
"dependencies": {
"Microsoft.Extensions.Configuration": "2.2.0"
"Microsoft.Extensions.Configuration": "2.1.1"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18315"
"assemblyVersion": "2.1.1.0",
"fileVersion": "2.1.1.18157"
}
}
},
"Microsoft.Extensions.Configuration.FileExtensions/2.2.0": {
"Microsoft.Extensions.Configuration.FileExtensions/2.1.1": {
"dependencies": {
"Microsoft.Extensions.Configuration": "2.2.0",
"Microsoft.Extensions.FileProviders.Physical": "2.2.0"
"Microsoft.Extensions.Configuration": "2.1.1",
"Microsoft.Extensions.FileProviders.Physical": "2.1.1"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18315"
"assemblyVersion": "2.1.1.0",
"fileVersion": "2.1.1.18157"
}
}
},
"Microsoft.Extensions.Configuration.Json/2.2.0": {
"Microsoft.Extensions.Configuration.Json/2.1.1": {
"dependencies": {
"Microsoft.Extensions.Configuration": "2.2.0",
"Microsoft.Extensions.Configuration.FileExtensions": "2.2.0",
"Microsoft.Extensions.Configuration": "2.1.1",
"Microsoft.Extensions.Configuration.FileExtensions": "2.1.1",
"Newtonsoft.Json": "11.0.2"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18315"
"assemblyVersion": "2.1.1.0",
"fileVersion": "2.1.1.18157"
}
}
},
......@@ -220,40 +212,40 @@
}
}
},
"Microsoft.Extensions.FileProviders.Abstractions/2.2.0": {
"Microsoft.Extensions.FileProviders.Abstractions/2.1.1": {
"dependencies": {
"Microsoft.Extensions.Primitives": "2.2.0"
"Microsoft.Extensions.Primitives": "2.1.1"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18315"
"assemblyVersion": "2.1.1.0",
"fileVersion": "2.1.1.18157"
}
}
},
"Microsoft.Extensions.FileProviders.Physical/2.2.0": {
"Microsoft.Extensions.FileProviders.Physical/2.1.1": {
"dependencies": {
"Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
"Microsoft.Extensions.FileSystemGlobbing": "2.2.0"
"Microsoft.Extensions.FileProviders.Abstractions": "2.1.1",
"Microsoft.Extensions.FileSystemGlobbing": "2.1.1"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18315"
"assemblyVersion": "2.1.1.0",
"fileVersion": "2.1.1.18157"
}
}
},
"Microsoft.Extensions.FileSystemGlobbing/2.2.0": {
"Microsoft.Extensions.FileSystemGlobbing/2.1.1": {
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18315"
"assemblyVersion": "2.1.1.0",
"fileVersion": "2.1.1.18157"
}
}
},
"Microsoft.Extensions.Logging/2.1.1": {
"dependencies": {
"Microsoft.Extensions.Configuration.Binder": "2.2.0",
"Microsoft.Extensions.Configuration.Binder": "2.1.1",
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
"Microsoft.Extensions.Logging.Abstractions": "2.1.1",
"Microsoft.Extensions.Options": "2.1.1"
......@@ -276,7 +268,7 @@
"Microsoft.Extensions.Options/2.1.1": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
"Microsoft.Extensions.Primitives": "2.2.0"
"Microsoft.Extensions.Primitives": "2.1.1"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Options.dll": {
......@@ -285,15 +277,15 @@
}
}
},
"Microsoft.Extensions.Primitives/2.2.0": {
"Microsoft.Extensions.Primitives/2.1.1": {
"dependencies": {
"System.Memory": "4.5.1",
"System.Runtime.CompilerServices.Unsafe": "4.5.1"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18315"
"assemblyVersion": "2.1.1.0",
"fileVersion": "2.1.1.18157"
}
}
},
......@@ -311,8 +303,8 @@
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0"
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
......@@ -325,17 +317,16 @@
}
}
},
"MySql.Data/8.0.13": {
"MySql.Data/6.10.7": {
"dependencies": {
"Google.Protobuf": "3.5.1",
"System.Configuration.ConfigurationManager": "4.4.1",
"System.Security.Permissions": "4.4.1",
"System.Text.Encoding.CodePages": "4.4.0"
"System.Configuration.ConfigurationManager": "4.4.0",
"System.Security.Permissions": "4.4.0",
"System.Text.Encoding.CodePages": "4.0.1"
},
"runtime": {
"lib/netcoreapp2.0/MySql.Data.dll": {
"assemblyVersion": "8.0.13.0",
"fileVersion": "8.0.13.0"
"assemblyVersion": "6.10.7.0",
"fileVersion": "6.10.7.0"
}
}
},
......@@ -466,14 +457,14 @@
}
},
"System.ComponentModel.Annotations/4.5.0": {},
"System.Configuration.ConfigurationManager/4.4.1": {
"System.Configuration.ConfigurationManager/4.4.0": {
"dependencies": {
"System.Security.Cryptography.ProtectedData": "4.4.0"
},
"runtime": {
"lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "4.6.25921.2"
"fileVersion": "4.6.25519.3"
}
}
},
......@@ -512,8 +503,8 @@
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.3.0",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
......@@ -594,7 +585,7 @@
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.3.0"
"System.Runtime.InteropServices": "4.1.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
......@@ -629,7 +620,7 @@
"System.IO": "4.3.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.Handles": "4.0.1",
"System.Text.Encoding": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
......@@ -648,8 +639,8 @@
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.0.11",
"System.Threading.Overlapped": "4.0.1",
......@@ -739,8 +730,8 @@
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.OpenSsl": "4.0.0",
......@@ -773,8 +764,8 @@
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Principal.Windows": "4.4.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.3.0",
......@@ -795,7 +786,7 @@
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0"
"System.Runtime.Handles": "4.0.1"
}
},
"System.Net.Requests/4.0.11": {
......@@ -902,7 +893,7 @@
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.3.0",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11"
......@@ -947,19 +938,19 @@
"System.Runtime": "4.3.0"
}
},
"System.Runtime.Handles/4.3.0": {
"System.Runtime.Handles/4.0.1": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Runtime.InteropServices/4.3.0": {
"System.Runtime.InteropServices/4.1.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Reflection": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0"
"System.Runtime.Handles": "4.0.1"
}
},
"System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
......@@ -967,7 +958,7 @@
"System.Reflection": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"runtime.native.System": "4.0.0"
},
......@@ -1027,8 +1018,8 @@
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
......@@ -1052,8 +1043,8 @@
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
......@@ -1077,8 +1068,8 @@
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
......@@ -1104,8 +1095,8 @@
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.3.0",
"runtime.native.System.Security.Cryptography": "4.0.0"
......@@ -1128,8 +1119,8 @@
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
......@@ -1183,8 +1174,8 @@
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Cng": "4.2.0",
......@@ -1209,14 +1200,14 @@
}
}
},
"System.Security.Permissions/4.4.1": {
"System.Security.Permissions/4.4.0": {
"dependencies": {
"System.Security.AccessControl": "4.4.0"
},
"runtime": {
"lib/netstandard2.0/System.Security.Permissions.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "4.6.25921.2"
"fileVersion": "4.6.25519.3"
}
}
},
......@@ -1238,19 +1229,32 @@
"System.Runtime": "4.3.0"
}
},
"System.Text.Encoding.CodePages/4.4.0": {
"runtime": {
"lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
"assemblyVersion": "4.1.0.0",
"fileVersion": "4.6.25519.3"
}
"System.Text.Encoding.CodePages/4.0.1": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Reflection": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.0.11"
},
"runtimeTargets": {
"runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
"runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {
"rid": "unix",
"assetType": "runtime",
"assemblyVersion": "4.0.1.0",
"fileVersion": "1.0.24212.1"
},
"runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "4.1.0.0",
"fileVersion": "4.6.25519.3"
"assemblyVersion": "4.0.1.0",
"fileVersion": "1.0.24212.1"
}
}
},
......@@ -1281,7 +1285,7 @@
"dependencies": {
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0"
"System.Runtime.Handles": "4.0.1"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
......@@ -1315,7 +1319,7 @@
"System.Threading.ThreadPool/4.0.10": {
"dependencies": {
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0"
"System.Runtime.Handles": "4.0.1"
}
},
"System.Threading.Timer/4.0.1": {
......@@ -1336,7 +1340,7 @@
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.3.0",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
......@@ -1361,9 +1365,9 @@
"EFCoreInitConfig/1.0.0": {
"dependencies": {
"GILogger": "1.0.0",
"Microsoft.Extensions.Configuration": "2.2.0",
"Microsoft.Extensions.Configuration.Binder": "2.2.0",
"Microsoft.Extensions.Configuration.Json": "2.2.0",
"Microsoft.Extensions.Configuration": "2.1.1",
"Microsoft.Extensions.Configuration.Binder": "2.1.1",
"Microsoft.Extensions.Configuration.Json": "2.1.1",
"System.ValueTuple": "4.5.0"
},
"runtime": {
......@@ -1372,8 +1376,7 @@
},
"GILogger/1.0.0": {
"dependencies": {
"MySql.Data": "8.0.13",
"System.Runtime.InteropServices": "4.3.0",
"MySql.Data": "6.10.7",
"log4net": "2.0.8"
},
"runtime": {
......@@ -1388,13 +1391,6 @@
"serviceable": false,
"sha512": ""
},
"Google.Protobuf/3.5.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-j/gbpRZ68sgvdi/vXI39Cj/jWG4d1dtDqfWbkjC9dErNWu/dFcIlq1LIgLscea+llZ6nzm06wz/JGziOegAL7Q==",
"path": "google.protobuf/3.5.1",
"hashPath": "google.protobuf.3.5.1.nupkg.sha512"
},
"log4net/2.0.8": {
"type": "package",
"serviceable": true,
......@@ -1465,40 +1461,40 @@
"path": "microsoft.extensions.caching.memory/2.1.1",
"hashPath": "microsoft.extensions.caching.memory.2.1.1.nupkg.sha512"
},
"Microsoft.Extensions.Configuration/2.2.0": {
"Microsoft.Extensions.Configuration/2.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-0MtJgCZ5tIw7LoxOlXlifwVTwfMd4YdMJ9+DVZyX/fqqXO9zseZ8hH2WxbJzDbBDp45nA8rwHlL4JH/6Z98B4w==",
"path": "microsoft.extensions.configuration/2.2.0",
"hashPath": "microsoft.extensions.configuration.2.2.0.nupkg.sha512"
"sha512": "sha512-LjVKO6P2y52c5ZhTLX/w8zc5H4Y3J/LJsgqTBj49TtFq/hAtVNue/WA0F6/7GMY90xhD7K0MDZ4qpOeWXbLvzg==",
"path": "microsoft.extensions.configuration/2.1.1",
"hashPath": "microsoft.extensions.configuration.2.1.1.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Abstractions/2.2.0": {
"Microsoft.Extensions.Configuration.Abstractions/2.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-M6u4cMWXxPtqyJJ03oezyqTORmSgTPpa2gZRKkEGCXXHhyGnM1cHjPTzq5sevYS1VJEMb2TZj60mAc+hDoPPcQ==",
"path": "microsoft.extensions.configuration.abstractions/2.2.0",
"hashPath": "microsoft.extensions.configuration.abstractions.2.2.0.nupkg.sha512"
"sha512": "sha512-VfuZJNa0WUshZ/+8BFZAhwFKiKuu/qOUCFntfdLpHj7vcRnsGHqd3G2Hse78DM+pgozczGM63lGPRLmy+uhUOA==",
"path": "microsoft.extensions.configuration.abstractions/2.1.1",
"hashPath": "microsoft.extensions.configuration.abstractions.2.1.1.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Binder/2.2.0": {
"Microsoft.Extensions.Configuration.Binder/2.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-6ANwTuQZqIIt0guKAdS9Mn6c+PfhOBpqRm7FslUJqtG000uo0Cd3pAndk92RQq0ygDFRub/ftiRy8DukWXqNzQ==",
"path": "microsoft.extensions.configuration.binder/2.2.0",
"hashPath": "microsoft.extensions.configuration.binder.2.2.0.nupkg.sha512"
"sha512": "sha512-fcLCTS03poWE4v9tSNBr3pWn0QwGgAn1vzqHXlXgvqZeOc7LvQNzaWcKRQZTdEc3+YhQKwMsOtm3VKSA2aWQ8w==",
"path": "microsoft.extensions.configuration.binder/2.1.1",
"hashPath": "microsoft.extensions.configuration.binder.2.1.1.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.FileExtensions/2.2.0": {
"Microsoft.Extensions.Configuration.FileExtensions/2.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-BnkmTopJ7m+p0/EBshdJmoWroUvMlu+oA+bDvzEWh3WA9rOYdnTZueQ7Ap1oSfUnHnPBnuWae/ED8hHlM/sQxA==",
"path": "microsoft.extensions.configuration.fileextensions/2.2.0",
"hashPath": "microsoft.extensions.configuration.fileextensions.2.2.0.nupkg.sha512"
"sha512": "sha512-CDk5CwG0YzlRgvl65J0iK6ahrX12yMRrEat3yVTXjWC+GN9Jg9zHZu2IE4cQIPAMA/IiAI5KjgL08fhP3fPCkw==",
"path": "microsoft.extensions.configuration.fileextensions/2.1.1",
"hashPath": "microsoft.extensions.configuration.fileextensions.2.1.1.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Json/2.2.0": {
"Microsoft.Extensions.Configuration.Json/2.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-CqqFzpFuW9rOWOHI9c3JrGrOOogfLRrGTWVU2AIFkxXRQ/bAg5lL3WabkVEywmTRo58AI3p6sT0ACNy9s279VA==",
"path": "microsoft.extensions.configuration.json/2.2.0",
"hashPath": "microsoft.extensions.configuration.json.2.2.0.nupkg.sha512"
"sha512": "sha512-IFpONpvdhVEE3S3F4fTYkpT/GyIHtumy2m0HniQanJ80Pj/pUF3Z4wjrHEp1G78rPD+WTo5fRlhdJfuU1Tv2GQ==",
"path": "microsoft.extensions.configuration.json/2.1.1",
"hashPath": "microsoft.extensions.configuration.json.2.1.1.nupkg.sha512"
},
"Microsoft.Extensions.DependencyInjection/2.1.1": {
"type": "package",
......@@ -1514,26 +1510,26 @@
"path": "microsoft.extensions.dependencyinjection.abstractions/2.1.1",
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.2.1.1.nupkg.sha512"
},
"Microsoft.Extensions.FileProviders.Abstractions/2.2.0": {
"Microsoft.Extensions.FileProviders.Abstractions/2.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-33vTyijzAVEfbuNFts68R7bW02cJMiw21MFgMBk+XL+thcbv335PVD1+DdMSvN6e5DeAR4OmPSRsKIr86Yk4qg==",
"path": "microsoft.extensions.fileproviders.abstractions/2.2.0",
"hashPath": "microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512"
"sha512": "sha512-UEQB5/QPuLYaCvScZQ9llhcks5xyEUKh41D615FoehRAF9UgGVmXHcCSOH8idHHLRoKm+OJJjEy1oywvuaL33w==",
"path": "microsoft.extensions.fileproviders.abstractions/2.1.1",
"hashPath": "microsoft.extensions.fileproviders.abstractions.2.1.1.nupkg.sha512"
},
"Microsoft.Extensions.FileProviders.Physical/2.2.0": {
"Microsoft.Extensions.FileProviders.Physical/2.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Qt6sUa56/XbLxYshrCzwJYhHO9TkVa9Adch1qVqr7PGuLCxRs3K7nGMv3I6msUvAJqiJE33Oexz6KrT4hcUHgA==",
"path": "microsoft.extensions.fileproviders.physical/2.2.0",
"hashPath": "microsoft.extensions.fileproviders.physical.2.2.0.nupkg.sha512"
"sha512": "sha512-kVCvLm1ePchUgRrQZrno07Mn6knDAzR7vl6eRaI/fem0u6ODg+RTwOYLs4XL39Ttuu+BzEwqzHu3DtDgXT8+vQ==",
"path": "microsoft.extensions.fileproviders.physical/2.1.1",
"hashPath": "microsoft.extensions.fileproviders.physical.2.1.1.nupkg.sha512"
},
"Microsoft.Extensions.FileSystemGlobbing/2.2.0": {
"Microsoft.Extensions.FileSystemGlobbing/2.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-WGASE48sldx5PHrmxpmW0qFJ0M0mZXhF9IgdBDTSNmnys7Qfw7xTuHs/nmbA1Wo8Y8XFI7K2cJKf9Ql/nBK4Rw==",
"path": "microsoft.extensions.filesystemglobbing/2.2.0",
"hashPath": "microsoft.extensions.filesystemglobbing.2.2.0.nupkg.sha512"
"sha512": "sha512-4QDzyCN8cJnThY6mK9SnzovyCZ8KCG9jmC9KqHfFGtazJvmNZP1gcyBkPmqMjP0qwbmEUUyqyA9LLn3FrYXTGw==",
"path": "microsoft.extensions.filesystemglobbing/2.1.1",
"hashPath": "microsoft.extensions.filesystemglobbing.2.1.1.nupkg.sha512"
},
"Microsoft.Extensions.Logging/2.1.1": {
"type": "package",
......@@ -1556,12 +1552,12 @@
"path": "microsoft.extensions.options/2.1.1",
"hashPath": "microsoft.extensions.options.2.1.1.nupkg.sha512"
},
"Microsoft.Extensions.Primitives/2.2.0": {
"Microsoft.Extensions.Primitives/2.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-vpH+o7f8obVx65PiEtBXxTwL5RosK60fNIMy/y8WGE4/r4IvAqQGukOzMhxsp//Accvd7kmukyQTVkqVYdaDyA==",
"path": "microsoft.extensions.primitives/2.2.0",
"hashPath": "microsoft.extensions.primitives.2.2.0.nupkg.sha512"
"sha512": "sha512-scJ1GZNIxMmjpENh0UZ8XCQ6vzr/LzeF9WvEA51Ix2OQGAs9WPgPu8ABVUdvpKPLuor/t05gm6menJK3PwqOXg==",
"path": "microsoft.extensions.primitives/2.1.1",
"hashPath": "microsoft.extensions.primitives.2.1.1.nupkg.sha512"
},
"Microsoft.NETCore.Targets/1.1.0": {
"type": "package",
......@@ -1584,12 +1580,12 @@
"path": "microsoft.win32.registry/4.0.0",
"hashPath": "microsoft.win32.registry.4.0.0.nupkg.sha512"
},
"MySql.Data/8.0.13": {
"MySql.Data/6.10.7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-mXfjg2pOdzpyd4wkXZPKYcNluzV68ggAO/LPcT7iuzU5kDS7livUDR8IsKkarEhBmRxBy0XmBnUOkEWJvfOW9Q==",
"path": "mysql.data/8.0.13",
"hashPath": "mysql.data.8.0.13.nupkg.sha512"
"sha512": "sha512-2fptledJVo4GaF/DOpWgumn+pteZ2eNlaZTE8I6CUvK7Zz5UGPWTg3v9l4Ymp9ewivodYI5VDn6ucVyKL/e++A==",
"path": "mysql.data/6.10.7",
"hashPath": "mysql.data.6.10.7.nupkg.sha512"
},
"MySqlConnector/0.44.1": {
"type": "package",
......@@ -1696,12 +1692,12 @@
"path": "system.componentmodel.annotations/4.5.0",
"hashPath": "system.componentmodel.annotations.4.5.0.nupkg.sha512"
},
"System.Configuration.ConfigurationManager/4.4.1": {
"System.Configuration.ConfigurationManager/4.4.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-LoSjM/kLDpyLyoGsmwS5oVMRzHf/0XHkRpr3QZu/HuAv6Sfk919usTMLqD9N9VK3S4Q2+bd3tKJ0ko4MYFfq4Q==",
"path": "system.configuration.configurationmanager/4.4.1",
"hashPath": "system.configuration.configurationmanager.4.4.1.nupkg.sha512"
"sha512": "sha512-RLYB3YOmdz9dE3zMhBFGv3GF74upGjH0nF0G9lFFRLNLsCEMIpiuQsMGv2qE0qdp1JdheVNO8RIRpUKdokiK+g==",
"path": "system.configuration.configurationmanager/4.4.0",
"hashPath": "system.configuration.configurationmanager.4.4.0.nupkg.sha512"
},
"System.Console/4.0.0": {
"type": "package",
......@@ -1969,19 +1965,19 @@
"path": "system.runtime.extensions/4.1.0",
"hashPath": "system.runtime.extensions.4.1.0.nupkg.sha512"
},
"System.Runtime.Handles/4.3.0": {
"System.Runtime.Handles/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
"path": "system.runtime.handles/4.3.0",
"hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
"sha512": "sha512-nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==",
"path": "system.runtime.handles/4.0.1",
"hashPath": "system.runtime.handles.4.0.1.nupkg.sha512"
},
"System.Runtime.InteropServices/4.3.0": {
"System.Runtime.InteropServices/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
"path": "system.runtime.interopservices/4.3.0",
"hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
"sha512": "sha512-16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==",
"path": "system.runtime.interopservices/4.1.0",
"hashPath": "system.runtime.interopservices.4.1.0.nupkg.sha512"
},
"System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
"type": "package",
......@@ -2074,12 +2070,12 @@
"path": "system.security.cryptography.x509certificates/4.1.0",
"hashPath": "system.security.cryptography.x509certificates.4.1.0.nupkg.sha512"
},
"System.Security.Permissions/4.4.1": {
"System.Security.Permissions/4.4.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-tXBMO8OJEuw9c4KjLj4fwxJusely90azF24Uktz/evgvowAtU963HYl+G93gaRZr6pvYvsSPrjkN4+2pdVUbgw==",
"path": "system.security.permissions/4.4.1",
"hashPath": "system.security.permissions.4.4.1.nupkg.sha512"
"sha512": "sha512-eeIuiiT15KEq9PKZbGagsCBmb7+z2Zphv3LcrINr2lHHvAGGsdWyq9YztLU2V77yoiqchH61iVH9//TvMY9+/A==",
"path": "system.security.permissions/4.4.0",
"hashPath": "system.security.permissions.4.4.0.nupkg.sha512"
},
"System.Security.Principal.Windows/4.4.0": {
"type": "package",
......@@ -2095,12 +2091,12 @@
"path": "system.text.encoding/4.3.0",
"hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
},
"System.Text.Encoding.CodePages/4.4.0": {
"System.Text.Encoding.CodePages/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-FpAgMC+BX6OOCiRebYqHP3r3aYU7o0lopPOo4zKyGc5LWXFEYRUaKtoXXvAJ3sP+IDOK/KBxZaiVAdi+QdZ0TA==",
"path": "system.text.encoding.codepages/4.4.0",
"hashPath": "system.text.encoding.codepages.4.4.0.nupkg.sha512"
"sha512": "sha512-h4z6rrA/hxWf4655D18IIZ0eaLRa3tQC/j+e26W+VinIHY0l07iEXaAvO0YSYq3MvCjMYy8Zs5AdC1sxNQOB7Q==",
"path": "system.text.encoding.codepages/4.0.1",
"hashPath": "system.text.encoding.codepages.4.0.1.nupkg.sha512"
},
"System.Text.Encoding.Extensions/4.0.11": {
"type": "package",
......
......@@ -10,7 +10,7 @@
"DataHistoryModel": "server=castle.gimind.com;port=3306;user=palas;password=lapas;database=debit_quote;Character Set=utf8",
"GIClientModel": "server=earth.gimind.com;port=3306;user=palas;password=lapas;database=gi_client_db",
"iTraderModels": "server=mech.gimind.com;port=3306;user=palas;password=lapas;database=iTrader;Character Set=utf8",
"PalasEntityModel": "server=earth.gimind.com;port=3306;user=palas;password=lapas;database=Palas_V5;Character Set=utf8",
"PalasEntityModel": "server=earth.gimind.com;port=3306;user=palas;password=lapas;database=Palas_V5;Character Set=utf8;Convert Zero Datetime=True;",
"PalasToolModels": "server=earth.gimind.com;port=3306;user=palas;password=lapas;database=Palas_tools;Character Set=utf8",
"PalasV5Model": "server=earth.gimind.com;port=3306;user=palas;password=lapas;database=Palas_V5;Character Set=utf8;Convert Zero Datetime=True",
"QuantModels": "server=mech.gimind.com;port=3306;user=palas;password=lapas;database=quant;Character Set=utf8",
......
{
"runtimeTarget": {
"name": ".NETStandard,Version=v2.0/",
"signature": "ed51c211d6f6020630a69fb29a1cab07baff9f8f"
"signature": "fe8c4d72501c0f10eaecf2606548e63d94cf6533"
},
"compilationOptions": {},
"targets": {
......@@ -19,17 +19,6 @@
"GISportsModels.dll": {}
}
},
"Google.Protobuf/3.5.1": {
"dependencies": {
"NETStandard.Library": "2.0.3"
},
"runtime": {
"lib/netstandard1.0/Google.Protobuf.dll": {
"assemblyVersion": "3.5.1.0",
"fileVersion": "3.5.1.0"
}
}
},
"log4net/2.0.8": {
"dependencies": {
"System.AppContext": "4.1.0",
......@@ -49,7 +38,7 @@
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
"System.Runtime.Serialization.Formatters": "4.3.0",
"System.Text.RegularExpressions": "4.1.0",
......@@ -133,7 +122,7 @@
},
"Microsoft.Extensions.Caching.Abstractions/2.1.1": {
"dependencies": {
"Microsoft.Extensions.Primitives": "2.2.0"
"Microsoft.Extensions.Primitives": "2.1.1"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
......@@ -155,61 +144,61 @@
}
}
},
"Microsoft.Extensions.Configuration/2.2.0": {
"Microsoft.Extensions.Configuration/2.1.1": {
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "2.2.0"
"Microsoft.Extensions.Configuration.Abstractions": "2.1.1"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18315"
"assemblyVersion": "2.1.1.0",
"fileVersion": "2.1.1.18157"
}
}
},
"Microsoft.Extensions.Configuration.Abstractions/2.2.0": {
"Microsoft.Extensions.Configuration.Abstractions/2.1.1": {
"dependencies": {
"Microsoft.Extensions.Primitives": "2.2.0"
"Microsoft.Extensions.Primitives": "2.1.1"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18315"
"assemblyVersion": "2.1.1.0",
"fileVersion": "2.1.1.18157"
}
}
},
"Microsoft.Extensions.Configuration.Binder/2.2.0": {
"Microsoft.Extensions.Configuration.Binder/2.1.1": {
"dependencies": {
"Microsoft.Extensions.Configuration": "2.2.0"
"Microsoft.Extensions.Configuration": "2.1.1"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18315"
"assemblyVersion": "2.1.1.0",
"fileVersion": "2.1.1.18157"
}
}
},
"Microsoft.Extensions.Configuration.FileExtensions/2.2.0": {
"Microsoft.Extensions.Configuration.FileExtensions/2.1.1": {
"dependencies": {
"Microsoft.Extensions.Configuration": "2.2.0",
"Microsoft.Extensions.FileProviders.Physical": "2.2.0"
"Microsoft.Extensions.Configuration": "2.1.1",
"Microsoft.Extensions.FileProviders.Physical": "2.1.1"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18315"
"assemblyVersion": "2.1.1.0",
"fileVersion": "2.1.1.18157"
}
}
},
"Microsoft.Extensions.Configuration.Json/2.2.0": {
"Microsoft.Extensions.Configuration.Json/2.1.1": {
"dependencies": {
"Microsoft.Extensions.Configuration": "2.2.0",
"Microsoft.Extensions.Configuration.FileExtensions": "2.2.0",
"Microsoft.Extensions.Configuration": "2.1.1",
"Microsoft.Extensions.Configuration.FileExtensions": "2.1.1",
"Newtonsoft.Json": "11.0.2"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18315"
"assemblyVersion": "2.1.1.0",
"fileVersion": "2.1.1.18157"
}
}
},
......@@ -232,40 +221,40 @@
}
}
},
"Microsoft.Extensions.FileProviders.Abstractions/2.2.0": {
"Microsoft.Extensions.FileProviders.Abstractions/2.1.1": {
"dependencies": {
"Microsoft.Extensions.Primitives": "2.2.0"
"Microsoft.Extensions.Primitives": "2.1.1"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18315"
"assemblyVersion": "2.1.1.0",
"fileVersion": "2.1.1.18157"
}
}
},
"Microsoft.Extensions.FileProviders.Physical/2.2.0": {
"Microsoft.Extensions.FileProviders.Physical/2.1.1": {
"dependencies": {
"Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
"Microsoft.Extensions.FileSystemGlobbing": "2.2.0"
"Microsoft.Extensions.FileProviders.Abstractions": "2.1.1",
"Microsoft.Extensions.FileSystemGlobbing": "2.1.1"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18315"
"assemblyVersion": "2.1.1.0",
"fileVersion": "2.1.1.18157"
}
}
},
"Microsoft.Extensions.FileSystemGlobbing/2.2.0": {
"Microsoft.Extensions.FileSystemGlobbing/2.1.1": {
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18315"
"assemblyVersion": "2.1.1.0",
"fileVersion": "2.1.1.18157"
}
}
},
"Microsoft.Extensions.Logging/2.1.1": {
"dependencies": {
"Microsoft.Extensions.Configuration.Binder": "2.2.0",
"Microsoft.Extensions.Configuration.Binder": "2.1.1",
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
"Microsoft.Extensions.Logging.Abstractions": "2.1.1",
"Microsoft.Extensions.Options": "2.1.1"
......@@ -288,7 +277,7 @@
"Microsoft.Extensions.Options/2.1.1": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
"Microsoft.Extensions.Primitives": "2.2.0"
"Microsoft.Extensions.Primitives": "2.1.1"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Options.dll": {
......@@ -297,15 +286,15 @@
}
}
},
"Microsoft.Extensions.Primitives/2.2.0": {
"Microsoft.Extensions.Primitives/2.1.1": {
"dependencies": {
"System.Memory": "4.5.1",
"System.Runtime.CompilerServices.Unsafe": "4.5.1"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18315"
"assemblyVersion": "2.1.1.0",
"fileVersion": "2.1.1.18157"
}
}
},
......@@ -326,21 +315,20 @@
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0"
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0"
}
},
"MySql.Data/8.0.13": {
"MySql.Data/6.10.7": {
"dependencies": {
"Google.Protobuf": "3.5.1",
"System.Configuration.ConfigurationManager": "4.4.1",
"System.Security.Permissions": "4.4.1",
"System.Text.Encoding.CodePages": "4.4.0"
"System.Configuration.ConfigurationManager": "4.4.0",
"System.Security.Permissions": "4.4.0",
"System.Text.Encoding.CodePages": "4.0.1"
},
"runtime": {
"lib/netstandard2.0/MySql.Data.dll": {
"assemblyVersion": "8.0.13.0",
"fileVersion": "8.0.13.0"
"assemblyVersion": "6.10.7.0",
"fileVersion": "6.10.7.0"
}
}
},
......@@ -512,14 +500,14 @@
}
}
},
"System.Configuration.ConfigurationManager/4.4.1": {
"System.Configuration.ConfigurationManager/4.4.0": {
"dependencies": {
"System.Security.Cryptography.ProtectedData": "4.4.0"
},
"runtime": {
"lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "4.6.25921.2"
"fileVersion": "4.6.25519.3"
}
}
},
......@@ -561,8 +549,8 @@
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.3.0",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
......@@ -630,7 +618,7 @@
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.3.0"
"System.Runtime.InteropServices": "4.1.0"
}
},
"System.Interactive.Async/3.1.1": {
......@@ -660,7 +648,7 @@
"System.IO": "4.3.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.Handles": "4.0.1",
"System.Text.Encoding": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
......@@ -686,8 +674,8 @@
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.0.11",
"System.Threading.Overlapped": "4.0.1",
......@@ -784,8 +772,8 @@
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.OpenSsl": "4.0.0",
......@@ -809,8 +797,8 @@
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Principal.Windows": "4.4.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.3.0",
......@@ -822,7 +810,7 @@
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0"
"System.Runtime.Handles": "4.0.1"
}
},
"System.Net.Requests/4.0.11": {
......@@ -961,7 +949,7 @@
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.3.0",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11"
......@@ -1022,21 +1010,21 @@
"System.Runtime": "4.3.0"
}
},
"System.Runtime.Handles/4.3.0": {
"System.Runtime.Handles/4.0.1": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Runtime.InteropServices/4.3.0": {
"System.Runtime.InteropServices/4.1.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Reflection": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0"
"System.Runtime.Handles": "4.0.1"
}
},
"System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
......@@ -1045,7 +1033,7 @@
"System.Reflection": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"runtime.native.System": "4.0.0"
}
......@@ -1110,8 +1098,8 @@
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
......@@ -1126,8 +1114,8 @@
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
......@@ -1142,8 +1130,8 @@
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
......@@ -1160,8 +1148,8 @@
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.3.0",
"runtime.native.System.Security.Cryptography": "4.0.0"
......@@ -1174,8 +1162,8 @@
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
......@@ -1228,8 +1216,8 @@
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Cng": "4.2.0",
......@@ -1244,14 +1232,14 @@
"runtime.native.System.Security.Cryptography": "4.0.0"
}
},
"System.Security.Permissions/4.4.1": {
"System.Security.Permissions/4.4.0": {
"dependencies": {
"System.Security.AccessControl": "4.4.0"
},
"runtime": {
"lib/netstandard2.0/System.Security.Permissions.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "4.6.25921.2"
"fileVersion": "4.6.25519.3"
}
}
},
......@@ -1270,12 +1258,20 @@
"System.Runtime": "4.3.0"
}
},
"System.Text.Encoding.CodePages/4.4.0": {
"runtime": {
"lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
"assemblyVersion": "4.1.0.0",
"fileVersion": "4.6.25519.3"
}
"System.Text.Encoding.CodePages/4.0.1": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"System.Collections": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Reflection": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.0.11"
}
},
"System.Text.Encoding.Extensions/4.0.11": {
......@@ -1319,7 +1315,7 @@
"Microsoft.NETCore.Platforms": "1.1.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0"
"System.Runtime.Handles": "4.0.1"
}
},
"System.Threading.Tasks/4.3.0": {
......@@ -1356,7 +1352,7 @@
"System.Threading.ThreadPool/4.0.10": {
"dependencies": {
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0"
"System.Runtime.Handles": "4.0.1"
},
"runtime": {
"lib/netstandard1.3/System.Threading.ThreadPool.dll": {
......@@ -1384,7 +1380,7 @@
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.3.0",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
......@@ -1421,9 +1417,9 @@
"EFCoreInitConfig/1.0.0": {
"dependencies": {
"GILogger": "1.0.0",
"Microsoft.Extensions.Configuration": "2.2.0",
"Microsoft.Extensions.Configuration.Binder": "2.2.0",
"Microsoft.Extensions.Configuration.Json": "2.2.0",
"Microsoft.Extensions.Configuration": "2.1.1",
"Microsoft.Extensions.Configuration.Binder": "2.1.1",
"Microsoft.Extensions.Configuration.Json": "2.1.1",
"System.ValueTuple": "4.5.0"
},
"runtime": {
......@@ -1432,8 +1428,7 @@
},
"GILogger/1.0.0": {
"dependencies": {
"MySql.Data": "8.0.13",
"System.Runtime.InteropServices": "4.3.0",
"MySql.Data": "6.10.7",
"log4net": "2.0.8"
},
"runtime": {
......@@ -1448,13 +1443,6 @@
"serviceable": false,
"sha512": ""
},
"Google.Protobuf/3.5.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-j/gbpRZ68sgvdi/vXI39Cj/jWG4d1dtDqfWbkjC9dErNWu/dFcIlq1LIgLscea+llZ6nzm06wz/JGziOegAL7Q==",
"path": "google.protobuf/3.5.1",
"hashPath": "google.protobuf.3.5.1.nupkg.sha512"
},
"log4net/2.0.8": {
"type": "package",
"serviceable": true,
......@@ -1525,40 +1513,40 @@
"path": "microsoft.extensions.caching.memory/2.1.1",
"hashPath": "microsoft.extensions.caching.memory.2.1.1.nupkg.sha512"
},
"Microsoft.Extensions.Configuration/2.2.0": {
"Microsoft.Extensions.Configuration/2.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-0MtJgCZ5tIw7LoxOlXlifwVTwfMd4YdMJ9+DVZyX/fqqXO9zseZ8hH2WxbJzDbBDp45nA8rwHlL4JH/6Z98B4w==",
"path": "microsoft.extensions.configuration/2.2.0",
"hashPath": "microsoft.extensions.configuration.2.2.0.nupkg.sha512"
"sha512": "sha512-LjVKO6P2y52c5ZhTLX/w8zc5H4Y3J/LJsgqTBj49TtFq/hAtVNue/WA0F6/7GMY90xhD7K0MDZ4qpOeWXbLvzg==",
"path": "microsoft.extensions.configuration/2.1.1",
"hashPath": "microsoft.extensions.configuration.2.1.1.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Abstractions/2.2.0": {
"Microsoft.Extensions.Configuration.Abstractions/2.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-M6u4cMWXxPtqyJJ03oezyqTORmSgTPpa2gZRKkEGCXXHhyGnM1cHjPTzq5sevYS1VJEMb2TZj60mAc+hDoPPcQ==",
"path": "microsoft.extensions.configuration.abstractions/2.2.0",
"hashPath": "microsoft.extensions.configuration.abstractions.2.2.0.nupkg.sha512"
"sha512": "sha512-VfuZJNa0WUshZ/+8BFZAhwFKiKuu/qOUCFntfdLpHj7vcRnsGHqd3G2Hse78DM+pgozczGM63lGPRLmy+uhUOA==",
"path": "microsoft.extensions.configuration.abstractions/2.1.1",
"hashPath": "microsoft.extensions.configuration.abstractions.2.1.1.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Binder/2.2.0": {
"Microsoft.Extensions.Configuration.Binder/2.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-6ANwTuQZqIIt0guKAdS9Mn6c+PfhOBpqRm7FslUJqtG000uo0Cd3pAndk92RQq0ygDFRub/ftiRy8DukWXqNzQ==",
"path": "microsoft.extensions.configuration.binder/2.2.0",
"hashPath": "microsoft.extensions.configuration.binder.2.2.0.nupkg.sha512"
"sha512": "sha512-fcLCTS03poWE4v9tSNBr3pWn0QwGgAn1vzqHXlXgvqZeOc7LvQNzaWcKRQZTdEc3+YhQKwMsOtm3VKSA2aWQ8w==",
"path": "microsoft.extensions.configuration.binder/2.1.1",
"hashPath": "microsoft.extensions.configuration.binder.2.1.1.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.FileExtensions/2.2.0": {
"Microsoft.Extensions.Configuration.FileExtensions/2.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-BnkmTopJ7m+p0/EBshdJmoWroUvMlu+oA+bDvzEWh3WA9rOYdnTZueQ7Ap1oSfUnHnPBnuWae/ED8hHlM/sQxA==",
"path": "microsoft.extensions.configuration.fileextensions/2.2.0",
"hashPath": "microsoft.extensions.configuration.fileextensions.2.2.0.nupkg.sha512"
"sha512": "sha512-CDk5CwG0YzlRgvl65J0iK6ahrX12yMRrEat3yVTXjWC+GN9Jg9zHZu2IE4cQIPAMA/IiAI5KjgL08fhP3fPCkw==",
"path": "microsoft.extensions.configuration.fileextensions/2.1.1",
"hashPath": "microsoft.extensions.configuration.fileextensions.2.1.1.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Json/2.2.0": {
"Microsoft.Extensions.Configuration.Json/2.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-CqqFzpFuW9rOWOHI9c3JrGrOOogfLRrGTWVU2AIFkxXRQ/bAg5lL3WabkVEywmTRo58AI3p6sT0ACNy9s279VA==",
"path": "microsoft.extensions.configuration.json/2.2.0",
"hashPath": "microsoft.extensions.configuration.json.2.2.0.nupkg.sha512"
"sha512": "sha512-IFpONpvdhVEE3S3F4fTYkpT/GyIHtumy2m0HniQanJ80Pj/pUF3Z4wjrHEp1G78rPD+WTo5fRlhdJfuU1Tv2GQ==",
"path": "microsoft.extensions.configuration.json/2.1.1",
"hashPath": "microsoft.extensions.configuration.json.2.1.1.nupkg.sha512"
},
"Microsoft.Extensions.DependencyInjection/2.1.1": {
"type": "package",
......@@ -1574,26 +1562,26 @@
"path": "microsoft.extensions.dependencyinjection.abstractions/2.1.1",
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.2.1.1.nupkg.sha512"
},
"Microsoft.Extensions.FileProviders.Abstractions/2.2.0": {
"Microsoft.Extensions.FileProviders.Abstractions/2.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-33vTyijzAVEfbuNFts68R7bW02cJMiw21MFgMBk+XL+thcbv335PVD1+DdMSvN6e5DeAR4OmPSRsKIr86Yk4qg==",
"path": "microsoft.extensions.fileproviders.abstractions/2.2.0",
"hashPath": "microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512"
"sha512": "sha512-UEQB5/QPuLYaCvScZQ9llhcks5xyEUKh41D615FoehRAF9UgGVmXHcCSOH8idHHLRoKm+OJJjEy1oywvuaL33w==",
"path": "microsoft.extensions.fileproviders.abstractions/2.1.1",
"hashPath": "microsoft.extensions.fileproviders.abstractions.2.1.1.nupkg.sha512"
},
"Microsoft.Extensions.FileProviders.Physical/2.2.0": {
"Microsoft.Extensions.FileProviders.Physical/2.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Qt6sUa56/XbLxYshrCzwJYhHO9TkVa9Adch1qVqr7PGuLCxRs3K7nGMv3I6msUvAJqiJE33Oexz6KrT4hcUHgA==",
"path": "microsoft.extensions.fileproviders.physical/2.2.0",
"hashPath": "microsoft.extensions.fileproviders.physical.2.2.0.nupkg.sha512"
"sha512": "sha512-kVCvLm1ePchUgRrQZrno07Mn6knDAzR7vl6eRaI/fem0u6ODg+RTwOYLs4XL39Ttuu+BzEwqzHu3DtDgXT8+vQ==",
"path": "microsoft.extensions.fileproviders.physical/2.1.1",
"hashPath": "microsoft.extensions.fileproviders.physical.2.1.1.nupkg.sha512"
},
"Microsoft.Extensions.FileSystemGlobbing/2.2.0": {
"Microsoft.Extensions.FileSystemGlobbing/2.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-WGASE48sldx5PHrmxpmW0qFJ0M0mZXhF9IgdBDTSNmnys7Qfw7xTuHs/nmbA1Wo8Y8XFI7K2cJKf9Ql/nBK4Rw==",
"path": "microsoft.extensions.filesystemglobbing/2.2.0",
"hashPath": "microsoft.extensions.filesystemglobbing.2.2.0.nupkg.sha512"
"sha512": "sha512-4QDzyCN8cJnThY6mK9SnzovyCZ8KCG9jmC9KqHfFGtazJvmNZP1gcyBkPmqMjP0qwbmEUUyqyA9LLn3FrYXTGw==",
"path": "microsoft.extensions.filesystemglobbing/2.1.1",
"hashPath": "microsoft.extensions.filesystemglobbing.2.1.1.nupkg.sha512"
},
"Microsoft.Extensions.Logging/2.1.1": {
"type": "package",
......@@ -1616,17 +1604,17 @@
"path": "microsoft.extensions.options/2.1.1",
"hashPath": "microsoft.extensions.options.2.1.1.nupkg.sha512"
},
"Microsoft.Extensions.Primitives/2.2.0": {
"Microsoft.Extensions.Primitives/2.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-vpH+o7f8obVx65PiEtBXxTwL5RosK60fNIMy/y8WGE4/r4IvAqQGukOzMhxsp//Accvd7kmukyQTVkqVYdaDyA==",
"path": "microsoft.extensions.primitives/2.2.0",
"hashPath": "microsoft.extensions.primitives.2.2.0.nupkg.sha512"
"sha512": "sha512-scJ1GZNIxMmjpENh0UZ8XCQ6vzr/LzeF9WvEA51Ix2OQGAs9WPgPu8ABVUdvpKPLuor/t05gm6menJK3PwqOXg==",
"path": "microsoft.extensions.primitives/2.1.1",
"hashPath": "microsoft.extensions.primitives.2.1.1.nupkg.sha512"
},
"Microsoft.NETCore.Platforms/1.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-bLpT1f/SFlO1CzqXG12KnJzpZs6lv24uX2Rzi4Fmm0noJpNlnWRVryuO3yK18Ca04t/YHcO1e1Z0WDfjseqNzw==",
"sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
"path": "microsoft.netcore.platforms/1.1.0",
"hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
},
......@@ -1651,12 +1639,12 @@
"path": "microsoft.win32.registry/4.0.0",
"hashPath": "microsoft.win32.registry.4.0.0.nupkg.sha512"
},
"MySql.Data/8.0.13": {
"MySql.Data/6.10.7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-mXfjg2pOdzpyd4wkXZPKYcNluzV68ggAO/LPcT7iuzU5kDS7livUDR8IsKkarEhBmRxBy0XmBnUOkEWJvfOW9Q==",
"path": "mysql.data/8.0.13",
"hashPath": "mysql.data.8.0.13.nupkg.sha512"
"sha512": "sha512-2fptledJVo4GaF/DOpWgumn+pteZ2eNlaZTE8I6CUvK7Zz5UGPWTg3v9l4Ymp9ewivodYI5VDn6ucVyKL/e++A==",
"path": "mysql.data/6.10.7",
"hashPath": "mysql.data.6.10.7.nupkg.sha512"
},
"MySqlConnector/0.44.1": {
"type": "package",
......@@ -1770,12 +1758,12 @@
"path": "system.componentmodel.annotations/4.5.0",
"hashPath": "system.componentmodel.annotations.4.5.0.nupkg.sha512"
},
"System.Configuration.ConfigurationManager/4.4.1": {
"System.Configuration.ConfigurationManager/4.4.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-LoSjM/kLDpyLyoGsmwS5oVMRzHf/0XHkRpr3QZu/HuAv6Sfk919usTMLqD9N9VK3S4Q2+bd3tKJ0ko4MYFfq4Q==",
"path": "system.configuration.configurationmanager/4.4.1",
"hashPath": "system.configuration.configurationmanager.4.4.1.nupkg.sha512"
"sha512": "sha512-RLYB3YOmdz9dE3zMhBFGv3GF74upGjH0nF0G9lFFRLNLsCEMIpiuQsMGv2qE0qdp1JdheVNO8RIRpUKdokiK+g==",
"path": "system.configuration.configurationmanager/4.4.0",
"hashPath": "system.configuration.configurationmanager.4.4.0.nupkg.sha512"
},
"System.Console/4.0.0": {
"type": "package",
......@@ -2050,19 +2038,19 @@
"path": "system.runtime.extensions/4.1.0",
"hashPath": "system.runtime.extensions.4.1.0.nupkg.sha512"
},
"System.Runtime.Handles/4.3.0": {
"System.Runtime.Handles/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
"path": "system.runtime.handles/4.3.0",
"hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
"sha512": "sha512-nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==",
"path": "system.runtime.handles/4.0.1",
"hashPath": "system.runtime.handles.4.0.1.nupkg.sha512"
},
"System.Runtime.InteropServices/4.3.0": {
"System.Runtime.InteropServices/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
"path": "system.runtime.interopservices/4.3.0",
"hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
"sha512": "sha512-16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==",
"path": "system.runtime.interopservices/4.1.0",
"hashPath": "system.runtime.interopservices.4.1.0.nupkg.sha512"
},
"System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
"type": "package",
......@@ -2155,12 +2143,12 @@
"path": "system.security.cryptography.x509certificates/4.1.0",
"hashPath": "system.security.cryptography.x509certificates.4.1.0.nupkg.sha512"
},
"System.Security.Permissions/4.4.1": {
"System.Security.Permissions/4.4.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-tXBMO8OJEuw9c4KjLj4fwxJusely90azF24Uktz/evgvowAtU963HYl+G93gaRZr6pvYvsSPrjkN4+2pdVUbgw==",
"path": "system.security.permissions/4.4.1",
"hashPath": "system.security.permissions.4.4.1.nupkg.sha512"
"sha512": "sha512-eeIuiiT15KEq9PKZbGagsCBmb7+z2Zphv3LcrINr2lHHvAGGsdWyq9YztLU2V77yoiqchH61iVH9//TvMY9+/A==",
"path": "system.security.permissions/4.4.0",
"hashPath": "system.security.permissions.4.4.0.nupkg.sha512"
},
"System.Security.Principal.Windows/4.4.0": {
"type": "package",
......@@ -2176,12 +2164,12 @@
"path": "system.text.encoding/4.3.0",
"hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
},
"System.Text.Encoding.CodePages/4.4.0": {
"System.Text.Encoding.CodePages/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-FpAgMC+BX6OOCiRebYqHP3r3aYU7o0lopPOo4zKyGc5LWXFEYRUaKtoXXvAJ3sP+IDOK/KBxZaiVAdi+QdZ0TA==",
"path": "system.text.encoding.codepages/4.4.0",
"hashPath": "system.text.encoding.codepages.4.4.0.nupkg.sha512"
"sha512": "sha512-h4z6rrA/hxWf4655D18IIZ0eaLRa3tQC/j+e26W+VinIHY0l07iEXaAvO0YSYq3MvCjMYy8Zs5AdC1sxNQOB7Q==",
"path": "system.text.encoding.codepages/4.0.1",
"hashPath": "system.text.encoding.codepages.4.0.1.nupkg.sha512"
},
"System.Text.Encoding.Extensions/4.0.11": {
"type": "package",
......
......@@ -10,7 +10,7 @@
"DataHistoryModel": "server=castle.gimind.com;port=3306;user=palas;password=lapas;database=debit_quote;Character Set=utf8",
"GIClientModel": "server=earth.gimind.com;port=3306;user=palas;password=lapas;database=gi_client_db",
"iTraderModels": "server=mech.gimind.com;port=3306;user=palas;password=lapas;database=iTrader;Character Set=utf8",
"PalasEntityModel": "server=earth.gimind.com;port=3306;user=palas;password=lapas;database=Palas_V5;Character Set=utf8",
"PalasEntityModel": "server=earth.gimind.com;port=3306;user=palas;password=lapas;database=Palas_V5;Character Set=utf8;Convert Zero Datetime=True;",
"PalasToolModels": "server=earth.gimind.com;port=3306;user=palas;password=lapas;database=Palas_tools;Character Set=utf8",
"PalasV5Model": "server=earth.gimind.com;port=3306;user=palas;password=lapas;database=Palas_V5;Character Set=utf8;Convert Zero Datetime=True",
"QuantModels": "server=mech.gimind.com;port=3306;user=palas;password=lapas;database=quant;Character Set=utf8",
......
2e41c132fb42461739007e685dc7d9f4d172a249
e7fe85f558a5b3d9e39924b5b0c1eb43dd81846f
08ad95eab05dc161443b61c80eee0573add283ea
8b9f9a2fde07d017209b9cc3fef4cad22d363281
{
"version": 1,
"dgSpecHash": "ovb2V2YDxPhB+HP5K3Jhj+Io+CMuomc1nFpgLjgd9jN/YBv2mpSSqFV4XJFcr2XIklf+GoOFBbYR+w9pDBGzlg==",
"dgSpecHash": "3qOagf7Mfw5w69TCL2IZwehg2xOn9t+ihm3MP8h5vD0aLGnyITBUVJ33RDH9yY4+H+Bb47j0xfiA9amZWmzbyA==",
"success": true
}
\ No newline at end of file
......@@ -8,6 +8,6 @@
<Import Project="$(NuGetPackageRoot)microsoft.netcore.app\2.0.0\build\netcoreapp2.0\Microsoft.NETCore.App.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.netcore.app\2.0.0\build\netcoreapp2.0\Microsoft.NETCore.App.targets')" />
</ImportGroup>
<ImportGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' AND '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets" Condition="Exists('C:\Program Files\dotnet\sdk\NuGetFallbackFolder\netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets')" />
<Import Project="$(NuGetPackageRoot)netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets" Condition="Exists('$(NuGetPackageRoot)netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets')" />
</ImportGroup>
</Project>
\ No newline at end of file
......@@ -2,18 +2,6 @@
"version": 3,
"targets": {
".NETCoreApp,Version=v2.0": {
"Google.Protobuf/3.5.1": {
"type": "package",
"dependencies": {
"NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Google.Protobuf.dll": {}
},
"runtime": {
"lib/netstandard1.0/Google.Protobuf.dll": {}
}
},
"log4net/2.0.8": {
"type": "package",
"dependencies": {
......@@ -159,10 +147,10 @@
"lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
}
},
"Microsoft.Extensions.Configuration/2.2.0": {
"Microsoft.Extensions.Configuration/2.1.1": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "2.2.0"
"Microsoft.Extensions.Configuration.Abstractions": "2.1.1"
},
"compile": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
......@@ -171,10 +159,10 @@
"lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
}
},
"Microsoft.Extensions.Configuration.Abstractions/2.2.0": {
"Microsoft.Extensions.Configuration.Abstractions/2.1.1": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.Primitives": "2.2.0"
"Microsoft.Extensions.Primitives": "2.1.1"
},
"compile": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
......@@ -183,10 +171,10 @@
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
}
},
"Microsoft.Extensions.Configuration.Binder/2.2.0": {
"Microsoft.Extensions.Configuration.Binder/2.1.1": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.Configuration": "2.2.0"
"Microsoft.Extensions.Configuration": "2.1.1"
},
"compile": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
......@@ -195,11 +183,11 @@
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
}
},
"Microsoft.Extensions.Configuration.FileExtensions/2.2.0": {
"Microsoft.Extensions.Configuration.FileExtensions/2.1.1": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.Configuration": "2.2.0",
"Microsoft.Extensions.FileProviders.Physical": "2.2.0"
"Microsoft.Extensions.Configuration": "2.1.1",
"Microsoft.Extensions.FileProviders.Physical": "2.1.1"
},
"compile": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
......@@ -208,11 +196,11 @@
"lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
}
},
"Microsoft.Extensions.Configuration.Json/2.2.0": {
"Microsoft.Extensions.Configuration.Json/2.1.1": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.Configuration": "2.2.0",
"Microsoft.Extensions.Configuration.FileExtensions": "2.2.0",
"Microsoft.Extensions.Configuration": "2.1.1",
"Microsoft.Extensions.Configuration.FileExtensions": "2.1.1",
"Newtonsoft.Json": "11.0.2"
},
"compile": {
......@@ -243,10 +231,10 @@
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
}
},
"Microsoft.Extensions.FileProviders.Abstractions/2.2.0": {
"Microsoft.Extensions.FileProviders.Abstractions/2.1.1": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.Primitives": "2.2.0"
"Microsoft.Extensions.Primitives": "2.1.1"
},
"compile": {
"lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
......@@ -255,11 +243,11 @@
"lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
}
},
"Microsoft.Extensions.FileProviders.Physical/2.2.0": {
"Microsoft.Extensions.FileProviders.Physical/2.1.1": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
"Microsoft.Extensions.FileSystemGlobbing": "2.2.0"
"Microsoft.Extensions.FileProviders.Abstractions": "2.1.1",
"Microsoft.Extensions.FileSystemGlobbing": "2.1.1"
},
"compile": {
"lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
......@@ -268,7 +256,7 @@
"lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
}
},
"Microsoft.Extensions.FileSystemGlobbing/2.2.0": {
"Microsoft.Extensions.FileSystemGlobbing/2.1.1": {
"type": "package",
"compile": {
"lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
......@@ -314,7 +302,7 @@
"lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
}
},
"Microsoft.Extensions.Primitives/2.2.0": {
"Microsoft.Extensions.Primitives/2.1.1": {
"type": "package",
"dependencies": {
"System.Memory": "4.5.1",
......@@ -553,13 +541,12 @@
}
}
},
"MySql.Data/8.0.13": {
"MySql.Data/6.10.7": {
"type": "package",
"dependencies": {
"Google.Protobuf": "3.5.1",
"System.Configuration.ConfigurationManager": "4.4.1",
"System.Security.Permissions": "4.4.1",
"System.Text.Encoding.CodePages": "4.4.0"
"System.Configuration.ConfigurationManager": "4.4.0",
"System.Security.Permissions": "4.4.0",
"System.Text.Encoding.CodePages": "4.0.1"
},
"compile": {
"lib/netcoreapp2.0/MySql.Data.dll": {}
......@@ -782,7 +769,7 @@
"lib/netcoreapp2.0/_._": {}
}
},
"System.Configuration.ConfigurationManager/4.4.1": {
"System.Configuration.ConfigurationManager/4.4.0": {
"type": "package",
"dependencies": {
"System.Security.Cryptography.ProtectedData": "4.4.0"
......@@ -1465,29 +1452,29 @@
"ref/netstandard1.5/System.Runtime.Extensions.dll": {}
}
},
"System.Runtime.Handles/4.3.0": {
"System.Runtime.Handles/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Runtime.Handles.dll": {}
}
},
"System.Runtime.InteropServices/4.3.0": {
"System.Runtime.InteropServices/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Reflection": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0"
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1"
},
"compile": {
"ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
"ref/netstandard1.5/System.Runtime.InteropServices.dll": {}
}
},
"System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
......@@ -1809,7 +1796,7 @@
}
}
},
"System.Security.Permissions/4.4.1": {
"System.Security.Permissions/4.4.0": {
"type": "package",
"dependencies": {
"System.Security.AccessControl": "4.4.0"
......@@ -1854,19 +1841,31 @@
"ref/netstandard1.3/System.Text.Encoding.dll": {}
}
},
"System.Text.Encoding.CodePages/4.4.0": {
"System.Text.Encoding.CodePages/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0"
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
},
"runtime": {
"lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
"ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {}
},
"runtimeTargets": {
"runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
"runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {
"assetType": "runtime",
"rid": "win"
}
......@@ -2058,9 +2057,9 @@
"framework": ".NETCoreApp,Version=v2.0",
"dependencies": {
"GILogger": "1.0.0",
"Microsoft.Extensions.Configuration": "2.2.0",
"Microsoft.Extensions.Configuration.Binder": "2.2.0",
"Microsoft.Extensions.Configuration.Json": "2.2.0",
"Microsoft.Extensions.Configuration": "2.1.1",
"Microsoft.Extensions.Configuration.Binder": "2.1.1",
"Microsoft.Extensions.Configuration.Json": "2.1.1",
"System.ValueTuple": "4.5.0"
},
"compile": {
......@@ -2074,8 +2073,7 @@
"type": "project",
"framework": ".NETStandard,Version=v2.0",
"dependencies": {
"MySql.Data": "8.0.13",
"System.Runtime.InteropServices": "4.3.0",
"MySql.Data": "6.10.7",
"log4net": "2.0.8"
},
"compile": {
......@@ -2087,18 +2085,6 @@
}
},
".NETStandard,Version=v2.0": {
"Google.Protobuf/3.5.1": {
"type": "package",
"dependencies": {
"NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Google.Protobuf.dll": {}
},
"runtime": {
"lib/netstandard1.0/Google.Protobuf.dll": {}
}
},
"log4net/2.0.8": {
"type": "package",
"dependencies": {
......@@ -2241,10 +2227,10 @@
"lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
}
},
"Microsoft.Extensions.Configuration/2.2.0": {
"Microsoft.Extensions.Configuration/2.1.1": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "2.2.0"
"Microsoft.Extensions.Configuration.Abstractions": "2.1.1"
},
"compile": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
......@@ -2253,10 +2239,10 @@
"lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
}
},
"Microsoft.Extensions.Configuration.Abstractions/2.2.0": {
"Microsoft.Extensions.Configuration.Abstractions/2.1.1": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.Primitives": "2.2.0"
"Microsoft.Extensions.Primitives": "2.1.1"
},
"compile": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
......@@ -2265,10 +2251,10 @@
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
}
},
"Microsoft.Extensions.Configuration.Binder/2.2.0": {
"Microsoft.Extensions.Configuration.Binder/2.1.1": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.Configuration": "2.2.0"
"Microsoft.Extensions.Configuration": "2.1.1"
},
"compile": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
......@@ -2277,11 +2263,11 @@
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
}
},
"Microsoft.Extensions.Configuration.FileExtensions/2.2.0": {
"Microsoft.Extensions.Configuration.FileExtensions/2.1.1": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.Configuration": "2.2.0",
"Microsoft.Extensions.FileProviders.Physical": "2.2.0"
"Microsoft.Extensions.Configuration": "2.1.1",
"Microsoft.Extensions.FileProviders.Physical": "2.1.1"
},
"compile": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
......@@ -2290,11 +2276,11 @@
"lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
}
},
"Microsoft.Extensions.Configuration.Json/2.2.0": {
"Microsoft.Extensions.Configuration.Json/2.1.1": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.Configuration": "2.2.0",
"Microsoft.Extensions.Configuration.FileExtensions": "2.2.0",
"Microsoft.Extensions.Configuration": "2.1.1",
"Microsoft.Extensions.Configuration.FileExtensions": "2.1.1",
"Newtonsoft.Json": "11.0.2"
},
"compile": {
......@@ -2325,10 +2311,10 @@
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
}
},
"Microsoft.Extensions.FileProviders.Abstractions/2.2.0": {
"Microsoft.Extensions.FileProviders.Abstractions/2.1.1": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.Primitives": "2.2.0"
"Microsoft.Extensions.Primitives": "2.1.1"
},
"compile": {
"lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
......@@ -2337,11 +2323,11 @@
"lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
}
},
"Microsoft.Extensions.FileProviders.Physical/2.2.0": {
"Microsoft.Extensions.FileProviders.Physical/2.1.1": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
"Microsoft.Extensions.FileSystemGlobbing": "2.2.0"
"Microsoft.Extensions.FileProviders.Abstractions": "2.1.1",
"Microsoft.Extensions.FileSystemGlobbing": "2.1.1"
},
"compile": {
"lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
......@@ -2350,7 +2336,7 @@
"lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
}
},
"Microsoft.Extensions.FileSystemGlobbing/2.2.0": {
"Microsoft.Extensions.FileSystemGlobbing/2.1.1": {
"type": "package",
"compile": {
"lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
......@@ -2396,7 +2382,7 @@
"lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
}
},
"Microsoft.Extensions.Primitives/2.2.0": {
"Microsoft.Extensions.Primitives/2.1.1": {
"type": "package",
"dependencies": {
"System.Memory": "4.5.1",
......@@ -2464,13 +2450,12 @@
}
}
},
"MySql.Data/8.0.13": {
"MySql.Data/6.10.7": {
"type": "package",
"dependencies": {
"Google.Protobuf": "3.5.1",
"System.Configuration.ConfigurationManager": "4.4.1",
"System.Security.Permissions": "4.4.1",
"System.Text.Encoding.CodePages": "4.4.0"
"System.Configuration.ConfigurationManager": "4.4.0",
"System.Security.Permissions": "4.4.0",
"System.Text.Encoding.CodePages": "4.0.1"
},
"compile": {
"lib/netstandard2.0/MySql.Data.dll": {}
......@@ -2693,7 +2678,7 @@
"lib/netstandard2.0/System.ComponentModel.Annotations.dll": {}
}
},
"System.Configuration.ConfigurationManager/4.4.1": {
"System.Configuration.ConfigurationManager/4.4.0": {
"type": "package",
"dependencies": {
"System.Security.Cryptography.ProtectedData": "4.4.0"
......@@ -3387,26 +3372,26 @@
"ref/netstandard1.5/System.Runtime.Extensions.dll": {}
}
},
"System.Runtime.Handles/4.3.0": {
"System.Runtime.Handles/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Runtime.Handles.dll": {}
}
},
"System.Runtime.InteropServices/4.3.0": {
"System.Runtime.InteropServices/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Reflection": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0"
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1"
},
"compile": {
"ref/netstandard1.5/System.Runtime.InteropServices.dll": {}
......@@ -3726,7 +3711,7 @@
}
}
},
"System.Security.Permissions/4.4.1": {
"System.Security.Permissions/4.4.0": {
"type": "package",
"dependencies": {
"System.Security.AccessControl": "4.4.0"
......@@ -3764,16 +3749,31 @@
"ref/netstandard1.3/System.Text.Encoding.dll": {}
}
},
"System.Text.Encoding.CodePages/4.4.0": {
"System.Text.Encoding.CodePages/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"runtime": {
"lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
"compile": {
"ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {}
},
"runtimeTargets": {
"runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
"runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {
"assetType": "runtime",
"rid": "win"
}
......@@ -3965,9 +3965,9 @@
"framework": ".NETStandard,Version=v2.0",
"dependencies": {
"GILogger": "1.0.0",
"Microsoft.Extensions.Configuration": "2.2.0",
"Microsoft.Extensions.Configuration.Binder": "2.2.0",
"Microsoft.Extensions.Configuration.Json": "2.2.0",
"Microsoft.Extensions.Configuration": "2.1.1",
"Microsoft.Extensions.Configuration.Binder": "2.1.1",
"Microsoft.Extensions.Configuration.Json": "2.1.1",
"System.ValueTuple": "4.5.0"
},
"compile": {
......@@ -3981,8 +3981,7 @@
"type": "project",
"framework": ".NETStandard,Version=v2.0",
"dependencies": {
"MySql.Data": "8.0.13",
"System.Runtime.InteropServices": "4.3.0",
"MySql.Data": "6.10.7",
"log4net": "2.0.8"
},
"compile": {
......@@ -3995,21 +3994,6 @@
}
},
"libraries": {
"Google.Protobuf/3.5.1": {
"sha512": "j/gbpRZ68sgvdi/vXI39Cj/jWG4d1dtDqfWbkjC9dErNWu/dFcIlq1LIgLscea+llZ6nzm06wz/JGziOegAL7Q==",
"type": "package",
"path": "google.protobuf/3.5.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"google.protobuf.3.5.1.nupkg.sha512",
"google.protobuf.nuspec",
"lib/net45/Google.Protobuf.dll",
"lib/net45/Google.Protobuf.xml",
"lib/netstandard1.0/Google.Protobuf.dll",
"lib/netstandard1.0/Google.Protobuf.xml"
]
},
"log4net/2.0.8": {
"sha512": "dwvu/YELc2nF5gjAnJMXJToYXVdK8Ma0BfLTEugMTM6l8kFysL9Np5LnwhUV6EKTkbRmVTa0/X1/8oSICcoHHw==",
"type": "package",
......@@ -4220,63 +4204,68 @@
"microsoft.extensions.caching.memory.nuspec"
]
},
"Microsoft.Extensions.Configuration/2.2.0": {
"sha512": "0MtJgCZ5tIw7LoxOlXlifwVTwfMd4YdMJ9+DVZyX/fqqXO9zseZ8hH2WxbJzDbBDp45nA8rwHlL4JH/6Z98B4w==",
"Microsoft.Extensions.Configuration/2.1.1": {
"sha512": "LjVKO6P2y52c5ZhTLX/w8zc5H4Y3J/LJsgqTBj49TtFq/hAtVNue/WA0F6/7GMY90xhD7K0MDZ4qpOeWXbLvzg==",
"type": "package",
"path": "microsoft.extensions.configuration/2.2.0",
"path": "microsoft.extensions.configuration/2.1.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
"lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
"microsoft.extensions.configuration.2.2.0.nupkg.sha512",
"microsoft.extensions.configuration.2.1.1.nupkg.sha512",
"microsoft.extensions.configuration.nuspec"
]
},
"Microsoft.Extensions.Configuration.Abstractions/2.2.0": {
"sha512": "M6u4cMWXxPtqyJJ03oezyqTORmSgTPpa2gZRKkEGCXXHhyGnM1cHjPTzq5sevYS1VJEMb2TZj60mAc+hDoPPcQ==",
"Microsoft.Extensions.Configuration.Abstractions/2.1.1": {
"sha512": "VfuZJNa0WUshZ/+8BFZAhwFKiKuu/qOUCFntfdLpHj7vcRnsGHqd3G2Hse78DM+pgozczGM63lGPRLmy+uhUOA==",
"type": "package",
"path": "microsoft.extensions.configuration.abstractions/2.2.0",
"path": "microsoft.extensions.configuration.abstractions/2.1.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
"microsoft.extensions.configuration.abstractions.2.2.0.nupkg.sha512",
"microsoft.extensions.configuration.abstractions.2.1.1.nupkg.sha512",
"microsoft.extensions.configuration.abstractions.nuspec"
]
},
"Microsoft.Extensions.Configuration.Binder/2.2.0": {
"sha512": "6ANwTuQZqIIt0guKAdS9Mn6c+PfhOBpqRm7FslUJqtG000uo0Cd3pAndk92RQq0ygDFRub/ftiRy8DukWXqNzQ==",
"Microsoft.Extensions.Configuration.Binder/2.1.1": {
"sha512": "fcLCTS03poWE4v9tSNBr3pWn0QwGgAn1vzqHXlXgvqZeOc7LvQNzaWcKRQZTdEc3+YhQKwMsOtm3VKSA2aWQ8w==",
"type": "package",
"path": "microsoft.extensions.configuration.binder/2.2.0",
"path": "microsoft.extensions.configuration.binder/2.1.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
"microsoft.extensions.configuration.binder.2.2.0.nupkg.sha512",
"microsoft.extensions.configuration.binder.2.1.1.nupkg.sha512",
"microsoft.extensions.configuration.binder.nuspec"
]
},
"Microsoft.Extensions.Configuration.FileExtensions/2.2.0": {
"sha512": "BnkmTopJ7m+p0/EBshdJmoWroUvMlu+oA+bDvzEWh3WA9rOYdnTZueQ7Ap1oSfUnHnPBnuWae/ED8hHlM/sQxA==",
"Microsoft.Extensions.Configuration.FileExtensions/2.1.1": {
"sha512": "CDk5CwG0YzlRgvl65J0iK6ahrX12yMRrEat3yVTXjWC+GN9Jg9zHZu2IE4cQIPAMA/IiAI5KjgL08fhP3fPCkw==",
"type": "package",
"path": "microsoft.extensions.configuration.fileextensions/2.2.0",
"path": "microsoft.extensions.configuration.fileextensions/2.1.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
"lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
"microsoft.extensions.configuration.fileextensions.2.2.0.nupkg.sha512",
"microsoft.extensions.configuration.fileextensions.2.1.1.nupkg.sha512",
"microsoft.extensions.configuration.fileextensions.nuspec"
]
},
"Microsoft.Extensions.Configuration.Json/2.2.0": {
"sha512": "CqqFzpFuW9rOWOHI9c3JrGrOOogfLRrGTWVU2AIFkxXRQ/bAg5lL3WabkVEywmTRo58AI3p6sT0ACNy9s279VA==",
"Microsoft.Extensions.Configuration.Json/2.1.1": {
"sha512": "IFpONpvdhVEE3S3F4fTYkpT/GyIHtumy2m0HniQanJ80Pj/pUF3Z4wjrHEp1G78rPD+WTo5fRlhdJfuU1Tv2GQ==",
"type": "package",
"path": "microsoft.extensions.configuration.json/2.2.0",
"path": "microsoft.extensions.configuration.json/2.1.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
"microsoft.extensions.configuration.json.2.2.0.nupkg.sha512",
"microsoft.extensions.configuration.json.2.1.1.nupkg.sha512",
"microsoft.extensions.configuration.json.nuspec"
]
},
......@@ -4310,39 +4299,42 @@
"microsoft.extensions.dependencyinjection.abstractions.nuspec"
]
},
"Microsoft.Extensions.FileProviders.Abstractions/2.2.0": {
"sha512": "33vTyijzAVEfbuNFts68R7bW02cJMiw21MFgMBk+XL+thcbv335PVD1+DdMSvN6e5DeAR4OmPSRsKIr86Yk4qg==",
"Microsoft.Extensions.FileProviders.Abstractions/2.1.1": {
"sha512": "UEQB5/QPuLYaCvScZQ9llhcks5xyEUKh41D615FoehRAF9UgGVmXHcCSOH8idHHLRoKm+OJJjEy1oywvuaL33w==",
"type": "package",
"path": "microsoft.extensions.fileproviders.abstractions/2.2.0",
"path": "microsoft.extensions.fileproviders.abstractions/2.1.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
"lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
"microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512",
"microsoft.extensions.fileproviders.abstractions.2.1.1.nupkg.sha512",
"microsoft.extensions.fileproviders.abstractions.nuspec"
]
},
"Microsoft.Extensions.FileProviders.Physical/2.2.0": {
"sha512": "Qt6sUa56/XbLxYshrCzwJYhHO9TkVa9Adch1qVqr7PGuLCxRs3K7nGMv3I6msUvAJqiJE33Oexz6KrT4hcUHgA==",
"Microsoft.Extensions.FileProviders.Physical/2.1.1": {
"sha512": "kVCvLm1ePchUgRrQZrno07Mn6knDAzR7vl6eRaI/fem0u6ODg+RTwOYLs4XL39Ttuu+BzEwqzHu3DtDgXT8+vQ==",
"type": "package",
"path": "microsoft.extensions.fileproviders.physical/2.2.0",
"path": "microsoft.extensions.fileproviders.physical/2.1.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
"lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
"microsoft.extensions.fileproviders.physical.2.2.0.nupkg.sha512",
"microsoft.extensions.fileproviders.physical.2.1.1.nupkg.sha512",
"microsoft.extensions.fileproviders.physical.nuspec"
]
},
"Microsoft.Extensions.FileSystemGlobbing/2.2.0": {
"sha512": "WGASE48sldx5PHrmxpmW0qFJ0M0mZXhF9IgdBDTSNmnys7Qfw7xTuHs/nmbA1Wo8Y8XFI7K2cJKf9Ql/nBK4Rw==",
"Microsoft.Extensions.FileSystemGlobbing/2.1.1": {
"sha512": "4QDzyCN8cJnThY6mK9SnzovyCZ8KCG9jmC9KqHfFGtazJvmNZP1gcyBkPmqMjP0qwbmEUUyqyA9LLn3FrYXTGw==",
"type": "package",
"path": "microsoft.extensions.filesystemglobbing/2.2.0",
"path": "microsoft.extensions.filesystemglobbing/2.1.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
"lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
"microsoft.extensions.filesystemglobbing.2.2.0.nupkg.sha512",
"microsoft.extensions.filesystemglobbing.2.1.1.nupkg.sha512",
"microsoft.extensions.filesystemglobbing.nuspec"
]
},
......@@ -4385,15 +4377,16 @@
"microsoft.extensions.options.nuspec"
]
},
"Microsoft.Extensions.Primitives/2.2.0": {
"sha512": "vpH+o7f8obVx65PiEtBXxTwL5RosK60fNIMy/y8WGE4/r4IvAqQGukOzMhxsp//Accvd7kmukyQTVkqVYdaDyA==",
"Microsoft.Extensions.Primitives/2.1.1": {
"sha512": "scJ1GZNIxMmjpENh0UZ8XCQ6vzr/LzeF9WvEA51Ix2OQGAs9WPgPu8ABVUdvpKPLuor/t05gm6menJK3PwqOXg==",
"type": "package",
"path": "microsoft.extensions.primitives/2.2.0",
"path": "microsoft.extensions.primitives/2.1.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
"lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
"microsoft.extensions.primitives.2.2.0.nupkg.sha512",
"microsoft.extensions.primitives.2.1.1.nupkg.sha512",
"microsoft.extensions.primitives.nuspec"
]
},
......@@ -4720,7 +4713,7 @@
]
},
"Microsoft.NETCore.Platforms/1.1.0": {
"sha512": "bLpT1f/SFlO1CzqXG12KnJzpZs6lv24uX2Rzi4Fmm0noJpNlnWRVryuO3yK18Ca04t/YHcO1e1Z0WDfjseqNzw==",
"sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
"type": "package",
"path": "microsoft.netcore.platforms/1.1.0",
"files": [
......@@ -4830,21 +4823,22 @@
"runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll"
]
},
"MySql.Data/8.0.13": {
"sha512": "mXfjg2pOdzpyd4wkXZPKYcNluzV68ggAO/LPcT7iuzU5kDS7livUDR8IsKkarEhBmRxBy0XmBnUOkEWJvfOW9Q==",
"MySql.Data/6.10.7": {
"sha512": "2fptledJVo4GaF/DOpWgumn+pteZ2eNlaZTE8I6CUvK7Zz5UGPWTg3v9l4Ymp9ewivodYI5VDn6ucVyKL/e++A==",
"type": "package",
"path": "mysql.data/8.0.13",
"path": "mysql.data/6.10.7",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/net452/MySql.Data.dll",
"lib/net452/MySql.Data.xml",
"lib/netcoreapp2.0/MySql.Data.dll",
"lib/netcoreapp2.0/MySql.Data.xml",
"lib/netstandard1.6/MySql.Data.dll",
"lib/netstandard1.6/MySql.Data.xml",
"lib/netstandard1.3/MySql.Data.dll",
"lib/netstandard1.3/MySql.Data.xml",
"lib/netstandard2.0/MySql.Data.dll",
"lib/netstandard2.0/MySql.Data.xml",
"mysql.data.8.0.13.nupkg.sha512",
"mysql.data.6.10.7.nupkg.sha512",
"mysql.data.nuspec"
]
},
......@@ -5588,11 +5582,12 @@
"version.txt"
]
},
"System.Configuration.ConfigurationManager/4.4.1": {
"sha512": "LoSjM/kLDpyLyoGsmwS5oVMRzHf/0XHkRpr3QZu/HuAv6Sfk919usTMLqD9N9VK3S4Q2+bd3tKJ0ko4MYFfq4Q==",
"System.Configuration.ConfigurationManager/4.4.0": {
"sha512": "RLYB3YOmdz9dE3zMhBFGv3GF74upGjH0nF0G9lFFRLNLsCEMIpiuQsMGv2qE0qdp1JdheVNO8RIRpUKdokiK+g==",
"type": "package",
"path": "system.configuration.configurationmanager/4.4.1",
"path": "system.configuration.configurationmanager/4.4.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
......@@ -5602,7 +5597,7 @@
"ref/net461/System.Configuration.ConfigurationManager.xml",
"ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
"ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
"system.configuration.configurationmanager.4.4.1.nupkg.sha512",
"system.configuration.configurationmanager.4.4.0.nupkg.sha512",
"system.configuration.configurationmanager.nuspec",
"useSharedDesignerContext.txt",
"version.txt"
......@@ -7609,10 +7604,10 @@
"system.runtime.extensions.nuspec"
]
},
"System.Runtime.Handles/4.3.0": {
"sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
"System.Runtime.Handles/4.0.1": {
"sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==",
"type": "package",
"path": "system.runtime.handles/4.3.0",
"path": "system.runtime.handles/4.0.1",
"files": [
".nupkg.metadata",
"ThirdPartyNotices.txt",
......@@ -7642,14 +7637,14 @@
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"system.runtime.handles.4.3.0.nupkg.sha512",
"system.runtime.handles.4.0.1.nupkg.sha512",
"system.runtime.handles.nuspec"
]
},
"System.Runtime.InteropServices/4.3.0": {
"sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
"System.Runtime.InteropServices/4.1.0": {
"sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==",
"type": "package",
"path": "system.runtime.interopservices/4.3.0",
"path": "system.runtime.interopservices/4.1.0",
"files": [
".nupkg.metadata",
"ThirdPartyNotices.txt",
......@@ -7658,7 +7653,6 @@
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net462/System.Runtime.InteropServices.dll",
"lib/net463/System.Runtime.InteropServices.dll",
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
......@@ -7670,7 +7664,6 @@
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net462/System.Runtime.InteropServices.dll",
"ref/net463/System.Runtime.InteropServices.dll",
"ref/netcore50/System.Runtime.InteropServices.dll",
"ref/netcore50/System.Runtime.InteropServices.xml",
"ref/netcore50/de/System.Runtime.InteropServices.xml",
......@@ -7682,7 +7675,6 @@
"ref/netcore50/ru/System.Runtime.InteropServices.xml",
"ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
"ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
"ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
"ref/netstandard1.1/System.Runtime.InteropServices.dll",
"ref/netstandard1.1/System.Runtime.InteropServices.xml",
"ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
......@@ -7734,7 +7726,7 @@
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"system.runtime.interopservices.4.3.0.nupkg.sha512",
"system.runtime.interopservices.4.1.0.nupkg.sha512",
"system.runtime.interopservices.nuspec"
]
},
......@@ -8232,11 +8224,12 @@
"system.security.cryptography.x509certificates.nuspec"
]
},
"System.Security.Permissions/4.4.1": {
"sha512": "tXBMO8OJEuw9c4KjLj4fwxJusely90azF24Uktz/evgvowAtU963HYl+G93gaRZr6pvYvsSPrjkN4+2pdVUbgw==",
"System.Security.Permissions/4.4.0": {
"sha512": "eeIuiiT15KEq9PKZbGagsCBmb7+z2Zphv3LcrINr2lHHvAGGsdWyq9YztLU2V77yoiqchH61iVH9//TvMY9+/A==",
"type": "package",
"path": "system.security.permissions/4.4.1",
"path": "system.security.permissions/4.4.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
......@@ -8245,7 +8238,7 @@
"ref/net461/System.Security.Permissions.dll",
"ref/netstandard2.0/System.Security.Permissions.dll",
"ref/netstandard2.0/System.Security.Permissions.xml",
"system.security.permissions.4.4.1.nupkg.sha512",
"system.security.permissions.4.4.0.nupkg.sha512",
"system.security.permissions.nuspec",
"useSharedDesignerContext.txt",
"version.txt"
......@@ -8357,21 +8350,17 @@
"system.text.encoding.nuspec"
]
},
"System.Text.Encoding.CodePages/4.4.0": {
"sha512": "FpAgMC+BX6OOCiRebYqHP3r3aYU7o0lopPOo4zKyGc5LWXFEYRUaKtoXXvAJ3sP+IDOK/KBxZaiVAdi+QdZ0TA==",
"System.Text.Encoding.CodePages/4.0.1": {
"sha512": "h4z6rrA/hxWf4655D18IIZ0eaLRa3tQC/j+e26W+VinIHY0l07iEXaAvO0YSYq3MvCjMYy8Zs5AdC1sxNQOB7Q==",
"type": "package",
"path": "system.text.encoding.codepages/4.4.0",
"path": "system.text.encoding.codepages/4.0.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Text.Encoding.CodePages.dll",
"lib/net461/System.Text.Encoding.CodePages.dll",
"lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
"lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
......@@ -8389,20 +8378,14 @@
"ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml",
"ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml",
"ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml",
"ref/netstandard2.0/System.Text.Encoding.CodePages.dll",
"ref/netstandard2.0/System.Text.Encoding.CodePages.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
"runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
"runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
"runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
"runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
"system.text.encoding.codepages.4.4.0.nupkg.sha512",
"system.text.encoding.codepages.nuspec",
"useSharedDesignerContext.txt",
"version.txt"
"system.text.encoding.codepages.4.0.1.nupkg.sha512",
"system.text.encoding.codepages.nuspec"
]
},
"System.Text.Encoding.Extensions/4.0.11": {
......
f37cf9ea1f1354cae1808f2e21b0b2e7c25de1c4
5d5fbdf547d1ca398b66b42f8fb2035f3451c269
ba5d00ca067d3da9d7717c42c572fe2303685f64
17451b1d51dabf0dcd54cbba1702b6591b087443
9daa1a392a050f1f5480363f84cb18bb41300edd
caa8bde33db355c83d48df9a75543ea89f3cd92a
......@@ -11,6 +11,7 @@ D:\Tanta-master\OISCommon\obj\Debug\OISCommon.dll
D:\Tanta-master\OISCommon\obj\Debug\OISCommon.pdb
D:\smallproject\28.GISports\OISCommon\bin\Debug\OISCommon.dll
D:\smallproject\28.GISports\OISCommon\bin\Debug\OISCommon.pdb
D:\smallproject\28.GISports\OISCommon\obj\Debug\OISCommon.csprojAssemblyReference.cache
D:\smallproject\28.GISports\OISCommon\obj\Debug\OISCommon.ctlOISBase.resources
D:\smallproject\28.GISports\OISCommon\obj\Debug\OISCommon.frmOISBase.resources
D:\smallproject\28.GISports\OISCommon\obj\Debug\OISCommon.frmOISLoggerException.resources
......@@ -19,4 +20,3 @@ D:\smallproject\28.GISports\OISCommon\obj\Debug\OISCommon.csproj.GenerateResourc
D:\smallproject\28.GISports\OISCommon\obj\Debug\OISCommon.csproj.CoreCompileInputs.cache
D:\smallproject\28.GISports\OISCommon\obj\Debug\OISCommon.dll
D:\smallproject\28.GISports\OISCommon\obj\Debug\OISCommon.pdb
D:\smallproject\28.GISports\OISCommon\obj\Debug\OISCommon.csprojAssemblyReference.cache
5c5531ff56066e6cd884dc427442977f9bfcc540
29e64b3112779cbfc81f8fb982eaa58f0759e473
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment