From: gdkhd812 Date: Thu, 30 Mar 2017 14:21:52 +0000 (+0900) Subject: アルファが0以上の時に選択領域の文字色を変えられるようにした X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=3c82ba4a816d63578d820bee1a5a5a67ddc23731;p=fooeditengine%2FFooEditEngine.git アルファが0以上の時に選択領域の文字色を変えられるようにした --- diff --git a/Core/Direct2D/CustomTextRenderer.cs b/Core/Direct2D/CustomTextRenderer.cs index f8adb5d..a7b0da7 100644 --- a/Core/Direct2D/CustomTextRenderer.cs +++ b/Core/Direct2D/CustomTextRenderer.cs @@ -40,6 +40,7 @@ namespace FooEditEngine public Result DrawGlyphRun(object clientDrawingContext, float baselineOriginX, float baselineOriginY, D2D.MeasuringMode measuringMode, DW.GlyphRun glyphRun, DW.GlyphRunDescription glyphRunDescription, ComObject clientDrawingEffect) { D2D.SolidColorBrush foreBrush = this.brushes.Get(this.DefaultFore); + bool isDrawGlyphRun = true; if (clientDrawingEffect != null) { if (clientDrawingEffect is D2D.SolidColorBrush) @@ -48,25 +49,28 @@ namespace FooEditEngine effect = clientDrawingEffect as D2D.SolidColorBrush; foreBrush = effect; } + else if(clientDrawingEffect is SelectedEffect) + { + SelectedEffect effect = clientDrawingEffect as SelectedEffect; + RectangleF rect; + D2D.SolidColorBrush backBrush = this.brushes.Get(effect.Back); + rect = this.GetGlyphBound(glyphRun, baselineOriginX, baselineOriginY); + render.FillRectangle(rect, backBrush); + foreBrush = this.brushes.Get(effect.Fore); + } else if (clientDrawingEffect is DrawingEffect) { DrawingEffect effect = clientDrawingEffect as DrawingEffect; - RectangleF rect; - if (effect.Stroke == HilightType.Select) - { - D2D.SolidColorBrush backBrush = this.brushes.Get(effect.Fore); - rect = this.GetGlyphBound(glyphRun, baselineOriginX, baselineOriginY); - render.FillRectangle(rect, backBrush); - } if (effect.Stroke == HilightType.Url) foreBrush = this.brushes.Get(effect.Fore); } } - render.DrawGlyphRun(new Vector2(baselineOriginX, baselineOriginY), - glyphRun, - foreBrush, - measuringMode); + if(isDrawGlyphRun) + render.DrawGlyphRun(new Vector2(baselineOriginX, baselineOriginY), + glyphRun, + foreBrush, + measuringMode); return SharpDX.Result.Ok; } diff --git a/Core/Direct2D/D2DRenderCommon.cs b/Core/Direct2D/D2DRenderCommon.cs index 057d228..79a3992 100644 --- a/Core/Direct2D/D2DRenderCommon.cs +++ b/Core/Direct2D/D2DRenderCommon.cs @@ -350,6 +350,12 @@ namespace FooEditEngine } } + public Color4 HilightForeground + { + get; + set; + } + public Color4 Background { get; @@ -637,7 +643,7 @@ namespace FooEditEngine this.render.Clear(this.Background); } - public void DrawOneLine(LineToIndexTable lti, int row, double x, double y, IEnumerable SelectRanges,PreDrawOneLineHandler PreDrawOneLine) + public void DrawOneLine(LineToIndexTable lti, int row, double x, double y, PreDrawOneLineHandler PreDrawOneLine, IEnumerable SelectRanges) { int lineLength = lti.GetLengthFromLineNumber(row); @@ -649,7 +655,7 @@ namespace FooEditEngine if(PreDrawOneLine != null) PreDrawOneLine(layout,lti,row,x,y); - if (SelectRanges != null) + if (SelectRanges != null && this.HilightForeground.Alpha == 0.0f) { foreach (Selection sel in SelectRanges) { @@ -731,7 +737,7 @@ namespace FooEditEngine } } - public ITextLayout CreateLaytout(string str, SyntaxInfo[] syntaxCollection, IEnumerable MarkerRanges) + public ITextLayout CreateLaytout(string str, SyntaxInfo[] syntaxCollection, IEnumerable MarkerRanges, IEnumerable SelectRanges) { float dpix,dpiy; this.GetDpi(out dpix,out dpiy); @@ -778,12 +784,26 @@ namespace FooEditEngine Color4 color = new Color4(m.color.R / 255.0f, m.color.G / 255.0f, m.color.B / 255.0f, m.color.A / 255.0f); if (m.hilight == HilightType.Url) color = this.Url; - newLayout.SetDrawingEffect(new DrawingEffect(m.hilight, color,m.isBoldLine), new DW.TextRange(m.start, m.length)); + if (m.hilight == HilightType.Select) + newLayout.SetDrawingEffect(new SelectedEffect(this.HilightForeground, color, m.isBoldLine), new DW.TextRange(m.start, m.length)); + else + newLayout.SetDrawingEffect(new DrawingEffect(m.hilight, color,m.isBoldLine), new DW.TextRange(m.start, m.length)); if (m.hilight != HilightType.None && m.hilight != HilightType.Select) newLayout.SetUnderline(true, new DW.TextRange(m.start, m.length)); } } + if (SelectRanges != null && this.HilightForeground.Alpha > 0.0) + { + foreach (Selection sel in SelectRanges) + { + if (sel.length == 0 || sel.start == -1) + continue; + + newLayout.SetDrawingEffect(new SelectedEffect(this.HilightForeground, this.Hilight, false), new DW.TextRange(sel.start, sel.length)); + } + } + return newLayout; } diff --git a/Core/Direct2D/DrawingEffect.cs b/Core/Direct2D/DrawingEffect.cs index 35e9cc6..c93171f 100644 --- a/Core/Direct2D/DrawingEffect.cs +++ b/Core/Direct2D/DrawingEffect.cs @@ -14,7 +14,7 @@ using D2D = SharpDX.Direct2D1; namespace FooEditEngine { - sealed class DrawingEffect : ComObject, IDisposable + class DrawingEffect : ComObject, IDisposable { public HilightType Stroke; public Color4 Fore; @@ -30,4 +30,15 @@ namespace FooEditEngine { } } + + sealed class SelectedEffect : DrawingEffect + { + public Color4 Back; + + public SelectedEffect(Color4 fore, Color4 back, bool isBoldLine) : + base(HilightType.Select, fore, isBoldLine) + { + this.Back = back; + } + } } diff --git a/Core/Document.cs b/Core/Document.cs index f5a1b15..dc41812 100644 --- a/Core/Document.cs +++ b/Core/Document.cs @@ -807,6 +807,7 @@ namespace FooEditEngine { this.Selections.Add(Selection.Create(start, length)); } + this.LayoutLines.ClearLayoutCache(); this.SelectionChanged(this, null); } diff --git a/Core/DummyRender.cs b/Core/DummyRender.cs index 40ad5e5..462b8a3 100644 --- a/Core/DummyRender.cs +++ b/Core/DummyRender.cs @@ -135,7 +135,7 @@ namespace FooEditEngine throw new NotImplementedException(); } - public ITextLayout CreateLaytout(string str, SyntaxInfo[] syntaxCollection, IEnumerable MarkerRanges) + public ITextLayout CreateLaytout(string str, SyntaxInfo[] syntaxCollection, IEnumerable MarkerRanges, IEnumerable SelectRanges) { return new DummyTextLayout(); } diff --git a/Core/ITextRender.cs b/Core/ITextRender.cs index 4384e7a..06adbe4 100644 --- a/Core/ITextRender.cs +++ b/Core/ITextRender.cs @@ -582,8 +582,8 @@ namespace FooEditEngine /// 行 /// 行の左上を表すX座標 /// 行の左上を表すY座標 - /// 選択領域を保持しているコレクション。選択領域の開始位置は行の先頭を0とする相対位置としてください(位置が-1の場合表示されません) - void DrawOneLine(LineToIndexTable lti, int row, double x, double y, IEnumerable SelectRanges); + /// 選択領域を保持しているコレクション。マーカーの開始位置は行の先頭を0とする相対位置としてください(位置が-1の場合表示しないこと) + void DrawOneLine(LineToIndexTable lti, int row, double x, double y, IEnumerable Selections); /// /// 行を折り返す @@ -603,7 +603,8 @@ namespace FooEditEngine /// ITextLayoutオブジェクト /// ハイライト関連の情報を保持しているコレクション /// マーカーを保持しているコレクション。マーカーの開始位置は行の先頭を0とする相対位置としてください(位置が-1の場合表示しないこと) - ITextLayout CreateLaytout(string str, SyntaxInfo[] syntaxCollection, IEnumerable MarkerRanges); + /// 選択領域を保持しているコレクション。マーカーの開始位置は行の先頭を0とする相対位置としてください(位置が-1の場合表示しないこと) + ITextLayout CreateLaytout(string str, SyntaxInfo[] syntaxCollection, IEnumerable MarkerRanges, IEnumerable Selections); /// /// グリッパーを描く diff --git a/Core/LineToIndex.cs b/Core/LineToIndex.cs index 45f9611..9555a4a 100644 --- a/Core/LineToIndex.cs +++ b/Core/LineToIndex.cs @@ -635,7 +635,7 @@ namespace FooEditEngine LineToIndexTableData lineData = this.Lines[row]; if (lineData.Length == 0) { - layout = this.render.CreateLaytout("", null, null); + layout = this.render.CreateLaytout("", null, null, null); } else { @@ -650,7 +650,11 @@ namespace FooEditEngine from s in this.Document.Markers.Get(id,lineHeadIndex,lineData.Length) let n = Util.ConvertAbsIndexToRelIndex(s, lineHeadIndex, lineData.Length) select n; - layout = this.render.CreateLaytout(content, lineData.Syntax, markerRange); + var selectRange = from s in this.Document.Selections.Get(lineHeadIndex, lineData.Length) + let n = Util.ConvertAbsIndexToRelIndex(s, lineHeadIndex, lineData.Length) + select n; + + layout = this.render.CreateLaytout(content, lineData.Syntax, markerRange, selectRange); } return layout; diff --git a/UWP/FooEditEngine.UWP/Direct2D/D2DRenderBase.cs b/UWP/FooEditEngine.UWP/Direct2D/D2DRenderBase.cs index 2031d5f..19e9800 100644 --- a/UWP/FooEditEngine.UWP/Direct2D/D2DRenderBase.cs +++ b/UWP/FooEditEngine.UWP/Direct2D/D2DRenderBase.cs @@ -153,14 +153,14 @@ namespace FooEditEngine return false; } - public void DrawOneLine(LineToIndexTable lti, int row, double x, double y, IEnumerable SelectRanges) + public void DrawOneLine(LineToIndexTable lti, int row, double x, double y, IEnumerable Selections) { this.DrawOneLine(lti, row, x, y, - SelectRanges, - null); + null, + Selections); } } } diff --git a/UWP/FooEditEngine.UWP/FooTextBox.cs b/UWP/FooEditEngine.UWP/FooTextBox.cs index 59511ea..7738fca 100644 --- a/UWP/FooEditEngine.UWP/FooTextBox.cs +++ b/UWP/FooEditEngine.UWP/FooTextBox.cs @@ -1423,6 +1423,8 @@ namespace FooEditEngine.UWP source.Render.FontSize = source.FontSize; if (e.Property.Equals(ForegroundProperty)) source.Render.Foreground = D2DRenderBase.ToColor4(source.Foreground); + if (e.Property.Equals(HilightForegroundProperty)) + source.Render.HilightForeground = D2DRenderBase.ToColor4(source.HilightForeground); if (e.Property.Equals(BackgroundProperty)) source.Render.Background = D2DRenderBase.ToColor4(source.Background); if (e.Property.Equals(ControlCharProperty)) @@ -1729,6 +1731,21 @@ namespace FooEditEngine.UWP DependencyProperty.Register("Foreground", typeof(Windows.UI.Color), typeof(FooTextBox), new PropertyMetadata(Colors.Black, OnPropertyChanged)); /// + /// 選択時の文字色を表す。これは依存プロパティです + /// + public Windows.UI.Color HilightForeground + { + get { return (Windows.UI.Color)GetValue(HilightForegroundProperty); } + set { SetValue(HilightForegroundProperty, value); } + } + + /// + /// HilightForegroundForegroundの依存プロパティを表す + /// + public static readonly DependencyProperty HilightForegroundProperty = + DependencyProperty.Register("HilightForeground", typeof(Windows.UI.Color), typeof(FooTextBox), new PropertyMetadata(Colors.White, OnPropertyChanged)); + + /// /// 背景色を表す。これは依存プロパティです /// public new Windows.UI.Color Background diff --git a/UWP/FooEditEngine.UWP/Themes/Generic.xaml b/UWP/FooEditEngine.UWP/Themes/Generic.xaml index db5f136..a45e7e9 100644 --- a/UWP/FooEditEngine.UWP/Themes/Generic.xaml +++ b/UWP/FooEditEngine.UWP/Themes/Generic.xaml @@ -38,6 +38,7 @@ + @@ -50,6 +51,7 @@ + @@ -62,6 +64,7 @@ + @@ -74,6 +77,7 @@ + diff --git a/UWP/FooEditEngine.UWP/project.lock.json b/UWP/FooEditEngine.UWP/project.lock.json index 6c89dd3..51d0866 100644 --- a/UWP/FooEditEngine.UWP/project.lock.json +++ b/UWP/FooEditEngine.UWP/project.lock.json @@ -1,5 +1,4 @@ { - "locked": false, "version": 2, "targets": { "UAP,Version=v10.0": { @@ -12231,6 +12230,7 @@ "Microsoft.CSharp/4.0.0": { "sha512": "oWqeKUxHXdK6dL2CFjgMcaBISbkk+AqEg+yvJHE4DElNzS4QaTsCflgkkqZwVlWby1Dg9zo9n+iCAMFefFdJ/A==", "type": "package", + "path": "microsoft.csharp/4.0.0", "files": [ "Microsoft.CSharp.4.0.0.nupkg.sha512", "Microsoft.CSharp.nuspec", @@ -12270,6 +12270,7 @@ "Microsoft.NETCore/5.0.0": { "sha512": "QQMp0yYQbIdfkKhdEE6Umh2Xonau7tasG36Trw/YlHoWgYQLp7T9L+ZD8EPvdj5ubRhtOuKEKwM7HMpkagB9ZA==", "type": "package", + "path": "microsoft.netcore/5.0.0", "files": [ "Microsoft.NETCore.5.0.0.nupkg.sha512", "Microsoft.NETCore.nuspec", @@ -12279,6 +12280,7 @@ "Microsoft.NETCore.Platforms/1.0.0": { "sha512": "0N77OwGZpXqUco2C/ynv1os7HqdFYifvNIbveLDKqL5PZaz05Rl9enCwVBjF61aumHKueLWIJ3prnmdAXxww4A==", "type": "package", + "path": "microsoft.netcore.platforms/1.0.0", "files": [ "Microsoft.NETCore.Platforms.1.0.0.nupkg.sha512", "Microsoft.NETCore.Platforms.nuspec", @@ -12288,6 +12290,7 @@ "Microsoft.NETCore.Portable.Compatibility/1.0.0": { "sha512": "5/IFqf2zN1jzktRJitxO+5kQ+0AilcIbPvSojSJwDG3cGNSMZg44LXLB5E9RkSETE0Wh4QoALdNh1koKoF7/mA==", "type": "package", + "path": "microsoft.netcore.portable.compatibility/1.0.0", "files": [ "Microsoft.NETCore.Portable.Compatibility.1.0.0.nupkg.sha512", "Microsoft.NETCore.Portable.Compatibility.nuspec", @@ -12367,6 +12370,7 @@ "Microsoft.NETCore.Runtime/1.0.1": { "sha512": "WIblAPds88Mwvcu8OjmspmHLG9zyay//n1jMVxQlxikGzZBIeRDz/O7o9qBtOR+vDpfn+Y2EbzdCmPb3brMGRg==", "type": "package", + "path": "microsoft.netcore.runtime/1.0.1", "files": [ "Microsoft.NETCore.Runtime.1.0.1.nupkg.sha512", "Microsoft.NETCore.Runtime.nuspec", @@ -12377,6 +12381,7 @@ "Microsoft.NETCore.Runtime.CoreCLR/1.0.1": { "sha512": "EQlk4pidS+VppUSjhCCMXYlw9mf/47BwyM5XIX/gQHp5/qedKG7jypSMy0SGwv80U5mr1juQC0YROqjr7j8nTA==", "type": "package", + "path": "microsoft.netcore.runtime.coreclr/1.0.1", "files": [ "Microsoft.NETCore.Runtime.CoreCLR.1.0.1.nupkg.sha512", "Microsoft.NETCore.Runtime.CoreCLR.nuspec", @@ -12388,6 +12393,7 @@ "Microsoft.NETCore.Runtime.Native/1.0.1": { "sha512": "VeZR/qn/+FRH5rd1htnwBFIzSBW6xiA7Yu2UzaHKKlyf9Ev9xVXIOitWnkvb/tJMTKdmiCzmfi2TsAMajUHNZA==", "type": "package", + "path": "microsoft.netcore.runtime.native/1.0.1", "files": [ "Microsoft.NETCore.Runtime.Native.1.0.1.nupkg.sha512", "Microsoft.NETCore.Runtime.Native.nuspec", @@ -12398,6 +12404,7 @@ "Microsoft.NETCore.Targets/1.0.0": { "sha512": "XfITpPjYLYRmAeZtb9diw6P7ylLQsSC1U2a/xj10iQpnHxkiLEBXop/psw15qMPuNca7lqgxWvzZGpQxphuXaw==", "type": "package", + "path": "microsoft.netcore.targets/1.0.0", "files": [ "Microsoft.NETCore.Targets.1.0.0.nupkg.sha512", "Microsoft.NETCore.Targets.nuspec", @@ -12407,6 +12414,7 @@ "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": { "sha512": "jszcJ6okLlhqF4OQbhSbixLOuLUyVT3BP7Y7/i7fcDMwnHBd1Pmdz6M1Al9SMDKVLA2oSaItg4tq6C0ydv8lYQ==", "type": "package", + "path": "microsoft.netcore.targets.universalwindowsplatform/5.0.0", "files": [ "Microsoft.NETCore.Targets.UniversalWindowsPlatform.5.0.0.nupkg.sha512", "Microsoft.NETCore.Targets.UniversalWindowsPlatform.nuspec", @@ -12416,6 +12424,7 @@ "Microsoft.NETCore.UniversalWindowsPlatform/5.1.0": { "sha512": "6xdZAZALSJB65rRfOAfB6+aVBBc42Oz8jr8Cqy8J7A34zWVBV9l612lwbEsf6KJ1YdtocJsNcA8sLId3vJL/FA==", "type": "package", + "path": "microsoft.netcore.universalwindowsplatform/5.1.0", "files": [ "Microsoft.NETCore.UniversalWindowsPlatform.5.1.0.nupkg.sha512", "Microsoft.NETCore.UniversalWindowsPlatform.nuspec", @@ -12426,6 +12435,7 @@ "Microsoft.NETCore.Windows.ApiSets-x64/1.0.0": { "sha512": "NC+dpFMdhujz2sWAdJ8EmBk07p1zOlNi0FCCnZEbzftABpw9xZ99EMP/bUJrPTgCxHfzJAiuLPOtAauzVINk0w==", "type": "package", + "path": "microsoft.netcore.windows.apisets-x64/1.0.0", "files": [ "Microsoft.NETCore.Windows.ApiSets-x64.1.0.0.nupkg.sha512", "Microsoft.NETCore.Windows.ApiSets-x64.nuspec", @@ -12591,6 +12601,7 @@ "Microsoft.NETCore.Windows.ApiSets-x86/1.0.0": { "sha512": "/HDRdhz5bZyhHwQ/uk/IbnDIX5VDTsHntEZYkTYo57dM+U3Ttel9/OJv0mjL64wTO/QKUJJNKp9XO+m7nSVjJQ==", "type": "package", + "path": "microsoft.netcore.windows.apisets-x86/1.0.0", "files": [ "Microsoft.NETCore.Windows.ApiSets-x86.1.0.0.nupkg.sha512", "Microsoft.NETCore.Windows.ApiSets-x86.nuspec", @@ -12756,6 +12767,7 @@ "Microsoft.VisualBasic/10.0.0": { "sha512": "5BEm2/HAVd97whRlCChU7rmSh/9cwGlZ/NTNe3Jl07zuPWfKQq5TUvVNUmdvmEe8QRecJLZ4/e7WF1i1O8V42g==", "type": "package", + "path": "microsoft.visualbasic/10.0.0", "files": [ "Microsoft.VisualBasic.10.0.0.nupkg.sha512", "Microsoft.VisualBasic.nuspec", @@ -12785,6 +12797,7 @@ "Microsoft.Win32.Primitives/4.0.0": { "sha512": "CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==", "type": "package", + "path": "microsoft.win32.primitives/4.0.0", "files": [ "Microsoft.Win32.Primitives.4.0.0.nupkg.sha512", "Microsoft.Win32.Primitives.nuspec", @@ -12815,6 +12828,7 @@ "runtime.any.System.Private.DataContractSerialization/4.1.0": { "sha512": "nJ5sB6Q7vbOEZ+tm/L7XISxO0Az6tkMup5rhpgPboVpUKgMnsdWiDvSlzzpK/bsiYxMIJCJ4Xrt2abt8Z1beJw==", "type": "package", + "path": "runtime.any.system.private.datacontractserialization/4.1.0", "files": [ "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -12829,6 +12843,7 @@ "runtime.aot.System.Private.DataContractSerialization/4.1.0": { "sha512": "0GKgzv1P8U+1x0grF5xg9xAjjVahzAZwGNF6ff8/CeXi+1isQYi7vZ/GhiyU7zDaQnKmSOj1/tTZqhOo5P4yTA==", "type": "package", + "path": "runtime.aot.system.private.datacontractserialization/4.1.0", "files": [ "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -12841,6 +12856,7 @@ "runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR/1.0.1": { "sha512": "RGzhZPvizLZVtpUAnRHdIlluBT+IBgj9YuJcpUzvE9X9sDfSIzKLmHoAYeuQDOKXjRiy1qWh6/qsgXF9K8LDrQ==", "type": "package", + "path": "runtime.win7-x64.microsoft.netcore.runtime.coreclr/1.0.1", "files": [ "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -12860,6 +12876,7 @@ "runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR/1.0.1": { "sha512": "Sm4ZEOX0J7RLguqTTv/S1df8DHy+ndLPCg8qlth3icuO6awpSzkqte5gQMV4pSci5YduMed9mgRGcPe3EQ5l2w==", "type": "package", + "path": "runtime.win7-x86.microsoft.netcore.runtime.coreclr/1.0.1", "files": [ "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -12879,6 +12896,7 @@ "runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR/1.0.1": { "sha512": "sO14C2owb6uCS+OuoCUO6baXQQrG4D3rfOtE6iL1RNsiTTe/rjQC7NZY0iWmUjzd7+g+5ejaEv4x3sM2KRAUSw==", "type": "package", + "path": "runtime.win8-arm.microsoft.netcore.runtime.coreclr/1.0.1", "files": [ "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -12898,6 +12916,7 @@ "System.AppContext/4.0.0": { "sha512": "gUoYgAWDC3+xhKeU5KSLbYDhTdBYk9GssrMSCcWUADzOglW+s0AmwVhOUGt2tL5xUl7ZXoYTPdA88zCgKrlG0A==", "type": "package", + "path": "system.appcontext/4.0.0", "files": [ "System.AppContext.4.0.0.nupkg.sha512", "System.AppContext.nuspec", @@ -12929,6 +12948,7 @@ "System.Collections/4.0.10": { "sha512": "ux6ilcZZjV/Gp7JEZpe+2V1eTueq6NuoGRM3eZCFuPM25hLVVgCRuea6STW8hvqreIOE59irJk5/ovpA5xQipw==", "type": "package", + "path": "system.collections/4.0.10", "files": [ "System.Collections.4.0.10.nupkg.sha512", "System.Collections.nuspec", @@ -12961,6 +12981,7 @@ "System.Collections.Concurrent/4.0.10": { "sha512": "ZtMEqOPAjAIqR8fqom9AOKRaB94a+emO2O8uOP6vyJoNswSPrbiwN7iH53rrVpvjMVx0wr4/OMpI7486uGZjbw==", "type": "package", + "path": "system.collections.concurrent/4.0.10", "files": [ "System.Collections.Concurrent.4.0.10.nupkg.sha512", "System.Collections.Concurrent.nuspec", @@ -12991,6 +13012,7 @@ "System.Collections.Immutable/1.1.37": { "sha512": "fTpqwZYBzoklTT+XjTRK8KxvmrGkYHzBiylCcKyQcxiOM8k+QvhNBxRvFHDWzy4OEP5f8/9n+xQ9mEgEXY+muA==", "type": "package", + "path": "system.collections.immutable/1.1.37", "files": [ "System.Collections.Immutable.1.1.37.nupkg.sha512", "System.Collections.Immutable.nuspec", @@ -13003,6 +13025,7 @@ "System.Collections.NonGeneric/4.0.0": { "sha512": "rVgwrFBMkmp8LI6GhAYd6Bx+2uLIXjRfNg6Ie+ASfX8ESuh9e2HNxFy2yh1MPIXZq3OAYa+0mmULVwpnEC6UDA==", "type": "package", + "path": "system.collections.nongeneric/4.0.0", "files": [ "System.Collections.NonGeneric.4.0.0.nupkg.sha512", "System.Collections.NonGeneric.nuspec", @@ -13033,6 +13056,7 @@ "System.Collections.Specialized/4.0.0": { "sha512": "poJFwQCUOoXqvdoGxx+3p8Z63yawcYKPBSFP67Z2jICeOINvEIQZN7mVOAnC7gsVF0WU+A2wtVwfhagC7UCgAg==", "type": "package", + "path": "system.collections.specialized/4.0.0", "files": [ "System.Collections.Specialized.4.0.0.nupkg.sha512", "System.Collections.Specialized.nuspec", @@ -13063,6 +13087,7 @@ "System.ComponentModel/4.0.0": { "sha512": "BzpLdSi++ld7rJLOOt5f/G9GxujP202bBgKORsHcGV36rLB0mfSA2h8chTMoBzFhgN7TE14TmJ2J7Q1RyNCTAw==", "type": "package", + "path": "system.componentmodel/4.0.0", "files": [ "System.ComponentModel.4.0.0.nupkg.sha512", "System.ComponentModel.nuspec", @@ -13094,6 +13119,7 @@ "System.ComponentModel.Annotations/4.0.10": { "sha512": "7+XGyEZx24nP1kpHxCB9e+c6D0fdVDvFwE1xujE9BzlXyNVcy5J5aIO0H/ECupx21QpyRvzZibGAHfL/XLL6dw==", "type": "package", + "path": "system.componentmodel.annotations/4.0.10", "files": [ "System.ComponentModel.Annotations.4.0.10.nupkg.sha512", "System.ComponentModel.Annotations.nuspec", @@ -13124,6 +13150,7 @@ "System.ComponentModel.EventBasedAsync/4.0.10": { "sha512": "d6kXcHUgP0jSPXEQ6hXJYCO6CzfoCi7t9vR3BfjSQLrj4HzpuATpx1gkN7itmTW1O+wjuw6rai4378Nj6N70yw==", "type": "package", + "path": "system.componentmodel.eventbasedasync/4.0.10", "files": [ "System.ComponentModel.EventBasedAsync.4.0.10.nupkg.sha512", "System.ComponentModel.EventBasedAsync.nuspec", @@ -13154,6 +13181,7 @@ "System.Data.Common/4.0.0": { "sha512": "SA7IdoTWiImVr0exDM68r0mKmR4f/qFGxZUrJQKu4YS7F+3afWzSOCezHxWdevQ0ONi4WRQsOiv+Zf9p8H0Feg==", "type": "package", + "path": "system.data.common/4.0.0", "files": [ "System.Data.Common.4.0.0.nupkg.sha512", "System.Data.Common.nuspec", @@ -13184,6 +13212,7 @@ "System.Diagnostics.Contracts/4.0.0": { "sha512": "lMc7HNmyIsu0pKTdA4wf+FMq5jvouUd+oUpV4BdtyqoV0Pkbg9u/7lTKFGqpjZRQosWHq1+B32Lch2wf4AmloA==", "type": "package", + "path": "system.diagnostics.contracts/4.0.0", "files": [ "System.Diagnostics.Contracts.4.0.0.nupkg.sha512", "System.Diagnostics.Contracts.nuspec", @@ -13216,6 +13245,7 @@ "System.Diagnostics.Debug/4.0.10": { "sha512": "pi2KthuvI2LWV2c2V+fwReDsDiKpNl040h6DcwFOb59SafsPT/V1fCy0z66OKwysurJkBMmp5j5CBe3Um+ub0g==", "type": "package", + "path": "system.diagnostics.debug/4.0.10", "files": [ "System.Diagnostics.Debug.4.0.10.nupkg.sha512", "System.Diagnostics.Debug.nuspec", @@ -13248,6 +13278,7 @@ "System.Diagnostics.StackTrace/4.0.0": { "sha512": "PItgenqpRiMqErvQONBlfDwctKpWVrcDSW5pppNZPJ6Bpiyz+KjsWoSiaqs5dt03HEbBTMNCrZb8KCkh7YfXmw==", "type": "package", + "path": "system.diagnostics.stacktrace/4.0.0", "files": [ "System.Diagnostics.StackTrace.4.0.0.nupkg.sha512", "System.Diagnostics.StackTrace.nuspec", @@ -13280,6 +13311,7 @@ "System.Diagnostics.Tools/4.0.0": { "sha512": "uw5Qi2u5Cgtv4xv3+8DeB63iaprPcaEHfpeJqlJiLjIVy6v0La4ahJ6VW9oPbJNIjcavd24LKq0ctT9ssuQXsw==", "type": "package", + "path": "system.diagnostics.tools/4.0.0", "files": [ "System.Diagnostics.Tools.4.0.0.nupkg.sha512", "System.Diagnostics.Tools.nuspec", @@ -13312,6 +13344,7 @@ "System.Diagnostics.Tracing/4.0.20": { "sha512": "gn/wexGHc35Fv++5L1gYHMY5g25COfiZ0PGrL+3PfwzoJd4X2LbTAm/U8d385SI6BKQBI/z4dQfvneS9J27+Tw==", "type": "package", + "path": "system.diagnostics.tracing/4.0.20", "files": [ "System.Diagnostics.Tracing.4.0.20.nupkg.sha512", "System.Diagnostics.Tracing.nuspec", @@ -13344,6 +13377,7 @@ "System.Dynamic.Runtime/4.0.10": { "sha512": "r10VTLdlxtYp46BuxomHnwx7vIoMOr04CFoC/jJJfY22f7HQQ4P+cXY2Nxo6/rIxNNqOxwdbQQwv7Gl88Jsu1w==", "type": "package", + "path": "system.dynamic.runtime/4.0.10", "files": [ "System.Dynamic.Runtime.4.0.10.nupkg.sha512", "System.Dynamic.Runtime.nuspec", @@ -13377,6 +13411,7 @@ "System.Globalization/4.0.10": { "sha512": "kzRtbbCNAxdafFBDogcM36ehA3th8c1PGiz8QRkZn8O5yMBorDHSK8/TGJPYOaCS5zdsGk0u9qXHnW91nqy7fw==", "type": "package", + "path": "system.globalization/4.0.10", "files": [ "System.Globalization.4.0.10.nupkg.sha512", "System.Globalization.nuspec", @@ -13409,6 +13444,7 @@ "System.Globalization.Calendars/4.0.0": { "sha512": "cL6WrdGKnNBx9W/iTr+jbffsEO4RLjEtOYcpVSzPNDoli6X5Q6bAfWtJYbJNOPi8Q0fXgBEvKK1ncFL/3FTqlA==", "type": "package", + "path": "system.globalization.calendars/4.0.0", "files": [ "System.Globalization.Calendars.4.0.0.nupkg.sha512", "System.Globalization.Calendars.nuspec", @@ -13441,6 +13477,7 @@ "System.Globalization.Extensions/4.0.0": { "sha512": "rqbUXiwpBCvJ18ySCsjh20zleazO+6fr3s5GihC2sVwhyS0MUl6+oc5Rzk0z6CKkS4kmxbZQSeZLsK7cFSO0ng==", "type": "package", + "path": "system.globalization.extensions/4.0.0", "files": [ "System.Globalization.Extensions.4.0.0.nupkg.sha512", "System.Globalization.Extensions.nuspec", @@ -13471,6 +13508,7 @@ "System.IO/4.0.10": { "sha512": "kghf1CeYT+W2lw8a50/GxFz5HR9t6RkL4BvjxtTp1NxtEFWywnMA9W8FH/KYXiDNThcw9u/GOViDON4iJFGXIQ==", "type": "package", + "path": "system.io/4.0.10", "files": [ "System.IO.4.0.10.nupkg.sha512", "System.IO.nuspec", @@ -13503,6 +13541,7 @@ "System.IO.Compression/4.0.0": { "sha512": "S+ljBE3py8pujTrsOOYHtDg2cnAifn6kBu/pfh1hMWIXd8DoVh0ADTA6Puv4q+nYj+Msm6JoFLNwuRSmztbsDQ==", "type": "package", + "path": "system.io.compression/4.0.0", "files": [ "System.IO.Compression.4.0.0.nupkg.sha512", "System.IO.Compression.nuspec", @@ -13541,6 +13580,7 @@ "System.IO.Compression.clrcompression-arm/4.0.0": { "sha512": "Kk21GecAbI+H6tMP6/lMssGObbhoHwLiREiB5UkNMCypdxACuF+6gmrdDTousCUcbH28CJeo7tArrnUc+bchuw==", "type": "package", + "path": "system.io.compression.clrcompression-arm/4.0.0", "files": [ "System.IO.Compression.clrcompression-arm.4.0.0.nupkg.sha512", "System.IO.Compression.clrcompression-arm.nuspec", @@ -13551,6 +13591,7 @@ "System.IO.Compression.clrcompression-x64/4.0.0": { "sha512": "Lqr+URMwKzf+8HJF6YrqEqzKzDzFJTE4OekaxqdIns71r8Ufbd8SbZa0LKl9q+7nu6Em4SkIEXVMB7plSXekOw==", "type": "package", + "path": "system.io.compression.clrcompression-x64/4.0.0", "files": [ "System.IO.Compression.clrcompression-x64.4.0.0.nupkg.sha512", "System.IO.Compression.clrcompression-x64.nuspec", @@ -13561,6 +13602,7 @@ "System.IO.Compression.clrcompression-x86/4.0.0": { "sha512": "GmevpuaMRzYDXHu+xuV10fxTO8DsP7OKweWxYtkaxwVnDSj9X6RBupSiXdiveq9yj/xjZ1NbG+oRRRb99kj+VQ==", "type": "package", + "path": "system.io.compression.clrcompression-x86/4.0.0", "files": [ "System.IO.Compression.clrcompression-x86.4.0.0.nupkg.sha512", "System.IO.Compression.clrcompression-x86.nuspec", @@ -13571,6 +13613,7 @@ "System.IO.Compression.ZipFile/4.0.0": { "sha512": "pwntmtsJqtt6Lez4Iyv4GVGW6DaXUTo9Rnlsx0MFagRgX+8F/sxG5S/IzDJabBj68sUWViz1QJrRZL4V9ngWDg==", "type": "package", + "path": "system.io.compression.zipfile/4.0.0", "files": [ "System.IO.Compression.ZipFile.4.0.0.nupkg.sha512", "System.IO.Compression.ZipFile.nuspec", @@ -13601,6 +13644,7 @@ "System.IO.FileSystem/4.0.0": { "sha512": "eo05SPWfG+54UA0wxgRIYOuOslq+2QrJLXZaJDDsfLXG15OLguaItW39NYZTqUb4DeGOkU4R0wpOLOW4ynMUDQ==", "type": "package", + "path": "system.io.filesystem/4.0.0", "files": [ "System.IO.FileSystem.4.0.0.nupkg.sha512", "System.IO.FileSystem.nuspec", @@ -13632,6 +13676,7 @@ "System.IO.FileSystem.Primitives/4.0.0": { "sha512": "7pJUvYi/Yq3A5nagqCCiOw3+aJp3xXc/Cjr8dnJDnER3/6kX3LEencfqmXUcPl9+7OvRNyPMNhqsLAcMK6K/KA==", "type": "package", + "path": "system.io.filesystem.primitives/4.0.0", "files": [ "System.IO.FileSystem.Primitives.4.0.0.nupkg.sha512", "System.IO.FileSystem.Primitives.nuspec", @@ -13662,6 +13707,7 @@ "System.IO.IsolatedStorage/4.0.0": { "sha512": "d5KimUbZ49Ki6A/uwU+Iodng+nhJvpRs7hr/828cfeXC02LxUiggnRnAu+COtWcKvJ2YbBmAGOcO4GLK4fX1+w==", "type": "package", + "path": "system.io.isolatedstorage/4.0.0", "files": [ "System.IO.IsolatedStorage.4.0.0.nupkg.sha512", "System.IO.IsolatedStorage.nuspec", @@ -13690,6 +13736,7 @@ "System.IO.UnmanagedMemoryStream/4.0.0": { "sha512": "i2xczgQfwHmolORBNHxV9b5izP8VOBxgSA2gf+H55xBvwqtR+9r9adtzlc7at0MAwiLcsk6V1TZlv2vfRQr8Sw==", "type": "package", + "path": "system.io.unmanagedmemorystream/4.0.0", "files": [ "System.IO.UnmanagedMemoryStream.4.0.0.nupkg.sha512", "System.IO.UnmanagedMemoryStream.nuspec", @@ -13720,6 +13767,7 @@ "System.Linq/4.0.0": { "sha512": "r6Hlc+ytE6m/9UBr+nNRRdoJEWjoeQiT3L3lXYFDHoXk3VYsRBCDNXrawcexw7KPLaH0zamQLiAb6avhZ50cGg==", "type": "package", + "path": "system.linq/4.0.0", "files": [ "System.Linq.4.0.0.nupkg.sha512", "System.Linq.nuspec", @@ -13751,6 +13799,7 @@ "System.Linq.Expressions/4.0.10": { "sha512": "qhFkPqRsTfXBaacjQhxwwwUoU7TEtwlBIULj7nG7i4qAkvivil31VvOvDKppCSui5yGw0/325ZeNaMYRvTotXw==", "type": "package", + "path": "system.linq.expressions/4.0.10", "files": [ "System.Linq.Expressions.4.0.10.nupkg.sha512", "System.Linq.Expressions.nuspec", @@ -13784,6 +13833,7 @@ "System.Linq.Parallel/4.0.0": { "sha512": "PtH7KKh1BbzVow4XY17pnrn7Io63ApMdwzRE2o2HnzsKQD/0o7X5xe6mxrDUqTm9ZCR3/PNhAlP13VY1HnHsbA==", "type": "package", + "path": "system.linq.parallel/4.0.0", "files": [ "System.Linq.Parallel.4.0.0.nupkg.sha512", "System.Linq.Parallel.nuspec", @@ -13813,6 +13863,7 @@ "System.Linq.Queryable/4.0.0": { "sha512": "DIlvCNn3ucFvwMMzXcag4aFnFJ1fdxkQ5NqwJe9Nh7y8ozzhDm07YakQL/yoF3P1dLzY1T2cTpuwbAmVSdXyBA==", "type": "package", + "path": "system.linq.queryable/4.0.0", "files": [ "System.Linq.Queryable.4.0.0.nupkg.sha512", "System.Linq.Queryable.nuspec", @@ -13844,6 +13895,7 @@ "System.Net.Http/4.0.0": { "sha512": "mZuAl7jw/mFY8jUq4ITKECxVBh9a8SJt9BC/+lJbmo7cRKspxE3PsITz+KiaCEsexN5WYPzwBOx0oJH/0HlPyQ==", "type": "package", + "path": "system.net.http/4.0.0", "files": [ "System.Net.Http.4.0.0.nupkg.sha512", "System.Net.Http.nuspec", @@ -13873,6 +13925,7 @@ "System.Net.Http.Rtc/4.0.0": { "sha512": "PlE+oJgXdbxPmZYR6GBywRkyIPovjB1Y0SYHizj2Iflgu80uJQC4szl9gue4rKI2FgXiEbj9JL7wL5K3mp9HAQ==", "type": "package", + "path": "system.net.http.rtc/4.0.0", "files": [ "System.Net.Http.Rtc.4.0.0.nupkg.sha512", "System.Net.Http.Rtc.nuspec", @@ -13897,6 +13950,7 @@ "System.Net.NetworkInformation/4.0.0": { "sha512": "D68KCf5VK1G1GgFUwD901gU6cnMITksOdfdxUCt9ReCZfT1pigaDqjJ7XbiLAM4jm7TfZHB7g5mbOf1mbG3yBA==", "type": "package", + "path": "system.net.networkinformation/4.0.0", "files": [ "System.Net.NetworkInformation.4.0.0.nupkg.sha512", "System.Net.NetworkInformation.nuspec", @@ -13935,6 +13989,7 @@ "System.Net.Primitives/4.0.10": { "sha512": "YQqIpmMhnKjIbT7rl6dlf7xM5DxaMR+whduZ9wKb9OhMLjoueAJO3HPPJI+Naf3v034kb+xZqdc3zo44o3HWcg==", "type": "package", + "path": "system.net.primitives/4.0.10", "files": [ "System.Net.Primitives.4.0.10.nupkg.sha512", "System.Net.Primitives.nuspec", @@ -13966,6 +14021,7 @@ "System.Net.Requests/4.0.10": { "sha512": "A6XBR7TztiIQg6hx7VGfbBKmRTAavUERm2E7pmNz/gZeGvwyP0lcKHZxylJtNVKj7DPwr91bD87oLY6zZYntcg==", "type": "package", + "path": "system.net.requests/4.0.10", "files": [ "System.Net.Requests.4.0.10.nupkg.sha512", "System.Net.Requests.nuspec", @@ -13996,6 +14052,7 @@ "System.Net.Sockets/4.0.0": { "sha512": "7bBNLdO6Xw0BGyFVSxjloGXMvsc3qQmW+70bYMLwHEAVivMK8zx+E7XO8CeJnAko2mFj6R402E798EGYUksFcQ==", "type": "package", + "path": "system.net.sockets/4.0.0", "files": [ "System.Net.Sockets.4.0.0.nupkg.sha512", "System.Net.Sockets.nuspec", @@ -14026,6 +14083,7 @@ "System.Net.WebHeaderCollection/4.0.0": { "sha512": "IsIZAsHm/yK7R/XASnEc4EMffFLIMgYchG3/zJv6B4LwMnXZwrVlSPpNbPgEVb0lSXyztsn7A6sIPAACQQ2vTQ==", "type": "package", + "path": "system.net.webheadercollection/4.0.0", "files": [ "System.Net.WebHeaderCollection.4.0.0.nupkg.sha512", "System.Net.WebHeaderCollection.nuspec", @@ -14056,6 +14114,7 @@ "System.Numerics.Vectors/4.1.0": { "sha512": "jpubR06GWPoZA0oU5xLM7kHeV59/CKPBXZk4Jfhi0T3DafxbrdueHZ8kXlb+Fb5nd3DAyyMh2/eqEzLX0xv6Qg==", "type": "package", + "path": "system.numerics.vectors/4.1.0", "files": [ "System.Numerics.Vectors.4.1.0.nupkg.sha512", "System.Numerics.Vectors.nuspec", @@ -14076,6 +14135,7 @@ "System.Numerics.Vectors.WindowsRuntime/4.0.0": { "sha512": "Ly7GvoPFZq6GyfZpfS0E7uCk1cinl5BANAngXVuau3lD2QqZJMHitzlPv6n1FlIn6krfv99X2IPkIaVzUwDHXA==", "type": "package", + "path": "system.numerics.vectors.windowsruntime/4.0.0", "files": [ "System.Numerics.Vectors.WindowsRuntime.4.0.0.nupkg.sha512", "System.Numerics.Vectors.WindowsRuntime.nuspec", @@ -14085,6 +14145,7 @@ "System.ObjectModel/4.0.10": { "sha512": "Djn1wb0vP662zxbe+c3mOhvC4vkQGicsFs1Wi0/GJJpp3Eqp+oxbJ+p2Sx3O0efYueggAI5SW+BqEoczjfr1cA==", "type": "package", + "path": "system.objectmodel/4.0.10", "files": [ "System.ObjectModel.4.0.10.nupkg.sha512", "System.ObjectModel.nuspec", @@ -14115,6 +14176,7 @@ "System.Private.DataContractSerialization/4.1.0": { "sha512": "jihi0lC7TMGx8QtMuz3tRFoXdP0BHbceAdd3gvRbNnxM3W93jSRE/cocQyGf64wlC/1etjHKPwnwdu+PDJkjnA==", "type": "package", + "path": "system.private.datacontractserialization/4.1.0", "files": [ "System.Private.DataContractSerialization.4.1.0.nupkg.sha512", "System.Private.DataContractSerialization.nuspec", @@ -14128,6 +14190,7 @@ "System.Private.Networking/4.0.0": { "sha512": "RUEqdBdJjISC65dO8l4LdN7vTdlXH+attUpKnauDUHVtLbIKdlDB9LKoLzCQsTQRP7vzUJHWYXznHJBkjAA7yA==", "type": "package", + "path": "system.private.networking/4.0.0", "files": [ "System.Private.Networking.4.0.0.nupkg.sha512", "System.Private.Networking.nuspec", @@ -14140,6 +14203,7 @@ "System.Private.ServiceModel/4.0.0": { "sha512": "cm2wEa1f9kuUq/2k8uIwepgZJi5HdxXSnjGQIeXmAb7RaWfZPEC/iamv9GJ67b5LPnCZHR0KvtFqh82e8AAYSw==", "type": "package", + "path": "system.private.servicemodel/4.0.0", "files": [ "System.Private.ServiceModel.4.0.0.nupkg.sha512", "System.Private.ServiceModel.nuspec", @@ -14152,6 +14216,7 @@ "System.Private.Uri/4.0.0": { "sha512": "CtuxaCKcRIvPcsqquVl3mPp79EDZPMr2UogfiFCxCs+t2z1VjbpQsKNs1GHZ8VQetqbk1mr0V1yAfMe6y8CHDA==", "type": "package", + "path": "system.private.uri/4.0.0", "files": [ "System.Private.Uri.4.0.0.nupkg.sha512", "System.Private.Uri.nuspec", @@ -14165,6 +14230,7 @@ "System.Reflection/4.0.10": { "sha512": "WZ+4lEE4gqGx6mrqLhSiW4oi6QLPWwdNjzhhTONmhELOrW8Cw9phlO9tltgvRUuQUqYtBiliFwhO5S5fCJElVw==", "type": "package", + "path": "system.reflection/4.0.10", "files": [ "System.Reflection.4.0.10.nupkg.sha512", "System.Reflection.nuspec", @@ -14197,6 +14263,7 @@ "System.Reflection.Context/4.0.0": { "sha512": "Gz4sUHHFd/52RjHccSHbOXdujJEWKfL3gIaA+ekxvQaQfJGbI2tPzA0Uv3WTCTDRGHgtoNq5WS9E007Dt4P/VQ==", "type": "package", + "path": "system.reflection.context/4.0.0", "files": [ "System.Reflection.Context.4.0.0.nupkg.sha512", "System.Reflection.Context.nuspec", @@ -14223,6 +14290,7 @@ "System.Reflection.DispatchProxy/4.0.0": { "sha512": "Kd/4o6DqBfJA4058X8oGEu1KlT8Ej0A+WGeoQgZU2h+3f2vC8NRbHxeOSZvxj9/MPZ1RYmZMGL1ApO9xG/4IVA==", "type": "package", + "path": "system.reflection.dispatchproxy/4.0.0", "files": [ "System.Reflection.DispatchProxy.4.0.0.nupkg.sha512", "System.Reflection.DispatchProxy.nuspec", @@ -14255,6 +14323,7 @@ "System.Reflection.Emit/4.0.0": { "sha512": "CqnQz5LbNbiSxN10cv3Ehnw3j1UZOBCxnE0OO0q/keGQ5ENjyFM6rIG4gm/i0dX6EjdpYkAgKcI/mhZZCaBq4A==", "type": "package", + "path": "system.reflection.emit/4.0.0", "files": [ "System.Reflection.Emit.4.0.0.nupkg.sha512", "System.Reflection.Emit.nuspec", @@ -14282,6 +14351,7 @@ "System.Reflection.Emit.ILGeneration/4.0.0": { "sha512": "02okuusJ0GZiHZSD2IOLIN41GIn6qOr7i5+86C98BPuhlwWqVABwebiGNvhDiXP1f9a6CxEigC7foQD42klcDg==", "type": "package", + "path": "system.reflection.emit.ilgeneration/4.0.0", "files": [ "System.Reflection.Emit.ILGeneration.4.0.0.nupkg.sha512", "System.Reflection.Emit.ILGeneration.nuspec", @@ -14307,6 +14377,7 @@ "System.Reflection.Emit.Lightweight/4.0.0": { "sha512": "DJZhHiOdkN08xJgsJfDjkuOreLLmMcU8qkEEqEHqyhkPUZMMQs0lE8R+6+68BAFWgcdzxtNu0YmIOtEug8j00w==", "type": "package", + "path": "system.reflection.emit.lightweight/4.0.0", "files": [ "System.Reflection.Emit.Lightweight.4.0.0.nupkg.sha512", "System.Reflection.Emit.Lightweight.nuspec", @@ -14332,6 +14403,7 @@ "System.Reflection.Extensions/4.0.0": { "sha512": "dbYaZWCyFAu1TGYUqR2n+Q+1casSHPR2vVW0WVNkXpZbrd2BXcZ7cpvpu9C98CTHtNmyfMWCLpCclDqly23t6A==", "type": "package", + "path": "system.reflection.extensions/4.0.0", "files": [ "System.Reflection.Extensions.4.0.0.nupkg.sha512", "System.Reflection.Extensions.nuspec", @@ -14364,6 +14436,7 @@ "System.Reflection.Metadata/1.0.22": { "sha512": "ltoL/teiEdy5W9fyYdtFr2xJ/4nHyksXLK9dkPWx3ubnj7BVfsSWxvWTg9EaJUXjhWvS/AeTtugZA1/IDQyaPQ==", "type": "package", + "path": "system.reflection.metadata/1.0.22", "files": [ "System.Reflection.Metadata.1.0.22.nupkg.sha512", "System.Reflection.Metadata.nuspec", @@ -14376,6 +14449,7 @@ "System.Reflection.Primitives/4.0.0": { "sha512": "n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==", "type": "package", + "path": "system.reflection.primitives/4.0.0", "files": [ "System.Reflection.Primitives.4.0.0.nupkg.sha512", "System.Reflection.Primitives.nuspec", @@ -14408,6 +14482,7 @@ "System.Reflection.TypeExtensions/4.0.0": { "sha512": "YRM/msNAM86hdxPyXcuZSzmTO0RQFh7YMEPBLTY8cqXvFPYIx2x99bOyPkuU81wRYQem1c1HTkImQ2DjbOBfew==", "type": "package", + "path": "system.reflection.typeextensions/4.0.0", "files": [ "System.Reflection.TypeExtensions.4.0.0.nupkg.sha512", "System.Reflection.TypeExtensions.nuspec", @@ -14440,6 +14515,7 @@ "System.Resources.ResourceManager/4.0.0": { "sha512": "qmqeZ4BJgjfU+G2JbrZt4Dk1LsMxO4t+f/9HarNY6w8pBgweO6jT+cknUH7c3qIrGvyUqraBhU45Eo6UtA0fAw==", "type": "package", + "path": "system.resources.resourcemanager/4.0.0", "files": [ "System.Resources.ResourceManager.4.0.0.nupkg.sha512", "System.Resources.ResourceManager.nuspec", @@ -14472,6 +14548,7 @@ "System.Runtime/4.0.20": { "sha512": "X7N/9Bz7jVPorqdVFO86ns1sX6MlQM+WTxELtx+Z4VG45x9+LKmWH0GRqjgKprUnVuwmfB9EJ9DQng14Z7/zwg==", "type": "package", + "path": "system.runtime/4.0.20", "files": [ "System.Runtime.4.0.20.nupkg.sha512", "System.Runtime.nuspec", @@ -14504,6 +14581,7 @@ "System.Runtime.Extensions/4.0.10": { "sha512": "5dsEwf3Iml7d5OZeT20iyOjT+r+okWpN7xI2v+R4cgd3WSj4DeRPTvPFjDpacbVW4skCAZ8B9hxXJYgkCFKJ1A==", "type": "package", + "path": "system.runtime.extensions/4.0.10", "files": [ "System.Runtime.Extensions.4.0.10.nupkg.sha512", "System.Runtime.Extensions.nuspec", @@ -14536,6 +14614,7 @@ "System.Runtime.Handles/4.0.0": { "sha512": "638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==", "type": "package", + "path": "system.runtime.handles/4.0.0", "files": [ "System.Runtime.Handles.4.0.0.nupkg.sha512", "System.Runtime.Handles.nuspec", @@ -14568,6 +14647,7 @@ "System.Runtime.InteropServices/4.0.20": { "sha512": "ZgDyBYfEnjWoz/viS6VOswA6XOkDSH2DzgbpczbW50RywhnCgTl+w3JEvtAiOGyIh8cyx1NJq80jsNBSUr8Pig==", "type": "package", + "path": "system.runtime.interopservices/4.0.20", "files": [ "System.Runtime.InteropServices.4.0.20.nupkg.sha512", "System.Runtime.InteropServices.nuspec", @@ -14600,6 +14680,7 @@ "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { "sha512": "K5MGSvw/sGPKQYdOVqSpsVbHBE8HccHIDEhUNjM1lui65KGF/slNZfijGU87ggQiVXTI802ebKiOYBkwiLotow==", "type": "package", + "path": "system.runtime.interopservices.windowsruntime/4.0.0", "files": [ "System.Runtime.InteropServices.WindowsRuntime.4.0.0.nupkg.sha512", "System.Runtime.InteropServices.WindowsRuntime.nuspec", @@ -14631,6 +14712,7 @@ "System.Runtime.Numerics/4.0.0": { "sha512": "aAYGEOE01nabQLufQ4YO8WuSyZzOqGcksi8m1BRW8ppkmssR7en8TqiXcBkB2gTkCnKG/Ai2NQY8CgdmgZw/fw==", "type": "package", + "path": "system.runtime.numerics/4.0.0", "files": [ "System.Runtime.Numerics.4.0.0.nupkg.sha512", "System.Runtime.Numerics.nuspec", @@ -14660,6 +14742,7 @@ "System.Runtime.Serialization.Json/4.0.1": { "sha512": "MUqpQDHlwFAy3v+fVzLN26SMGCPW/J2n4vfsBfScPiut/+Kp77Pcy1nWX2FC83WskFMepvmjMcXwTYZ75FCK0Q==", "type": "package", + "path": "system.runtime.serialization.json/4.0.1", "files": [ "System.Runtime.Serialization.Json.4.0.1.nupkg.sha512", "System.Runtime.Serialization.Json.nuspec", @@ -14711,6 +14794,7 @@ "System.Runtime.Serialization.Primitives/4.1.0": { "sha512": "2UBnpTwpEi5dzbNJ8KhbOZ7Te1XQNov9MrtJ+dcnqogjACPNzbOiGT2uU9XgZg+sdbPvr4VMvVjFwJ85uLLCuA==", "type": "package", + "path": "system.runtime.serialization.primitives/4.1.0", "files": [ "System.Runtime.Serialization.Primitives.4.1.0.nupkg.sha512", "System.Runtime.Serialization.Primitives.nuspec", @@ -14775,6 +14859,7 @@ "System.Runtime.Serialization.Xml/4.1.0": { "sha512": "7TvzeIeNvT2GLpmSy/3J1VIkT70MroNujIiBWBe0qeM6/QFPdCcF/1Zxx9Ohc/iZUPAANb1wMruCAiYY2HTTrg==", "type": "package", + "path": "system.runtime.serialization.xml/4.1.0", "files": [ "System.Runtime.Serialization.Xml.4.1.0.nupkg.sha512", "System.Runtime.Serialization.Xml.nuspec", @@ -14839,6 +14924,7 @@ "System.Runtime.WindowsRuntime/4.0.10": { "sha512": "9w6ypdnEw8RrLRlxTbLAYrap4eL1xIQeNoOaumQVOQ8TTD/5g9FGrBtY3KLiGxAPieN9AwAAEIDkugU85Cwuvg==", "type": "package", + "path": "system.runtime.windowsruntime/4.0.10", "files": [ "System.Runtime.WindowsRuntime.4.0.10.nupkg.sha512", "System.Runtime.WindowsRuntime.nuspec", @@ -14866,6 +14952,7 @@ "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { "sha512": "2GY3fkXBMQOyyO9ovaH46CN6MD2ck/Gvk4VNAgVDvtmfO3HXYFNd+bB05WhVcJrHKbfKZNwfwZKpYZ+OsVFsLw==", "type": "package", + "path": "system.runtime.windowsruntime.ui.xaml/4.0.0", "files": [ "System.Runtime.WindowsRuntime.UI.Xaml.4.0.0.nupkg.sha512", "System.Runtime.WindowsRuntime.UI.Xaml.nuspec", @@ -14892,6 +14979,7 @@ "System.Security.Claims/4.0.0": { "sha512": "94NFR/7JN3YdyTH7hl2iSvYmdA8aqShriTHectcK+EbizT71YczMaG6LuqJBQP/HWo66AQyikYYM9aw+4EzGXg==", "type": "package", + "path": "system.security.claims/4.0.0", "files": [ "System.Security.Claims.4.0.0.nupkg.sha512", "System.Security.Claims.nuspec", @@ -14922,6 +15010,7 @@ "System.Security.Principal/4.0.0": { "sha512": "FOhq3jUOONi6fp5j3nPYJMrKtSJlqAURpjiO3FaDIV4DJNEYymWW5uh1pfxySEB8dtAW+I66IypzNge/w9OzZQ==", "type": "package", + "path": "system.security.principal/4.0.0", "files": [ "System.Security.Principal.4.0.0.nupkg.sha512", "System.Security.Principal.nuspec", @@ -14953,6 +15042,7 @@ "System.ServiceModel.Duplex/4.0.0": { "sha512": "JFeDn+IsiwAVJkNNnM7MLefJOnzYhovaHnjk3lzEnUWkYZJeAKrcgLdK6GE2GNjb5mEV8Pad/E0JcA8eCr3eWQ==", "type": "package", + "path": "system.servicemodel.duplex/4.0.0", "files": [ "System.ServiceModel.Duplex.4.0.0.nupkg.sha512", "System.ServiceModel.Duplex.nuspec", @@ -14980,6 +15070,7 @@ "System.ServiceModel.Http/4.0.10": { "sha512": "Vyl7lmvMlXJamtnDugoXuAgAQGSqtA7omK3zDBYByhbYeBC2hRBchgyXox7e5vEO+29TeB1IpoLWQGb7tO9h6A==", "type": "package", + "path": "system.servicemodel.http/4.0.10", "files": [ "System.ServiceModel.Http.4.0.10.nupkg.sha512", "System.ServiceModel.Http.nuspec", @@ -15011,6 +15102,7 @@ "System.ServiceModel.NetTcp/4.0.0": { "sha512": "lV2Cdcso9jOS0KBtgHZHzTLe/Lx/ERdPcvF4dlepUie6/+BOMYTOgg2C7OdpIjp3fwUNXq8nhU+IilmEyjuf/A==", "type": "package", + "path": "system.servicemodel.nettcp/4.0.0", "files": [ "System.ServiceModel.NetTcp.4.0.0.nupkg.sha512", "System.ServiceModel.NetTcp.nuspec", @@ -15038,6 +15130,7 @@ "System.ServiceModel.Primitives/4.0.0": { "sha512": "uF5VYQWR07LgiZkzUr8qjwvqOaIAfwU566MneD4WuC14d8FLJNsAgCJUYhBGB7COjH7HTqnP9ZFmr6c+L83Stg==", "type": "package", + "path": "system.servicemodel.primitives/4.0.0", "files": [ "System.ServiceModel.Primitives.4.0.0.nupkg.sha512", "System.ServiceModel.Primitives.nuspec", @@ -15065,6 +15158,7 @@ "System.ServiceModel.Security/4.0.0": { "sha512": "sPVzsnd8w/TJsW/4sYA9eIGP+RtlpN0AhKLGKf9ywdGGmHPi0kkuX2mx412dM3GN0e4oifuISwvZqby/sI8Feg==", "type": "package", + "path": "system.servicemodel.security/4.0.0", "files": [ "System.ServiceModel.Security.4.0.0.nupkg.sha512", "System.ServiceModel.Security.nuspec", @@ -15092,6 +15186,7 @@ "System.Text.Encoding/4.0.10": { "sha512": "fNlSFgy4OuDlJrP9SFFxMlaLazq6ipv15sU5TiEgg9UCVnA/OgoVUfymFp4AOk1jOkW5SVxWbeeIUptcM+m/Vw==", "type": "package", + "path": "system.text.encoding/4.0.10", "files": [ "System.Text.Encoding.4.0.10.nupkg.sha512", "System.Text.Encoding.nuspec", @@ -15124,6 +15219,7 @@ "System.Text.Encoding.CodePages/4.0.0": { "sha512": "ZHBTr1AXLjY9OuYR7pKx5xfN6QFye1kgd5QAbGrvfCOu7yxRnJs3VUaxERe1fOlnF0mi/xD/Dvb3T3x3HNuPWQ==", "type": "package", + "path": "system.text.encoding.codepages/4.0.0", "files": [ "System.Text.Encoding.CodePages.4.0.0.nupkg.sha512", "System.Text.Encoding.CodePages.nuspec", @@ -15152,6 +15248,7 @@ "System.Text.Encoding.Extensions/4.0.10": { "sha512": "TZvlwXMxKo3bSRIcsWZLCIzIhLbvlz+mGeKYRZv/zUiSoQzGOwkYeBu6hOw2XPQgKqT0F4Rv8zqKdvmp2fWKYg==", "type": "package", + "path": "system.text.encoding.extensions/4.0.10", "files": [ "System.Text.Encoding.Extensions.4.0.10.nupkg.sha512", "System.Text.Encoding.Extensions.nuspec", @@ -15184,6 +15281,7 @@ "System.Text.RegularExpressions/4.0.10": { "sha512": "0vDuHXJePpfMCecWBNOabOKCvzfTbFMNcGgklt3l5+RqHV5SzmF7RUVpuet8V0rJX30ROlL66xdehw2Rdsn2DA==", "type": "package", + "path": "system.text.regularexpressions/4.0.10", "files": [ "System.Text.RegularExpressions.4.0.10.nupkg.sha512", "System.Text.RegularExpressions.nuspec", @@ -15214,6 +15312,7 @@ "System.Threading/4.0.10": { "sha512": "0w6pRxIEE7wuiOJeKabkDgeIKmqf4ER1VNrs6qFwHnooEE78yHwi/bKkg5Jo8/pzGLm0xQJw0nEmPXt1QBAIUA==", "type": "package", + "path": "system.threading/4.0.10", "files": [ "System.Threading.4.0.10.nupkg.sha512", "System.Threading.nuspec", @@ -15246,6 +15345,7 @@ "System.Threading.Overlapped/4.0.0": { "sha512": "X5LuQFhM5FTqaez3eXKJ9CbfSGZ7wj6j4hSVtxct3zmwQXLqG95qoWdvILcgN7xtrDOBIFtpiyDg0vmoI0jE2A==", "type": "package", + "path": "system.threading.overlapped/4.0.0", "files": [ "System.Threading.Overlapped.4.0.0.nupkg.sha512", "System.Threading.Overlapped.nuspec", @@ -15269,6 +15369,7 @@ "System.Threading.Tasks/4.0.10": { "sha512": "NOwJGDfk79jR0bnzosbXLVD/PdI8KzBeESoa3CofEM5v9R5EBfcI0Jyf18stx+0IYV9okmDIDxVtxq9TbnR9bQ==", "type": "package", + "path": "system.threading.tasks/4.0.10", "files": [ "System.Threading.Tasks.4.0.10.nupkg.sha512", "System.Threading.Tasks.nuspec", @@ -15301,6 +15402,7 @@ "System.Threading.Tasks.Dataflow/4.5.25": { "sha512": "Y5/Dj+tYlDxHBwie7bFKp3+1uSG4vqTJRF7Zs7kaUQ3ahYClffCTxvgjrJyPclC+Le55uE7bMLgjZQVOQr3Jfg==", "type": "package", + "path": "system.threading.tasks.dataflow/4.5.25", "files": [ "System.Threading.Tasks.Dataflow.4.5.25.nupkg.sha512", "System.Threading.Tasks.Dataflow.nuspec", @@ -15315,6 +15417,7 @@ "System.Threading.Tasks.Parallel/4.0.0": { "sha512": "GXDhjPhF3nE4RtDia0W6JR4UMdmhOyt9ibHmsNV6GLRT4HAGqU636Teo4tqvVQOFp2R6b1ffxPXiRaoqtzGxuA==", "type": "package", + "path": "system.threading.tasks.parallel/4.0.0", "files": [ "System.Threading.Tasks.Parallel.4.0.0.nupkg.sha512", "System.Threading.Tasks.Parallel.nuspec", @@ -15344,6 +15447,7 @@ "System.Threading.Timer/4.0.0": { "sha512": "BIdJH5/e4FnVl7TkRUiE3pWytp7OYiRUGtwUbyLewS/PhKiLepFetdtlW+FvDYOVn60Q2NMTrhHhJ51q+sVW5g==", "type": "package", + "path": "system.threading.timer/4.0.0", "files": [ "System.Threading.Timer.4.0.0.nupkg.sha512", "System.Threading.Timer.nuspec", @@ -15374,6 +15478,7 @@ "System.Xml.ReaderWriter/4.0.10": { "sha512": "VdmWWMH7otrYV7D+cviUo7XjX0jzDnD/lTGSZTlZqfIQ5PhXk85j+6P0TK9od3PnOd5ZIM+pOk01G/J+3nh9/w==", "type": "package", + "path": "system.xml.readerwriter/4.0.10", "files": [ "System.Xml.ReaderWriter.4.0.10.nupkg.sha512", "System.Xml.ReaderWriter.nuspec", @@ -15404,6 +15509,7 @@ "System.Xml.XDocument/4.0.10": { "sha512": "+ej0g0INnXDjpS2tDJsLO7/BjyBzC+TeBXLeoGnvRrm4AuBH9PhBjjZ1IuKWOhCkxPkFognUOKhZHS2glIOlng==", "type": "package", + "path": "system.xml.xdocument/4.0.10", "files": [ "System.Xml.XDocument.4.0.10.nupkg.sha512", "System.Xml.XDocument.nuspec", @@ -15434,6 +15540,7 @@ "System.Xml.XmlDocument/4.0.0": { "sha512": "H5qTx2+AXgaKE5wehU1ZYeYPFpp/rfFh69/937NvwCrDqbIkvJRmIFyKKpkoMI6gl9hGfuVizfIudVTMyowCXw==", "type": "package", + "path": "system.xml.xmldocument/4.0.0", "files": [ "System.Xml.XmlDocument.4.0.0.nupkg.sha512", "System.Xml.XmlDocument.nuspec", @@ -15464,6 +15571,7 @@ "System.Xml.XmlSerializer/4.0.10": { "sha512": "OKhE6vruk88z/hl0lmfrMvXteTASgJUagu6PT6S10i9uLbvDR3pTwB6jVgiwa2D2qtTB+eneZbS9jljhPXhTtg==", "type": "package", + "path": "system.xml.xmlserializer/4.0.10", "files": [ "System.Xml.XmlSerializer.4.0.10.nupkg.sha512", "System.Xml.XmlSerializer.nuspec", @@ -15500,5 +15608,43 @@ "Microsoft.NETCore.UniversalWindowsPlatform >= 5.1.0" ], "UAP,Version=v10.0": [] + }, + "packageFolders": { + "C:\\Users\\matin\\.nuget\\packages\\": {} + }, + "project": { + "restore": { + "projectUniqueName": "D:\\matin\\Documents\\Visual Studio 2013\\Projects\\FooEditEngine\\UWP\\FooEditEngine.UWP\\FooEditEngine.UWP.csproj", + "projectName": "FooEditEngine.UWP", + "projectPath": "D:\\matin\\Documents\\Visual Studio 2013\\Projects\\FooEditEngine\\UWP\\FooEditEngine.UWP\\FooEditEngine.UWP.csproj", + "projectJsonPath": "D:\\matin\\Documents\\Visual Studio 2013\\Projects\\FooEditEngine\\UWP\\FooEditEngine.UWP\\project.json", + "projectStyle": "ProjectJson" + }, + "dependencies": { + "Microsoft.NETCore.UniversalWindowsPlatform": "5.1.0" + }, + "frameworks": { + "uap10.0": {} + }, + "runtimes": { + "win10-arm": { + "#import": [] + }, + "win10-arm-aot": { + "#import": [] + }, + "win10-x64": { + "#import": [] + }, + "win10-x64-aot": { + "#import": [] + }, + "win10-x86": { + "#import": [] + }, + "win10-x86-aot": { + "#import": [] + } + } } } \ No newline at end of file diff --git a/UWP/Test/project.lock.json b/UWP/Test/project.lock.json index 6d77fcb..551a5c4 100644 --- a/UWP/Test/project.lock.json +++ b/UWP/Test/project.lock.json @@ -1,9 +1,9 @@ { - "locked": false, - "version": 1, + "version": 2, "targets": { "UAP,Version=v10.0": { "Microsoft.CSharp/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -30,6 +30,7 @@ } }, "Microsoft.NETCore/5.0.0": { + "type": "package", "dependencies": { "Microsoft.CSharp": "4.0.0", "Microsoft.NETCore.Targets": "1.0.0", @@ -88,8 +89,11 @@ "System.Xml.XDocument": "4.0.10" } }, - "Microsoft.NETCore.Platforms/1.0.0": {}, + "Microsoft.NETCore.Platforms/1.0.0": { + "type": "package" + }, "Microsoft.NETCore.Portable.Compatibility/1.0.0": { + "type": "package", "dependencies": { "Microsoft.NETCore.Runtime": "1.0.0" }, @@ -178,21 +182,30 @@ } }, "Microsoft.NETCore.Runtime/1.0.1": { + "type": "package", "dependencies": { "Microsoft.NETCore.Runtime.CoreCLR": "1.0.1", "Microsoft.NETCore.Runtime.Native": "1.0.1" } }, - "Microsoft.NETCore.Runtime.CoreCLR/1.0.1": {}, - "Microsoft.NETCore.Runtime.Native/1.0.1": {}, + "Microsoft.NETCore.Runtime.CoreCLR/1.0.1": { + "type": "package" + }, + "Microsoft.NETCore.Runtime.Native/1.0.1": { + "type": "package" + }, "Microsoft.NETCore.Targets/1.0.0": { + "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.0", "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "5.0.0" } }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {}, + "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": { + "type": "package" + }, "Microsoft.NETCore.UniversalWindowsPlatform/5.1.0": { + "type": "package", "dependencies": { "Microsoft.NETCore": "5.0.0", "Microsoft.NETCore.Portable.Compatibility": "1.0.0", @@ -225,6 +238,7 @@ } }, "Microsoft.VisualBasic/10.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -251,6 +265,7 @@ } }, "Microsoft.Win32.Primitives/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20", "System.Runtime.InteropServices": "4.0.20" @@ -263,6 +278,7 @@ } }, "System.AppContext/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Resources.ResourceManager": "4.0.0", @@ -277,6 +293,7 @@ } }, "System.Collections/4.0.10": { + "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.0", "System.Resources.ResourceManager": "4.0.0", @@ -298,6 +315,7 @@ } }, "System.Collections.Concurrent/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -317,6 +335,7 @@ } }, "System.Collections.Immutable/1.1.37": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.0", @@ -335,6 +354,7 @@ } }, "System.Collections.NonGeneric/4.0.0": { + "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.10", "System.Globalization": "4.0.10", @@ -351,6 +371,7 @@ } }, "System.Collections.Specialized/4.0.0": { + "type": "package", "dependencies": { "System.Collections.NonGeneric": "4.0.0", "System.Globalization": "4.0.10", @@ -368,6 +389,7 @@ } }, "System.ComponentModel/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20" }, @@ -379,6 +401,7 @@ } }, "System.ComponentModel.Annotations/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.ComponentModel": "4.0.0", @@ -400,6 +423,7 @@ } }, "System.ComponentModel.EventBasedAsync/4.0.10": { + "type": "package", "dependencies": { "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20", @@ -414,6 +438,7 @@ } }, "System.Data.Common/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Collections.NonGeneric": "4.0.0", @@ -433,6 +458,7 @@ } }, "System.Diagnostics.Contracts/4.0.0": { + "type": "package", "compile": { "ref/netcore50/System.Diagnostics.Contracts.dll": {} }, @@ -447,6 +473,7 @@ } }, "System.Diagnostics.Debug/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -464,6 +491,7 @@ } }, "System.Diagnostics.StackTrace/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20" }, @@ -481,6 +509,7 @@ } }, "System.Diagnostics.Tools/4.0.0": { + "type": "package", "compile": { "ref/netcore50/System.Diagnostics.Tools.dll": {} }, @@ -495,6 +524,7 @@ } }, "System.Diagnostics.Tracing/4.0.20": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Globalization": "4.0.0", @@ -521,6 +551,7 @@ } }, "System.Dynamic.Runtime/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.0", @@ -549,6 +580,7 @@ } }, "System.Globalization/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -566,6 +598,7 @@ } }, "System.Globalization.Calendars/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.0", "System.Runtime": "4.0.0" @@ -584,6 +617,7 @@ } }, "System.Globalization.Extensions/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.10", "System.Resources.ResourceManager": "4.0.0", @@ -599,6 +633,7 @@ } }, "System.IO/4.0.10": { + "type": "package", "dependencies": { "System.Globalization": "4.0.0", "System.Runtime": "4.0.20", @@ -621,6 +656,7 @@ } }, "System.IO.Compression/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.IO": "4.0.0", @@ -640,6 +676,7 @@ } }, "System.IO.Compression.ZipFile/4.0.0": { + "type": "package", "dependencies": { "System.IO": "4.0.10", "System.IO.Compression": "4.0.0", @@ -658,6 +695,7 @@ } }, "System.IO.FileSystem/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -683,6 +721,7 @@ } }, "System.IO.FileSystem.Primitives/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20" }, @@ -694,6 +733,7 @@ } }, "System.IO.IsolatedStorage/4.0.0": { + "type": "package", "dependencies": { "System.IO": "4.0.10", "System.IO.FileSystem": "4.0.0", @@ -713,6 +753,7 @@ } }, "System.IO.UnmanagedMemoryStream/4.0.0": { + "type": "package", "dependencies": { "System.IO": "4.0.10", "System.IO.FileSystem.Primitives": "4.0.0", @@ -730,6 +771,7 @@ } }, "System.Linq/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -745,6 +787,7 @@ } }, "System.Linq.Expressions/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.0", @@ -774,6 +817,7 @@ } }, "System.Linq.Parallel/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Collections.Concurrent": "4.0.10", @@ -794,6 +838,7 @@ } }, "System.Linq.Queryable/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Linq": "4.0.0", @@ -811,6 +856,7 @@ } }, "System.Net.Http/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -835,6 +881,7 @@ } }, "System.Net.Http.Rtc/4.0.0": { + "type": "package", "dependencies": { "System.Net.Http": "4.0.0", "System.Runtime": "4.0.20" @@ -847,6 +894,7 @@ } }, "System.Net.NetworkInformation/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0", "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", @@ -860,6 +908,7 @@ } }, "System.Net.Primitives/4.0.10": { + "type": "package", "dependencies": { "System.Private.Networking": "4.0.0", "System.Runtime": "4.0.20" @@ -872,6 +921,7 @@ } }, "System.Net.Requests/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -892,6 +942,7 @@ } }, "System.Net.Sockets/4.0.0": { + "type": "package", "dependencies": { "System.Private.Networking": "4.0.0", "System.Runtime": "4.0.20" @@ -904,6 +955,7 @@ } }, "System.Net.WebHeaderCollection/4.0.0": { + "type": "package", "dependencies": { "System.Collections.NonGeneric": "4.0.0", "System.Collections.Specialized": "4.0.0", @@ -918,6 +970,7 @@ } }, "System.Numerics.Vectors/4.1.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.10", "System.Resources.ResourceManager": "4.0.0", @@ -932,6 +985,7 @@ } }, "System.Numerics.Vectors.WindowsRuntime/4.0.0": { + "type": "package", "dependencies": { "System.Numerics.Vectors": "4.1.0", "System.Runtime": "4.0.20", @@ -945,6 +999,7 @@ } }, "System.ObjectModel/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -960,11 +1015,13 @@ } }, "System.Private.DataContractSerialization/4.1.0": { + "type": "package", "compile": { "ref/netcore50/_._": {} } }, "System.Private.Networking/4.0.0": { + "type": "package", "dependencies": { "Microsoft.Win32.Primitives": "4.0.0", "System.Collections": "4.0.10", @@ -992,6 +1049,7 @@ } }, "System.Private.ServiceModel/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Collections.Concurrent": "4.0.10", @@ -1040,6 +1098,7 @@ } }, "System.Private.Uri/4.0.0": { + "type": "package", "compile": { "ref/netcore50/_._": {} }, @@ -1054,6 +1113,7 @@ } }, "System.Reflection/4.0.10": { + "type": "package", "dependencies": { "System.IO": "4.0.0", "System.Reflection.Primitives": "4.0.0", @@ -1073,6 +1133,7 @@ } }, "System.Reflection.Context/4.0.0": { + "type": "package", "dependencies": { "System.Reflection": "4.0.10", "System.Resources.ResourceManager": "4.0.0", @@ -1086,6 +1147,7 @@ } }, "System.Reflection.DispatchProxy/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Linq": "4.0.0", @@ -1110,6 +1172,7 @@ } }, "System.Reflection.Extensions/4.0.0": { + "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.10", "System.Reflection": "4.0.10", @@ -1133,6 +1196,7 @@ } }, "System.Reflection.Metadata/1.0.22": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Collections.Immutable": "1.1.37", @@ -1157,6 +1221,7 @@ } }, "System.Reflection.Primitives/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0", "System.Threading": "4.0.0" @@ -1175,6 +1240,7 @@ } }, "System.Reflection.TypeExtensions/4.0.0": { + "type": "package", "dependencies": { "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", @@ -1199,6 +1265,7 @@ } }, "System.Resources.ResourceManager/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.0", "System.Reflection": "4.0.10", @@ -1218,6 +1285,7 @@ } }, "System.Runtime/4.0.20": { + "type": "package", "dependencies": { "System.Private.Uri": "4.0.0" }, @@ -1235,6 +1303,7 @@ } }, "System.Runtime.Extensions/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20" }, @@ -1252,6 +1321,7 @@ } }, "System.Runtime.Handles/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -1269,6 +1339,7 @@ } }, "System.Runtime.InteropServices/4.0.20": { + "type": "package", "dependencies": { "System.Reflection": "4.0.0", "System.Reflection.Primitives": "4.0.0", @@ -1289,6 +1360,7 @@ } }, "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { + "type": "package", "compile": { "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} }, @@ -1303,6 +1375,7 @@ } }, "System.Runtime.Numerics/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.10", "System.Resources.ResourceManager": "4.0.0", @@ -1317,6 +1390,7 @@ } }, "System.Runtime.Serialization.Json/4.0.1": { + "type": "package", "dependencies": { "System.IO": "4.0.0", "System.Private.DataContractSerialization": "4.1.0", @@ -1336,6 +1410,7 @@ } }, "System.Runtime.Serialization.Primitives/4.1.0": { + "type": "package", "dependencies": { "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20" @@ -1354,6 +1429,7 @@ } }, "System.Runtime.Serialization.Xml/4.1.0": { + "type": "package", "dependencies": { "System.IO": "4.0.0", "System.Private.DataContractSerialization": "4.1.0", @@ -1376,6 +1452,7 @@ } }, "System.Runtime.WindowsRuntime/4.0.10": { + "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.10", "System.Globalization": "4.0.0", @@ -1402,6 +1479,7 @@ } }, "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.0", "System.Resources.ResourceManager": "4.0.0", @@ -1417,6 +1495,7 @@ } }, "System.Security.Claims/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.0", @@ -1435,6 +1514,7 @@ } }, "System.Security.Principal/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -1446,6 +1526,7 @@ } }, "System.ServiceModel.Duplex/4.0.0": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -1458,6 +1539,7 @@ } }, "System.ServiceModel.Http/4.0.10": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -1470,6 +1552,7 @@ } }, "System.ServiceModel.NetTcp/4.0.0": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -1482,6 +1565,7 @@ } }, "System.ServiceModel.Primitives/4.0.0": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -1494,6 +1578,7 @@ } }, "System.ServiceModel.Security/4.0.0": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -1506,6 +1591,7 @@ } }, "System.Text.Encoding/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -1523,6 +1609,7 @@ } }, "System.Text.Encoding.CodePages/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Globalization": "4.0.10", @@ -1544,6 +1631,7 @@ } }, "System.Text.Encoding.Extensions/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0", "System.Text.Encoding": "4.0.10" @@ -1562,6 +1650,7 @@ } }, "System.Text.RegularExpressions/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Globalization": "4.0.10", @@ -1578,6 +1667,7 @@ } }, "System.Threading/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0", "System.Threading.Tasks": "4.0.0" @@ -1596,6 +1686,7 @@ } }, "System.Threading.Overlapped/4.0.0": { + "type": "package", "dependencies": { "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20", @@ -1612,6 +1703,7 @@ } }, "System.Threading.Tasks/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -1629,6 +1721,7 @@ } }, "System.Threading.Tasks.Dataflow/4.5.25": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Collections.Concurrent": "4.0.0", @@ -1650,6 +1743,7 @@ } }, "System.Threading.Tasks.Parallel/4.0.0": { + "type": "package", "dependencies": { "System.Collections.Concurrent": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -1668,6 +1762,7 @@ } }, "System.Threading.Timer/4.0.0": { + "type": "package", "compile": { "ref/netcore50/System.Threading.Timer.dll": {} }, @@ -1682,6 +1777,7 @@ } }, "System.Xml.ReaderWriter/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -1706,6 +1802,7 @@ } }, "System.Xml.XDocument/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -1727,6 +1824,7 @@ } }, "System.Xml.XmlDocument/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -1747,6 +1845,7 @@ } }, "System.Xml.XmlSerializer/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -1777,10 +1876,18 @@ "rid": "win8-aot" } } + }, + "FooEditEngine.UWP/1.0.0": { + "type": "project", + "framework": "UAP,Version=v10.0", + "dependencies": { + "Microsoft.NETCore.UniversalWindowsPlatform": "5.1.0" + } } }, "UAP,Version=v10.0/win10-arm": { "Microsoft.CSharp/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -1807,6 +1914,7 @@ } }, "Microsoft.NETCore/5.0.0": { + "type": "package", "dependencies": { "Microsoft.CSharp": "4.0.0", "Microsoft.NETCore.Targets": "1.0.0", @@ -1865,8 +1973,11 @@ "System.Xml.XDocument": "4.0.10" } }, - "Microsoft.NETCore.Platforms/1.0.0": {}, + "Microsoft.NETCore.Platforms/1.0.0": { + "type": "package" + }, "Microsoft.NETCore.Portable.Compatibility/1.0.0": { + "type": "package", "dependencies": { "Microsoft.NETCore.Runtime": "1.0.0" }, @@ -1901,25 +2012,33 @@ } }, "Microsoft.NETCore.Runtime/1.0.1": { + "type": "package", "dependencies": { "Microsoft.NETCore.Runtime.CoreCLR": "1.0.1", "Microsoft.NETCore.Runtime.Native": "1.0.1" } }, "Microsoft.NETCore.Runtime.CoreCLR/1.0.1": { + "type": "package", "dependencies": { "runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR": "1.0.1" } }, - "Microsoft.NETCore.Runtime.Native/1.0.1": {}, + "Microsoft.NETCore.Runtime.Native/1.0.1": { + "type": "package" + }, "Microsoft.NETCore.Targets/1.0.0": { + "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.0", "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "5.0.0" } }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {}, + "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": { + "type": "package" + }, "Microsoft.NETCore.UniversalWindowsPlatform/5.1.0": { + "type": "package", "dependencies": { "Microsoft.NETCore": "5.0.0", "Microsoft.NETCore.Portable.Compatibility": "1.0.0", @@ -1952,6 +2071,7 @@ } }, "Microsoft.VisualBasic/10.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -1978,6 +2098,7 @@ } }, "Microsoft.Win32.Primitives/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20", "System.Runtime.InteropServices": "4.0.20" @@ -1990,6 +2111,7 @@ } }, "runtime.any.System.Private.DataContractSerialization/4.1.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -2023,6 +2145,7 @@ } }, "runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR/1.0.1": { + "type": "package", "compile": { "ref/dotnet/_._": {} }, @@ -2040,6 +2163,7 @@ } }, "System.AppContext/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Resources.ResourceManager": "4.0.0", @@ -2054,6 +2178,7 @@ } }, "System.Collections/4.0.10": { + "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.0", "System.Resources.ResourceManager": "4.0.0", @@ -2069,6 +2194,7 @@ } }, "System.Collections.Concurrent/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -2088,6 +2214,7 @@ } }, "System.Collections.Immutable/1.1.37": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.0", @@ -2106,6 +2233,7 @@ } }, "System.Collections.NonGeneric/4.0.0": { + "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.10", "System.Globalization": "4.0.10", @@ -2122,6 +2250,7 @@ } }, "System.Collections.Specialized/4.0.0": { + "type": "package", "dependencies": { "System.Collections.NonGeneric": "4.0.0", "System.Globalization": "4.0.10", @@ -2139,6 +2268,7 @@ } }, "System.ComponentModel/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20" }, @@ -2150,6 +2280,7 @@ } }, "System.ComponentModel.Annotations/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.ComponentModel": "4.0.0", @@ -2171,6 +2302,7 @@ } }, "System.ComponentModel.EventBasedAsync/4.0.10": { + "type": "package", "dependencies": { "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20", @@ -2185,6 +2317,7 @@ } }, "System.Data.Common/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Collections.NonGeneric": "4.0.0", @@ -2204,6 +2337,7 @@ } }, "System.Diagnostics.Contracts/4.0.0": { + "type": "package", "compile": { "ref/netcore50/System.Diagnostics.Contracts.dll": {} }, @@ -2212,6 +2346,7 @@ } }, "System.Diagnostics.Debug/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -2223,6 +2358,7 @@ } }, "System.Diagnostics.StackTrace/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20" }, @@ -2234,6 +2370,7 @@ } }, "System.Diagnostics.Tools/4.0.0": { + "type": "package", "compile": { "ref/netcore50/System.Diagnostics.Tools.dll": {} }, @@ -2242,6 +2379,7 @@ } }, "System.Diagnostics.Tracing/4.0.20": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Globalization": "4.0.0", @@ -2262,6 +2400,7 @@ } }, "System.Dynamic.Runtime/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.0", @@ -2286,6 +2425,7 @@ } }, "System.Globalization/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -2297,6 +2437,7 @@ } }, "System.Globalization.Calendars/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.0", "System.Runtime": "4.0.0" @@ -2309,6 +2450,7 @@ } }, "System.Globalization.Extensions/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.10", "System.Resources.ResourceManager": "4.0.0", @@ -2324,6 +2466,7 @@ } }, "System.IO/4.0.10": { + "type": "package", "dependencies": { "System.Globalization": "4.0.0", "System.Runtime": "4.0.20", @@ -2340,6 +2483,7 @@ } }, "System.IO.Compression/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.IO": "4.0.0", @@ -2360,11 +2504,13 @@ } }, "System.IO.Compression.clrcompression-arm/4.0.0": { + "type": "package", "native": { "runtimes/win10-arm/native/ClrCompression.dll": {} } }, "System.IO.Compression.ZipFile/4.0.0": { + "type": "package", "dependencies": { "System.IO": "4.0.10", "System.IO.Compression": "4.0.0", @@ -2383,6 +2529,7 @@ } }, "System.IO.FileSystem/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -2408,6 +2555,7 @@ } }, "System.IO.FileSystem.Primitives/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20" }, @@ -2419,6 +2567,7 @@ } }, "System.IO.IsolatedStorage/4.0.0": { + "type": "package", "dependencies": { "System.IO": "4.0.10", "System.IO.FileSystem": "4.0.0", @@ -2438,6 +2587,7 @@ } }, "System.IO.UnmanagedMemoryStream/4.0.0": { + "type": "package", "dependencies": { "System.IO": "4.0.10", "System.IO.FileSystem.Primitives": "4.0.0", @@ -2455,6 +2605,7 @@ } }, "System.Linq/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -2470,6 +2621,7 @@ } }, "System.Linq.Expressions/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.0", @@ -2495,6 +2647,7 @@ } }, "System.Linq.Parallel/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Collections.Concurrent": "4.0.10", @@ -2515,6 +2668,7 @@ } }, "System.Linq.Queryable/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Linq": "4.0.0", @@ -2532,6 +2686,7 @@ } }, "System.Net.Http/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -2556,6 +2711,7 @@ } }, "System.Net.Http.Rtc/4.0.0": { + "type": "package", "dependencies": { "System.Net.Http": "4.0.0", "System.Runtime": "4.0.20" @@ -2568,6 +2724,7 @@ } }, "System.Net.NetworkInformation/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0", "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", @@ -2581,6 +2738,7 @@ } }, "System.Net.Primitives/4.0.10": { + "type": "package", "dependencies": { "System.Private.Networking": "4.0.0", "System.Runtime": "4.0.20" @@ -2593,6 +2751,7 @@ } }, "System.Net.Requests/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -2613,6 +2772,7 @@ } }, "System.Net.Sockets/4.0.0": { + "type": "package", "dependencies": { "System.Private.Networking": "4.0.0", "System.Runtime": "4.0.20" @@ -2625,6 +2785,7 @@ } }, "System.Net.WebHeaderCollection/4.0.0": { + "type": "package", "dependencies": { "System.Collections.NonGeneric": "4.0.0", "System.Collections.Specialized": "4.0.0", @@ -2639,6 +2800,7 @@ } }, "System.Numerics.Vectors/4.1.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.10", "System.Resources.ResourceManager": "4.0.0", @@ -2653,6 +2815,7 @@ } }, "System.Numerics.Vectors.WindowsRuntime/4.0.0": { + "type": "package", "dependencies": { "System.Numerics.Vectors": "4.1.0", "System.Runtime": "4.0.20", @@ -2666,6 +2829,7 @@ } }, "System.ObjectModel/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -2681,6 +2845,7 @@ } }, "System.Private.DataContractSerialization/4.1.0": { + "type": "package", "dependencies": { "runtime.any.System.Private.DataContractSerialization": "4.1.0" }, @@ -2689,6 +2854,7 @@ } }, "System.Private.Networking/4.0.0": { + "type": "package", "dependencies": { "Microsoft.Win32.Primitives": "4.0.0", "System.Collections": "4.0.10", @@ -2716,6 +2882,7 @@ } }, "System.Private.ServiceModel/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Collections.Concurrent": "4.0.10", @@ -2764,6 +2931,7 @@ } }, "System.Private.Uri/4.0.0": { + "type": "package", "compile": { "ref/netcore50/_._": {} }, @@ -2772,6 +2940,7 @@ } }, "System.Reflection/4.0.10": { + "type": "package", "dependencies": { "System.IO": "4.0.0", "System.Reflection.Primitives": "4.0.0", @@ -2785,6 +2954,7 @@ } }, "System.Reflection.Context/4.0.0": { + "type": "package", "dependencies": { "System.Reflection": "4.0.10", "System.Resources.ResourceManager": "4.0.0", @@ -2798,6 +2968,7 @@ } }, "System.Reflection.DispatchProxy/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Linq": "4.0.0", @@ -2818,6 +2989,7 @@ } }, "System.Reflection.Emit/4.0.0": { + "type": "package", "dependencies": { "System.IO": "4.0.0", "System.Reflection": "4.0.0", @@ -2833,6 +3005,7 @@ } }, "System.Reflection.Emit.ILGeneration/4.0.0": { + "type": "package", "dependencies": { "System.Reflection": "4.0.0", "System.Reflection.Primitives": "4.0.0", @@ -2846,6 +3019,7 @@ } }, "System.Reflection.Emit.Lightweight/4.0.0": { + "type": "package", "dependencies": { "System.Reflection": "4.0.0", "System.Reflection.Emit.ILGeneration": "4.0.0", @@ -2860,6 +3034,7 @@ } }, "System.Reflection.Extensions/4.0.0": { + "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.10", "System.Reflection": "4.0.10", @@ -2877,6 +3052,7 @@ } }, "System.Reflection.Metadata/1.0.22": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Collections.Immutable": "1.1.37", @@ -2901,6 +3077,7 @@ } }, "System.Reflection.Primitives/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0", "System.Threading": "4.0.0" @@ -2913,6 +3090,7 @@ } }, "System.Reflection.TypeExtensions/4.0.0": { + "type": "package", "dependencies": { "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", @@ -2931,6 +3109,7 @@ } }, "System.Resources.ResourceManager/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.0", "System.Reflection": "4.0.10", @@ -2944,6 +3123,7 @@ } }, "System.Runtime/4.0.20": { + "type": "package", "dependencies": { "System.Private.Uri": "4.0.0" }, @@ -2955,6 +3135,7 @@ } }, "System.Runtime.Extensions/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20" }, @@ -2966,6 +3147,7 @@ } }, "System.Runtime.Handles/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -2977,6 +3159,7 @@ } }, "System.Runtime.InteropServices/4.0.20": { + "type": "package", "dependencies": { "System.Reflection": "4.0.0", "System.Reflection.Primitives": "4.0.0", @@ -2991,6 +3174,7 @@ } }, "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { + "type": "package", "compile": { "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} }, @@ -2999,6 +3183,7 @@ } }, "System.Runtime.Numerics/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.10", "System.Resources.ResourceManager": "4.0.0", @@ -3013,6 +3198,7 @@ } }, "System.Runtime.Serialization.Json/4.0.1": { + "type": "package", "dependencies": { "System.IO": "4.0.0", "System.Private.DataContractSerialization": "4.1.0", @@ -3026,6 +3212,7 @@ } }, "System.Runtime.Serialization.Primitives/4.1.0": { + "type": "package", "dependencies": { "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20" @@ -3038,6 +3225,7 @@ } }, "System.Runtime.Serialization.Xml/4.1.0": { + "type": "package", "dependencies": { "System.IO": "4.0.0", "System.Private.DataContractSerialization": "4.1.0", @@ -3054,6 +3242,7 @@ } }, "System.Runtime.WindowsRuntime/4.0.10": { + "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.10", "System.Globalization": "4.0.0", @@ -3074,6 +3263,7 @@ } }, "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.0", "System.Resources.ResourceManager": "4.0.0", @@ -3089,6 +3279,7 @@ } }, "System.Security.Claims/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.0", @@ -3107,6 +3298,7 @@ } }, "System.Security.Principal/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -3118,6 +3310,7 @@ } }, "System.ServiceModel.Duplex/4.0.0": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -3130,6 +3323,7 @@ } }, "System.ServiceModel.Http/4.0.10": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -3142,6 +3336,7 @@ } }, "System.ServiceModel.NetTcp/4.0.0": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -3154,6 +3349,7 @@ } }, "System.ServiceModel.Primitives/4.0.0": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -3166,6 +3362,7 @@ } }, "System.ServiceModel.Security/4.0.0": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -3178,6 +3375,7 @@ } }, "System.Text.Encoding/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -3189,6 +3387,7 @@ } }, "System.Text.Encoding.CodePages/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Globalization": "4.0.10", @@ -3210,6 +3409,7 @@ } }, "System.Text.Encoding.Extensions/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0", "System.Text.Encoding": "4.0.10" @@ -3222,6 +3422,7 @@ } }, "System.Text.RegularExpressions/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Globalization": "4.0.10", @@ -3238,6 +3439,7 @@ } }, "System.Threading/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0", "System.Threading.Tasks": "4.0.0" @@ -3250,6 +3452,7 @@ } }, "System.Threading.Overlapped/4.0.0": { + "type": "package", "dependencies": { "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20", @@ -3266,6 +3469,7 @@ } }, "System.Threading.Tasks/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -3277,6 +3481,7 @@ } }, "System.Threading.Tasks.Dataflow/4.5.25": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Collections.Concurrent": "4.0.0", @@ -3298,6 +3503,7 @@ } }, "System.Threading.Tasks.Parallel/4.0.0": { + "type": "package", "dependencies": { "System.Collections.Concurrent": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -3316,6 +3522,7 @@ } }, "System.Threading.Timer/4.0.0": { + "type": "package", "compile": { "ref/netcore50/System.Threading.Timer.dll": {} }, @@ -3324,6 +3531,7 @@ } }, "System.Xml.ReaderWriter/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -3348,6 +3556,7 @@ } }, "System.Xml.XDocument/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -3369,6 +3578,7 @@ } }, "System.Xml.XmlDocument/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -3389,6 +3599,7 @@ } }, "System.Xml.XmlSerializer/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -3415,10 +3626,18 @@ "runtime": { "lib/netcore50/System.Xml.XmlSerializer.dll": {} } + }, + "FooEditEngine.UWP/1.0.0": { + "type": "project", + "framework": "UAP,Version=v10.0", + "dependencies": { + "Microsoft.NETCore.UniversalWindowsPlatform": "5.1.0" + } } }, "UAP,Version=v10.0/win10-arm-aot": { "Microsoft.CSharp/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -3445,6 +3664,7 @@ } }, "Microsoft.NETCore/5.0.0": { + "type": "package", "dependencies": { "Microsoft.CSharp": "4.0.0", "Microsoft.NETCore.Targets": "1.0.0", @@ -3503,8 +3723,11 @@ "System.Xml.XDocument": "4.0.10" } }, - "Microsoft.NETCore.Platforms/1.0.0": {}, + "Microsoft.NETCore.Platforms/1.0.0": { + "type": "package" + }, "Microsoft.NETCore.Portable.Compatibility/1.0.0": { + "type": "package", "dependencies": { "Microsoft.NETCore.Runtime": "1.0.0" }, @@ -3540,21 +3763,30 @@ } }, "Microsoft.NETCore.Runtime/1.0.1": { + "type": "package", "dependencies": { "Microsoft.NETCore.Runtime.CoreCLR": "1.0.1", "Microsoft.NETCore.Runtime.Native": "1.0.1" } }, - "Microsoft.NETCore.Runtime.CoreCLR/1.0.1": {}, - "Microsoft.NETCore.Runtime.Native/1.0.1": {}, + "Microsoft.NETCore.Runtime.CoreCLR/1.0.1": { + "type": "package" + }, + "Microsoft.NETCore.Runtime.Native/1.0.1": { + "type": "package" + }, "Microsoft.NETCore.Targets/1.0.0": { + "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.0", "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "5.0.0" } }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {}, + "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": { + "type": "package" + }, "Microsoft.NETCore.UniversalWindowsPlatform/5.1.0": { + "type": "package", "dependencies": { "Microsoft.NETCore": "5.0.0", "Microsoft.NETCore.Portable.Compatibility": "1.0.0", @@ -3587,6 +3819,7 @@ } }, "Microsoft.VisualBasic/10.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -3613,6 +3846,7 @@ } }, "Microsoft.Win32.Primitives/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20", "System.Runtime.InteropServices": "4.0.20" @@ -3625,6 +3859,7 @@ } }, "runtime.aot.System.Private.DataContractSerialization/4.1.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -3656,6 +3891,7 @@ } }, "System.AppContext/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Resources.ResourceManager": "4.0.0", @@ -3670,6 +3906,7 @@ } }, "System.Collections/4.0.10": { + "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.0", "System.Resources.ResourceManager": "4.0.0", @@ -3685,6 +3922,7 @@ } }, "System.Collections.Concurrent/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -3704,6 +3942,7 @@ } }, "System.Collections.Immutable/1.1.37": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.0", @@ -3722,6 +3961,7 @@ } }, "System.Collections.NonGeneric/4.0.0": { + "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.10", "System.Globalization": "4.0.10", @@ -3738,6 +3978,7 @@ } }, "System.Collections.Specialized/4.0.0": { + "type": "package", "dependencies": { "System.Collections.NonGeneric": "4.0.0", "System.Globalization": "4.0.10", @@ -3755,6 +3996,7 @@ } }, "System.ComponentModel/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20" }, @@ -3766,6 +4008,7 @@ } }, "System.ComponentModel.Annotations/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.ComponentModel": "4.0.0", @@ -3787,6 +4030,7 @@ } }, "System.ComponentModel.EventBasedAsync/4.0.10": { + "type": "package", "dependencies": { "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20", @@ -3801,6 +4045,7 @@ } }, "System.Data.Common/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Collections.NonGeneric": "4.0.0", @@ -3820,6 +4065,7 @@ } }, "System.Diagnostics.Contracts/4.0.0": { + "type": "package", "compile": { "ref/netcore50/System.Diagnostics.Contracts.dll": {} }, @@ -3828,6 +4074,7 @@ } }, "System.Diagnostics.Debug/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -3839,6 +4086,7 @@ } }, "System.Diagnostics.StackTrace/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20" }, @@ -3850,6 +4098,7 @@ } }, "System.Diagnostics.Tools/4.0.0": { + "type": "package", "compile": { "ref/netcore50/System.Diagnostics.Tools.dll": {} }, @@ -3858,6 +4107,7 @@ } }, "System.Diagnostics.Tracing/4.0.20": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Globalization": "4.0.0", @@ -3878,6 +4128,7 @@ } }, "System.Dynamic.Runtime/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.0", @@ -3900,6 +4151,7 @@ } }, "System.Globalization/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -3911,6 +4163,7 @@ } }, "System.Globalization.Calendars/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.0", "System.Runtime": "4.0.0" @@ -3923,6 +4176,7 @@ } }, "System.Globalization.Extensions/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.10", "System.Resources.ResourceManager": "4.0.0", @@ -3938,6 +4192,7 @@ } }, "System.IO/4.0.10": { + "type": "package", "dependencies": { "System.Globalization": "4.0.0", "System.Runtime": "4.0.20", @@ -3954,6 +4209,7 @@ } }, "System.IO.Compression/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.IO": "4.0.0", @@ -3974,11 +4230,13 @@ } }, "System.IO.Compression.clrcompression-arm/4.0.0": { + "type": "package", "native": { "runtimes/win10-arm/native/ClrCompression.dll": {} } }, "System.IO.Compression.ZipFile/4.0.0": { + "type": "package", "dependencies": { "System.IO": "4.0.10", "System.IO.Compression": "4.0.0", @@ -3997,6 +4255,7 @@ } }, "System.IO.FileSystem/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -4022,6 +4281,7 @@ } }, "System.IO.FileSystem.Primitives/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20" }, @@ -4033,6 +4293,7 @@ } }, "System.IO.IsolatedStorage/4.0.0": { + "type": "package", "dependencies": { "System.IO": "4.0.10", "System.IO.FileSystem": "4.0.0", @@ -4052,6 +4313,7 @@ } }, "System.IO.UnmanagedMemoryStream/4.0.0": { + "type": "package", "dependencies": { "System.IO": "4.0.10", "System.IO.FileSystem.Primitives": "4.0.0", @@ -4069,6 +4331,7 @@ } }, "System.Linq/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -4084,6 +4347,7 @@ } }, "System.Linq.Expressions/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.0", @@ -4107,6 +4371,7 @@ } }, "System.Linq.Parallel/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Collections.Concurrent": "4.0.10", @@ -4127,6 +4392,7 @@ } }, "System.Linq.Queryable/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Linq": "4.0.0", @@ -4144,6 +4410,7 @@ } }, "System.Net.Http/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -4168,6 +4435,7 @@ } }, "System.Net.Http.Rtc/4.0.0": { + "type": "package", "dependencies": { "System.Net.Http": "4.0.0", "System.Runtime": "4.0.20" @@ -4180,6 +4448,7 @@ } }, "System.Net.NetworkInformation/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0", "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", @@ -4193,6 +4462,7 @@ } }, "System.Net.Primitives/4.0.10": { + "type": "package", "dependencies": { "System.Private.Networking": "4.0.0", "System.Runtime": "4.0.20" @@ -4205,6 +4475,7 @@ } }, "System.Net.Requests/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -4225,6 +4496,7 @@ } }, "System.Net.Sockets/4.0.0": { + "type": "package", "dependencies": { "System.Private.Networking": "4.0.0", "System.Runtime": "4.0.20" @@ -4237,6 +4509,7 @@ } }, "System.Net.WebHeaderCollection/4.0.0": { + "type": "package", "dependencies": { "System.Collections.NonGeneric": "4.0.0", "System.Collections.Specialized": "4.0.0", @@ -4251,6 +4524,7 @@ } }, "System.Numerics.Vectors/4.1.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.10", "System.Resources.ResourceManager": "4.0.0", @@ -4265,6 +4539,7 @@ } }, "System.Numerics.Vectors.WindowsRuntime/4.0.0": { + "type": "package", "dependencies": { "System.Numerics.Vectors": "4.1.0", "System.Runtime": "4.0.20", @@ -4278,6 +4553,7 @@ } }, "System.ObjectModel/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -4293,6 +4569,7 @@ } }, "System.Private.DataContractSerialization/4.1.0": { + "type": "package", "dependencies": { "runtime.aot.System.Private.DataContractSerialization": "4.1.0" }, @@ -4301,6 +4578,7 @@ } }, "System.Private.Networking/4.0.0": { + "type": "package", "dependencies": { "Microsoft.Win32.Primitives": "4.0.0", "System.Collections": "4.0.10", @@ -4328,6 +4606,7 @@ } }, "System.Private.ServiceModel/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Collections.Concurrent": "4.0.10", @@ -4376,6 +4655,7 @@ } }, "System.Private.Uri/4.0.0": { + "type": "package", "compile": { "ref/netcore50/_._": {} }, @@ -4384,6 +4664,7 @@ } }, "System.Reflection/4.0.10": { + "type": "package", "dependencies": { "System.IO": "4.0.0", "System.Reflection.Primitives": "4.0.0", @@ -4397,6 +4678,7 @@ } }, "System.Reflection.Context/4.0.0": { + "type": "package", "dependencies": { "System.Reflection": "4.0.10", "System.Resources.ResourceManager": "4.0.0", @@ -4410,6 +4692,7 @@ } }, "System.Reflection.DispatchProxy/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Linq": "4.0.0", @@ -4428,6 +4711,7 @@ } }, "System.Reflection.Emit/4.0.0": { + "type": "package", "dependencies": { "System.IO": "4.0.0", "System.Reflection": "4.0.0", @@ -4443,6 +4727,7 @@ } }, "System.Reflection.Emit.ILGeneration/4.0.0": { + "type": "package", "dependencies": { "System.Reflection": "4.0.0", "System.Reflection.Primitives": "4.0.0", @@ -4456,6 +4741,7 @@ } }, "System.Reflection.Extensions/4.0.0": { + "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.10", "System.Reflection": "4.0.10", @@ -4473,6 +4759,7 @@ } }, "System.Reflection.Metadata/1.0.22": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Collections.Immutable": "1.1.37", @@ -4497,6 +4784,7 @@ } }, "System.Reflection.Primitives/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0", "System.Threading": "4.0.0" @@ -4509,6 +4797,7 @@ } }, "System.Reflection.TypeExtensions/4.0.0": { + "type": "package", "dependencies": { "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", @@ -4527,6 +4816,7 @@ } }, "System.Resources.ResourceManager/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.0", "System.Reflection": "4.0.10", @@ -4540,6 +4830,7 @@ } }, "System.Runtime/4.0.20": { + "type": "package", "dependencies": { "System.Private.Uri": "4.0.0" }, @@ -4551,6 +4842,7 @@ } }, "System.Runtime.Extensions/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20" }, @@ -4562,6 +4854,7 @@ } }, "System.Runtime.Handles/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -4573,6 +4866,7 @@ } }, "System.Runtime.InteropServices/4.0.20": { + "type": "package", "dependencies": { "System.Reflection": "4.0.0", "System.Reflection.Primitives": "4.0.0", @@ -4587,6 +4881,7 @@ } }, "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { + "type": "package", "compile": { "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} }, @@ -4595,6 +4890,7 @@ } }, "System.Runtime.Numerics/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.10", "System.Resources.ResourceManager": "4.0.0", @@ -4609,6 +4905,7 @@ } }, "System.Runtime.Serialization.Json/4.0.1": { + "type": "package", "dependencies": { "System.IO": "4.0.0", "System.Private.DataContractSerialization": "4.1.0", @@ -4622,6 +4919,7 @@ } }, "System.Runtime.Serialization.Primitives/4.1.0": { + "type": "package", "dependencies": { "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20" @@ -4634,6 +4932,7 @@ } }, "System.Runtime.Serialization.Xml/4.1.0": { + "type": "package", "dependencies": { "System.IO": "4.0.0", "System.Private.DataContractSerialization": "4.1.0", @@ -4650,6 +4949,7 @@ } }, "System.Runtime.WindowsRuntime/4.0.10": { + "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.10", "System.Globalization": "4.0.0", @@ -4670,6 +4970,7 @@ } }, "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.0", "System.Resources.ResourceManager": "4.0.0", @@ -4685,6 +4986,7 @@ } }, "System.Security.Claims/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.0", @@ -4703,6 +5005,7 @@ } }, "System.Security.Principal/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -4714,6 +5017,7 @@ } }, "System.ServiceModel.Duplex/4.0.0": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -4726,6 +5030,7 @@ } }, "System.ServiceModel.Http/4.0.10": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -4738,6 +5043,7 @@ } }, "System.ServiceModel.NetTcp/4.0.0": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -4750,6 +5056,7 @@ } }, "System.ServiceModel.Primitives/4.0.0": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -4762,6 +5069,7 @@ } }, "System.ServiceModel.Security/4.0.0": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -4774,6 +5082,7 @@ } }, "System.Text.Encoding/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -4785,6 +5094,7 @@ } }, "System.Text.Encoding.CodePages/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Globalization": "4.0.10", @@ -4806,6 +5116,7 @@ } }, "System.Text.Encoding.Extensions/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0", "System.Text.Encoding": "4.0.10" @@ -4818,6 +5129,7 @@ } }, "System.Text.RegularExpressions/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Globalization": "4.0.10", @@ -4834,6 +5146,7 @@ } }, "System.Threading/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0", "System.Threading.Tasks": "4.0.0" @@ -4846,6 +5159,7 @@ } }, "System.Threading.Overlapped/4.0.0": { + "type": "package", "dependencies": { "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20", @@ -4862,6 +5176,7 @@ } }, "System.Threading.Tasks/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -4873,6 +5188,7 @@ } }, "System.Threading.Tasks.Dataflow/4.5.25": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Collections.Concurrent": "4.0.0", @@ -4894,6 +5210,7 @@ } }, "System.Threading.Tasks.Parallel/4.0.0": { + "type": "package", "dependencies": { "System.Collections.Concurrent": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -4912,6 +5229,7 @@ } }, "System.Threading.Timer/4.0.0": { + "type": "package", "compile": { "ref/netcore50/System.Threading.Timer.dll": {} }, @@ -4920,6 +5238,7 @@ } }, "System.Xml.ReaderWriter/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -4944,6 +5263,7 @@ } }, "System.Xml.XDocument/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -4965,6 +5285,7 @@ } }, "System.Xml.XmlDocument/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -4985,6 +5306,7 @@ } }, "System.Xml.XmlSerializer/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -5011,10 +5333,18 @@ "runtime": { "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {} } + }, + "FooEditEngine.UWP/1.0.0": { + "type": "project", + "framework": "UAP,Version=v10.0", + "dependencies": { + "Microsoft.NETCore.UniversalWindowsPlatform": "5.1.0" + } } }, "UAP,Version=v10.0/win10-x64": { "Microsoft.CSharp/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -5041,6 +5371,7 @@ } }, "Microsoft.NETCore/5.0.0": { + "type": "package", "dependencies": { "Microsoft.CSharp": "4.0.0", "Microsoft.NETCore.Targets": "1.0.0", @@ -5099,8 +5430,11 @@ "System.Xml.XDocument": "4.0.10" } }, - "Microsoft.NETCore.Platforms/1.0.0": {}, + "Microsoft.NETCore.Platforms/1.0.0": { + "type": "package" + }, "Microsoft.NETCore.Portable.Compatibility/1.0.0": { + "type": "package", "dependencies": { "Microsoft.NETCore.Runtime": "1.0.0" }, @@ -5135,25 +5469,33 @@ } }, "Microsoft.NETCore.Runtime/1.0.1": { + "type": "package", "dependencies": { "Microsoft.NETCore.Runtime.CoreCLR": "1.0.1", "Microsoft.NETCore.Runtime.Native": "1.0.1" } }, "Microsoft.NETCore.Runtime.CoreCLR/1.0.1": { + "type": "package", "dependencies": { "runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR": "1.0.1" } }, - "Microsoft.NETCore.Runtime.Native/1.0.1": {}, + "Microsoft.NETCore.Runtime.Native/1.0.1": { + "type": "package" + }, "Microsoft.NETCore.Targets/1.0.0": { + "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.0", "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "5.0.0" } }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {}, + "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": { + "type": "package" + }, "Microsoft.NETCore.UniversalWindowsPlatform/5.1.0": { + "type": "package", "dependencies": { "Microsoft.NETCore": "5.0.0", "Microsoft.NETCore.Portable.Compatibility": "1.0.0", @@ -5186,11 +5528,13 @@ } }, "Microsoft.NETCore.Windows.ApiSets-x64/1.0.0": { + "type": "package", "native": { "runtimes/win10-x64/native/_._": {} } }, "Microsoft.VisualBasic/10.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -5217,6 +5561,7 @@ } }, "Microsoft.Win32.Primitives/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20", "System.Runtime.InteropServices": "4.0.20" @@ -5229,6 +5574,7 @@ } }, "runtime.any.System.Private.DataContractSerialization/4.1.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -5262,6 +5608,7 @@ } }, "runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR/1.0.1": { + "type": "package", "dependencies": { "Microsoft.NETCore.Windows.ApiSets-x64": "1.0.0" }, @@ -5282,6 +5629,7 @@ } }, "System.AppContext/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Resources.ResourceManager": "4.0.0", @@ -5296,6 +5644,7 @@ } }, "System.Collections/4.0.10": { + "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.0", "System.Resources.ResourceManager": "4.0.0", @@ -5311,6 +5660,7 @@ } }, "System.Collections.Concurrent/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -5330,6 +5680,7 @@ } }, "System.Collections.Immutable/1.1.37": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.0", @@ -5348,6 +5699,7 @@ } }, "System.Collections.NonGeneric/4.0.0": { + "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.10", "System.Globalization": "4.0.10", @@ -5364,6 +5716,7 @@ } }, "System.Collections.Specialized/4.0.0": { + "type": "package", "dependencies": { "System.Collections.NonGeneric": "4.0.0", "System.Globalization": "4.0.10", @@ -5381,6 +5734,7 @@ } }, "System.ComponentModel/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20" }, @@ -5392,6 +5746,7 @@ } }, "System.ComponentModel.Annotations/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.ComponentModel": "4.0.0", @@ -5413,6 +5768,7 @@ } }, "System.ComponentModel.EventBasedAsync/4.0.10": { + "type": "package", "dependencies": { "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20", @@ -5427,6 +5783,7 @@ } }, "System.Data.Common/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Collections.NonGeneric": "4.0.0", @@ -5446,6 +5803,7 @@ } }, "System.Diagnostics.Contracts/4.0.0": { + "type": "package", "compile": { "ref/netcore50/System.Diagnostics.Contracts.dll": {} }, @@ -5454,6 +5812,7 @@ } }, "System.Diagnostics.Debug/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -5465,6 +5824,7 @@ } }, "System.Diagnostics.StackTrace/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20" }, @@ -5476,6 +5836,7 @@ } }, "System.Diagnostics.Tools/4.0.0": { + "type": "package", "compile": { "ref/netcore50/System.Diagnostics.Tools.dll": {} }, @@ -5484,6 +5845,7 @@ } }, "System.Diagnostics.Tracing/4.0.20": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Globalization": "4.0.0", @@ -5504,6 +5866,7 @@ } }, "System.Dynamic.Runtime/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.0", @@ -5528,6 +5891,7 @@ } }, "System.Globalization/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -5539,6 +5903,7 @@ } }, "System.Globalization.Calendars/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.0", "System.Runtime": "4.0.0" @@ -5551,6 +5916,7 @@ } }, "System.Globalization.Extensions/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.10", "System.Resources.ResourceManager": "4.0.0", @@ -5566,6 +5932,7 @@ } }, "System.IO/4.0.10": { + "type": "package", "dependencies": { "System.Globalization": "4.0.0", "System.Runtime": "4.0.20", @@ -5582,6 +5949,7 @@ } }, "System.IO.Compression/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.IO": "4.0.0", @@ -5602,11 +5970,13 @@ } }, "System.IO.Compression.clrcompression-x64/4.0.0": { + "type": "package", "native": { "runtimes/win10-x64/native/ClrCompression.dll": {} } }, "System.IO.Compression.ZipFile/4.0.0": { + "type": "package", "dependencies": { "System.IO": "4.0.10", "System.IO.Compression": "4.0.0", @@ -5625,6 +5995,7 @@ } }, "System.IO.FileSystem/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -5650,6 +6021,7 @@ } }, "System.IO.FileSystem.Primitives/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20" }, @@ -5661,6 +6033,7 @@ } }, "System.IO.IsolatedStorage/4.0.0": { + "type": "package", "dependencies": { "System.IO": "4.0.10", "System.IO.FileSystem": "4.0.0", @@ -5680,6 +6053,7 @@ } }, "System.IO.UnmanagedMemoryStream/4.0.0": { + "type": "package", "dependencies": { "System.IO": "4.0.10", "System.IO.FileSystem.Primitives": "4.0.0", @@ -5697,6 +6071,7 @@ } }, "System.Linq/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -5712,6 +6087,7 @@ } }, "System.Linq.Expressions/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.0", @@ -5737,6 +6113,7 @@ } }, "System.Linq.Parallel/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Collections.Concurrent": "4.0.10", @@ -5757,6 +6134,7 @@ } }, "System.Linq.Queryable/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Linq": "4.0.0", @@ -5774,6 +6152,7 @@ } }, "System.Net.Http/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -5798,6 +6177,7 @@ } }, "System.Net.Http.Rtc/4.0.0": { + "type": "package", "dependencies": { "System.Net.Http": "4.0.0", "System.Runtime": "4.0.20" @@ -5810,6 +6190,7 @@ } }, "System.Net.NetworkInformation/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0", "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", @@ -5823,6 +6204,7 @@ } }, "System.Net.Primitives/4.0.10": { + "type": "package", "dependencies": { "System.Private.Networking": "4.0.0", "System.Runtime": "4.0.20" @@ -5835,6 +6217,7 @@ } }, "System.Net.Requests/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -5855,6 +6238,7 @@ } }, "System.Net.Sockets/4.0.0": { + "type": "package", "dependencies": { "System.Private.Networking": "4.0.0", "System.Runtime": "4.0.20" @@ -5867,6 +6251,7 @@ } }, "System.Net.WebHeaderCollection/4.0.0": { + "type": "package", "dependencies": { "System.Collections.NonGeneric": "4.0.0", "System.Collections.Specialized": "4.0.0", @@ -5881,6 +6266,7 @@ } }, "System.Numerics.Vectors/4.1.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.10", "System.Resources.ResourceManager": "4.0.0", @@ -5895,6 +6281,7 @@ } }, "System.Numerics.Vectors.WindowsRuntime/4.0.0": { + "type": "package", "dependencies": { "System.Numerics.Vectors": "4.1.0", "System.Runtime": "4.0.20", @@ -5908,6 +6295,7 @@ } }, "System.ObjectModel/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -5923,6 +6311,7 @@ } }, "System.Private.DataContractSerialization/4.1.0": { + "type": "package", "dependencies": { "runtime.any.System.Private.DataContractSerialization": "4.1.0" }, @@ -5931,6 +6320,7 @@ } }, "System.Private.Networking/4.0.0": { + "type": "package", "dependencies": { "Microsoft.Win32.Primitives": "4.0.0", "System.Collections": "4.0.10", @@ -5958,6 +6348,7 @@ } }, "System.Private.ServiceModel/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Collections.Concurrent": "4.0.10", @@ -6006,6 +6397,7 @@ } }, "System.Private.Uri/4.0.0": { + "type": "package", "compile": { "ref/netcore50/_._": {} }, @@ -6014,6 +6406,7 @@ } }, "System.Reflection/4.0.10": { + "type": "package", "dependencies": { "System.IO": "4.0.0", "System.Reflection.Primitives": "4.0.0", @@ -6027,6 +6420,7 @@ } }, "System.Reflection.Context/4.0.0": { + "type": "package", "dependencies": { "System.Reflection": "4.0.10", "System.Resources.ResourceManager": "4.0.0", @@ -6040,6 +6434,7 @@ } }, "System.Reflection.DispatchProxy/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Linq": "4.0.0", @@ -6060,6 +6455,7 @@ } }, "System.Reflection.Emit/4.0.0": { + "type": "package", "dependencies": { "System.IO": "4.0.0", "System.Reflection": "4.0.0", @@ -6075,6 +6471,7 @@ } }, "System.Reflection.Emit.ILGeneration/4.0.0": { + "type": "package", "dependencies": { "System.Reflection": "4.0.0", "System.Reflection.Primitives": "4.0.0", @@ -6088,6 +6485,7 @@ } }, "System.Reflection.Emit.Lightweight/4.0.0": { + "type": "package", "dependencies": { "System.Reflection": "4.0.0", "System.Reflection.Emit.ILGeneration": "4.0.0", @@ -6102,6 +6500,7 @@ } }, "System.Reflection.Extensions/4.0.0": { + "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.10", "System.Reflection": "4.0.10", @@ -6119,6 +6518,7 @@ } }, "System.Reflection.Metadata/1.0.22": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Collections.Immutable": "1.1.37", @@ -6143,6 +6543,7 @@ } }, "System.Reflection.Primitives/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0", "System.Threading": "4.0.0" @@ -6155,6 +6556,7 @@ } }, "System.Reflection.TypeExtensions/4.0.0": { + "type": "package", "dependencies": { "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", @@ -6173,6 +6575,7 @@ } }, "System.Resources.ResourceManager/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.0", "System.Reflection": "4.0.10", @@ -6186,6 +6589,7 @@ } }, "System.Runtime/4.0.20": { + "type": "package", "dependencies": { "System.Private.Uri": "4.0.0" }, @@ -6197,6 +6601,7 @@ } }, "System.Runtime.Extensions/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20" }, @@ -6208,6 +6613,7 @@ } }, "System.Runtime.Handles/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -6219,6 +6625,7 @@ } }, "System.Runtime.InteropServices/4.0.20": { + "type": "package", "dependencies": { "System.Reflection": "4.0.0", "System.Reflection.Primitives": "4.0.0", @@ -6233,6 +6640,7 @@ } }, "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { + "type": "package", "compile": { "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} }, @@ -6241,6 +6649,7 @@ } }, "System.Runtime.Numerics/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.10", "System.Resources.ResourceManager": "4.0.0", @@ -6255,6 +6664,7 @@ } }, "System.Runtime.Serialization.Json/4.0.1": { + "type": "package", "dependencies": { "System.IO": "4.0.0", "System.Private.DataContractSerialization": "4.1.0", @@ -6268,6 +6678,7 @@ } }, "System.Runtime.Serialization.Primitives/4.1.0": { + "type": "package", "dependencies": { "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20" @@ -6280,6 +6691,7 @@ } }, "System.Runtime.Serialization.Xml/4.1.0": { + "type": "package", "dependencies": { "System.IO": "4.0.0", "System.Private.DataContractSerialization": "4.1.0", @@ -6296,6 +6708,7 @@ } }, "System.Runtime.WindowsRuntime/4.0.10": { + "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.10", "System.Globalization": "4.0.0", @@ -6316,6 +6729,7 @@ } }, "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.0", "System.Resources.ResourceManager": "4.0.0", @@ -6331,6 +6745,7 @@ } }, "System.Security.Claims/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.0", @@ -6349,6 +6764,7 @@ } }, "System.Security.Principal/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -6360,6 +6776,7 @@ } }, "System.ServiceModel.Duplex/4.0.0": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -6372,6 +6789,7 @@ } }, "System.ServiceModel.Http/4.0.10": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -6384,6 +6802,7 @@ } }, "System.ServiceModel.NetTcp/4.0.0": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -6396,6 +6815,7 @@ } }, "System.ServiceModel.Primitives/4.0.0": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -6408,6 +6828,7 @@ } }, "System.ServiceModel.Security/4.0.0": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -6420,6 +6841,7 @@ } }, "System.Text.Encoding/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -6431,6 +6853,7 @@ } }, "System.Text.Encoding.CodePages/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Globalization": "4.0.10", @@ -6452,6 +6875,7 @@ } }, "System.Text.Encoding.Extensions/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0", "System.Text.Encoding": "4.0.10" @@ -6464,6 +6888,7 @@ } }, "System.Text.RegularExpressions/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Globalization": "4.0.10", @@ -6480,6 +6905,7 @@ } }, "System.Threading/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0", "System.Threading.Tasks": "4.0.0" @@ -6492,6 +6918,7 @@ } }, "System.Threading.Overlapped/4.0.0": { + "type": "package", "dependencies": { "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20", @@ -6508,6 +6935,7 @@ } }, "System.Threading.Tasks/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -6519,6 +6947,7 @@ } }, "System.Threading.Tasks.Dataflow/4.5.25": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Collections.Concurrent": "4.0.0", @@ -6540,6 +6969,7 @@ } }, "System.Threading.Tasks.Parallel/4.0.0": { + "type": "package", "dependencies": { "System.Collections.Concurrent": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -6558,6 +6988,7 @@ } }, "System.Threading.Timer/4.0.0": { + "type": "package", "compile": { "ref/netcore50/System.Threading.Timer.dll": {} }, @@ -6566,6 +6997,7 @@ } }, "System.Xml.ReaderWriter/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -6590,6 +7022,7 @@ } }, "System.Xml.XDocument/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -6611,6 +7044,7 @@ } }, "System.Xml.XmlDocument/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -6631,6 +7065,7 @@ } }, "System.Xml.XmlSerializer/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -6657,10 +7092,18 @@ "runtime": { "lib/netcore50/System.Xml.XmlSerializer.dll": {} } + }, + "FooEditEngine.UWP/1.0.0": { + "type": "project", + "framework": "UAP,Version=v10.0", + "dependencies": { + "Microsoft.NETCore.UniversalWindowsPlatform": "5.1.0" + } } }, "UAP,Version=v10.0/win10-x64-aot": { "Microsoft.CSharp/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -6687,6 +7130,7 @@ } }, "Microsoft.NETCore/5.0.0": { + "type": "package", "dependencies": { "Microsoft.CSharp": "4.0.0", "Microsoft.NETCore.Targets": "1.0.0", @@ -6745,8 +7189,11 @@ "System.Xml.XDocument": "4.0.10" } }, - "Microsoft.NETCore.Platforms/1.0.0": {}, + "Microsoft.NETCore.Platforms/1.0.0": { + "type": "package" + }, "Microsoft.NETCore.Portable.Compatibility/1.0.0": { + "type": "package", "dependencies": { "Microsoft.NETCore.Runtime": "1.0.0" }, @@ -6782,21 +7229,30 @@ } }, "Microsoft.NETCore.Runtime/1.0.1": { + "type": "package", "dependencies": { "Microsoft.NETCore.Runtime.CoreCLR": "1.0.1", "Microsoft.NETCore.Runtime.Native": "1.0.1" } }, - "Microsoft.NETCore.Runtime.CoreCLR/1.0.1": {}, - "Microsoft.NETCore.Runtime.Native/1.0.1": {}, + "Microsoft.NETCore.Runtime.CoreCLR/1.0.1": { + "type": "package" + }, + "Microsoft.NETCore.Runtime.Native/1.0.1": { + "type": "package" + }, "Microsoft.NETCore.Targets/1.0.0": { + "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.0", "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "5.0.0" } }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {}, + "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": { + "type": "package" + }, "Microsoft.NETCore.UniversalWindowsPlatform/5.1.0": { + "type": "package", "dependencies": { "Microsoft.NETCore": "5.0.0", "Microsoft.NETCore.Portable.Compatibility": "1.0.0", @@ -6829,6 +7285,7 @@ } }, "Microsoft.VisualBasic/10.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -6855,6 +7312,7 @@ } }, "Microsoft.Win32.Primitives/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20", "System.Runtime.InteropServices": "4.0.20" @@ -6867,6 +7325,7 @@ } }, "runtime.aot.System.Private.DataContractSerialization/4.1.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -6898,6 +7357,7 @@ } }, "System.AppContext/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Resources.ResourceManager": "4.0.0", @@ -6912,6 +7372,7 @@ } }, "System.Collections/4.0.10": { + "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.0", "System.Resources.ResourceManager": "4.0.0", @@ -6927,6 +7388,7 @@ } }, "System.Collections.Concurrent/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -6946,6 +7408,7 @@ } }, "System.Collections.Immutable/1.1.37": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.0", @@ -6964,6 +7427,7 @@ } }, "System.Collections.NonGeneric/4.0.0": { + "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.10", "System.Globalization": "4.0.10", @@ -6980,6 +7444,7 @@ } }, "System.Collections.Specialized/4.0.0": { + "type": "package", "dependencies": { "System.Collections.NonGeneric": "4.0.0", "System.Globalization": "4.0.10", @@ -6997,6 +7462,7 @@ } }, "System.ComponentModel/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20" }, @@ -7008,6 +7474,7 @@ } }, "System.ComponentModel.Annotations/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.ComponentModel": "4.0.0", @@ -7029,6 +7496,7 @@ } }, "System.ComponentModel.EventBasedAsync/4.0.10": { + "type": "package", "dependencies": { "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20", @@ -7043,6 +7511,7 @@ } }, "System.Data.Common/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Collections.NonGeneric": "4.0.0", @@ -7062,6 +7531,7 @@ } }, "System.Diagnostics.Contracts/4.0.0": { + "type": "package", "compile": { "ref/netcore50/System.Diagnostics.Contracts.dll": {} }, @@ -7070,6 +7540,7 @@ } }, "System.Diagnostics.Debug/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -7081,6 +7552,7 @@ } }, "System.Diagnostics.StackTrace/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20" }, @@ -7092,6 +7564,7 @@ } }, "System.Diagnostics.Tools/4.0.0": { + "type": "package", "compile": { "ref/netcore50/System.Diagnostics.Tools.dll": {} }, @@ -7100,6 +7573,7 @@ } }, "System.Diagnostics.Tracing/4.0.20": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Globalization": "4.0.0", @@ -7120,6 +7594,7 @@ } }, "System.Dynamic.Runtime/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.0", @@ -7142,6 +7617,7 @@ } }, "System.Globalization/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -7153,6 +7629,7 @@ } }, "System.Globalization.Calendars/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.0", "System.Runtime": "4.0.0" @@ -7165,6 +7642,7 @@ } }, "System.Globalization.Extensions/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.10", "System.Resources.ResourceManager": "4.0.0", @@ -7180,6 +7658,7 @@ } }, "System.IO/4.0.10": { + "type": "package", "dependencies": { "System.Globalization": "4.0.0", "System.Runtime": "4.0.20", @@ -7196,6 +7675,7 @@ } }, "System.IO.Compression/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.IO": "4.0.0", @@ -7216,11 +7696,13 @@ } }, "System.IO.Compression.clrcompression-x64/4.0.0": { + "type": "package", "native": { "runtimes/win10-x64/native/ClrCompression.dll": {} } }, "System.IO.Compression.ZipFile/4.0.0": { + "type": "package", "dependencies": { "System.IO": "4.0.10", "System.IO.Compression": "4.0.0", @@ -7239,6 +7721,7 @@ } }, "System.IO.FileSystem/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -7264,6 +7747,7 @@ } }, "System.IO.FileSystem.Primitives/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20" }, @@ -7275,6 +7759,7 @@ } }, "System.IO.IsolatedStorage/4.0.0": { + "type": "package", "dependencies": { "System.IO": "4.0.10", "System.IO.FileSystem": "4.0.0", @@ -7294,6 +7779,7 @@ } }, "System.IO.UnmanagedMemoryStream/4.0.0": { + "type": "package", "dependencies": { "System.IO": "4.0.10", "System.IO.FileSystem.Primitives": "4.0.0", @@ -7311,6 +7797,7 @@ } }, "System.Linq/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -7326,6 +7813,7 @@ } }, "System.Linq.Expressions/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.0", @@ -7349,6 +7837,7 @@ } }, "System.Linq.Parallel/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Collections.Concurrent": "4.0.10", @@ -7369,6 +7858,7 @@ } }, "System.Linq.Queryable/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Linq": "4.0.0", @@ -7386,6 +7876,7 @@ } }, "System.Net.Http/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -7410,6 +7901,7 @@ } }, "System.Net.Http.Rtc/4.0.0": { + "type": "package", "dependencies": { "System.Net.Http": "4.0.0", "System.Runtime": "4.0.20" @@ -7422,6 +7914,7 @@ } }, "System.Net.NetworkInformation/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0", "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", @@ -7435,6 +7928,7 @@ } }, "System.Net.Primitives/4.0.10": { + "type": "package", "dependencies": { "System.Private.Networking": "4.0.0", "System.Runtime": "4.0.20" @@ -7447,6 +7941,7 @@ } }, "System.Net.Requests/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -7467,6 +7962,7 @@ } }, "System.Net.Sockets/4.0.0": { + "type": "package", "dependencies": { "System.Private.Networking": "4.0.0", "System.Runtime": "4.0.20" @@ -7479,6 +7975,7 @@ } }, "System.Net.WebHeaderCollection/4.0.0": { + "type": "package", "dependencies": { "System.Collections.NonGeneric": "4.0.0", "System.Collections.Specialized": "4.0.0", @@ -7493,6 +7990,7 @@ } }, "System.Numerics.Vectors/4.1.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.10", "System.Resources.ResourceManager": "4.0.0", @@ -7507,6 +8005,7 @@ } }, "System.Numerics.Vectors.WindowsRuntime/4.0.0": { + "type": "package", "dependencies": { "System.Numerics.Vectors": "4.1.0", "System.Runtime": "4.0.20", @@ -7520,6 +8019,7 @@ } }, "System.ObjectModel/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -7535,6 +8035,7 @@ } }, "System.Private.DataContractSerialization/4.1.0": { + "type": "package", "dependencies": { "runtime.aot.System.Private.DataContractSerialization": "4.1.0" }, @@ -7543,6 +8044,7 @@ } }, "System.Private.Networking/4.0.0": { + "type": "package", "dependencies": { "Microsoft.Win32.Primitives": "4.0.0", "System.Collections": "4.0.10", @@ -7570,6 +8072,7 @@ } }, "System.Private.ServiceModel/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Collections.Concurrent": "4.0.10", @@ -7618,6 +8121,7 @@ } }, "System.Private.Uri/4.0.0": { + "type": "package", "compile": { "ref/netcore50/_._": {} }, @@ -7626,6 +8130,7 @@ } }, "System.Reflection/4.0.10": { + "type": "package", "dependencies": { "System.IO": "4.0.0", "System.Reflection.Primitives": "4.0.0", @@ -7639,6 +8144,7 @@ } }, "System.Reflection.Context/4.0.0": { + "type": "package", "dependencies": { "System.Reflection": "4.0.10", "System.Resources.ResourceManager": "4.0.0", @@ -7652,6 +8158,7 @@ } }, "System.Reflection.DispatchProxy/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Linq": "4.0.0", @@ -7670,6 +8177,7 @@ } }, "System.Reflection.Emit/4.0.0": { + "type": "package", "dependencies": { "System.IO": "4.0.0", "System.Reflection": "4.0.0", @@ -7685,6 +8193,7 @@ } }, "System.Reflection.Emit.ILGeneration/4.0.0": { + "type": "package", "dependencies": { "System.Reflection": "4.0.0", "System.Reflection.Primitives": "4.0.0", @@ -7698,6 +8207,7 @@ } }, "System.Reflection.Extensions/4.0.0": { + "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.10", "System.Reflection": "4.0.10", @@ -7715,6 +8225,7 @@ } }, "System.Reflection.Metadata/1.0.22": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Collections.Immutable": "1.1.37", @@ -7739,6 +8250,7 @@ } }, "System.Reflection.Primitives/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0", "System.Threading": "4.0.0" @@ -7751,6 +8263,7 @@ } }, "System.Reflection.TypeExtensions/4.0.0": { + "type": "package", "dependencies": { "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", @@ -7769,6 +8282,7 @@ } }, "System.Resources.ResourceManager/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.0", "System.Reflection": "4.0.10", @@ -7782,6 +8296,7 @@ } }, "System.Runtime/4.0.20": { + "type": "package", "dependencies": { "System.Private.Uri": "4.0.0" }, @@ -7793,6 +8308,7 @@ } }, "System.Runtime.Extensions/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20" }, @@ -7804,6 +8320,7 @@ } }, "System.Runtime.Handles/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -7815,6 +8332,7 @@ } }, "System.Runtime.InteropServices/4.0.20": { + "type": "package", "dependencies": { "System.Reflection": "4.0.0", "System.Reflection.Primitives": "4.0.0", @@ -7829,6 +8347,7 @@ } }, "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { + "type": "package", "compile": { "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} }, @@ -7837,6 +8356,7 @@ } }, "System.Runtime.Numerics/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.10", "System.Resources.ResourceManager": "4.0.0", @@ -7851,6 +8371,7 @@ } }, "System.Runtime.Serialization.Json/4.0.1": { + "type": "package", "dependencies": { "System.IO": "4.0.0", "System.Private.DataContractSerialization": "4.1.0", @@ -7864,6 +8385,7 @@ } }, "System.Runtime.Serialization.Primitives/4.1.0": { + "type": "package", "dependencies": { "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20" @@ -7876,6 +8398,7 @@ } }, "System.Runtime.Serialization.Xml/4.1.0": { + "type": "package", "dependencies": { "System.IO": "4.0.0", "System.Private.DataContractSerialization": "4.1.0", @@ -7892,6 +8415,7 @@ } }, "System.Runtime.WindowsRuntime/4.0.10": { + "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.10", "System.Globalization": "4.0.0", @@ -7912,6 +8436,7 @@ } }, "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.0", "System.Resources.ResourceManager": "4.0.0", @@ -7927,6 +8452,7 @@ } }, "System.Security.Claims/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.0", @@ -7945,6 +8471,7 @@ } }, "System.Security.Principal/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -7956,6 +8483,7 @@ } }, "System.ServiceModel.Duplex/4.0.0": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -7968,6 +8496,7 @@ } }, "System.ServiceModel.Http/4.0.10": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -7980,6 +8509,7 @@ } }, "System.ServiceModel.NetTcp/4.0.0": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -7992,6 +8522,7 @@ } }, "System.ServiceModel.Primitives/4.0.0": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -8004,6 +8535,7 @@ } }, "System.ServiceModel.Security/4.0.0": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -8016,6 +8548,7 @@ } }, "System.Text.Encoding/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -8027,6 +8560,7 @@ } }, "System.Text.Encoding.CodePages/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Globalization": "4.0.10", @@ -8048,6 +8582,7 @@ } }, "System.Text.Encoding.Extensions/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0", "System.Text.Encoding": "4.0.10" @@ -8060,6 +8595,7 @@ } }, "System.Text.RegularExpressions/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Globalization": "4.0.10", @@ -8076,6 +8612,7 @@ } }, "System.Threading/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0", "System.Threading.Tasks": "4.0.0" @@ -8088,6 +8625,7 @@ } }, "System.Threading.Overlapped/4.0.0": { + "type": "package", "dependencies": { "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20", @@ -8104,6 +8642,7 @@ } }, "System.Threading.Tasks/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -8115,6 +8654,7 @@ } }, "System.Threading.Tasks.Dataflow/4.5.25": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Collections.Concurrent": "4.0.0", @@ -8136,6 +8676,7 @@ } }, "System.Threading.Tasks.Parallel/4.0.0": { + "type": "package", "dependencies": { "System.Collections.Concurrent": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -8154,6 +8695,7 @@ } }, "System.Threading.Timer/4.0.0": { + "type": "package", "compile": { "ref/netcore50/System.Threading.Timer.dll": {} }, @@ -8162,6 +8704,7 @@ } }, "System.Xml.ReaderWriter/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -8186,6 +8729,7 @@ } }, "System.Xml.XDocument/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -8207,6 +8751,7 @@ } }, "System.Xml.XmlDocument/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -8227,6 +8772,7 @@ } }, "System.Xml.XmlSerializer/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -8253,10 +8799,18 @@ "runtime": { "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {} } + }, + "FooEditEngine.UWP/1.0.0": { + "type": "project", + "framework": "UAP,Version=v10.0", + "dependencies": { + "Microsoft.NETCore.UniversalWindowsPlatform": "5.1.0" + } } }, "UAP,Version=v10.0/win10-x86": { "Microsoft.CSharp/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -8283,6 +8837,7 @@ } }, "Microsoft.NETCore/5.0.0": { + "type": "package", "dependencies": { "Microsoft.CSharp": "4.0.0", "Microsoft.NETCore.Targets": "1.0.0", @@ -8341,8 +8896,11 @@ "System.Xml.XDocument": "4.0.10" } }, - "Microsoft.NETCore.Platforms/1.0.0": {}, + "Microsoft.NETCore.Platforms/1.0.0": { + "type": "package" + }, "Microsoft.NETCore.Portable.Compatibility/1.0.0": { + "type": "package", "dependencies": { "Microsoft.NETCore.Runtime": "1.0.0" }, @@ -8377,25 +8935,33 @@ } }, "Microsoft.NETCore.Runtime/1.0.1": { + "type": "package", "dependencies": { "Microsoft.NETCore.Runtime.CoreCLR": "1.0.1", "Microsoft.NETCore.Runtime.Native": "1.0.1" } }, "Microsoft.NETCore.Runtime.CoreCLR/1.0.1": { + "type": "package", "dependencies": { "runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR": "1.0.1" } }, - "Microsoft.NETCore.Runtime.Native/1.0.1": {}, + "Microsoft.NETCore.Runtime.Native/1.0.1": { + "type": "package" + }, "Microsoft.NETCore.Targets/1.0.0": { + "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.0", "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "5.0.0" } }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {}, + "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": { + "type": "package" + }, "Microsoft.NETCore.UniversalWindowsPlatform/5.1.0": { + "type": "package", "dependencies": { "Microsoft.NETCore": "5.0.0", "Microsoft.NETCore.Portable.Compatibility": "1.0.0", @@ -8428,11 +8994,13 @@ } }, "Microsoft.NETCore.Windows.ApiSets-x86/1.0.0": { + "type": "package", "native": { "runtimes/win10-x86/native/_._": {} } }, "Microsoft.VisualBasic/10.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -8459,6 +9027,7 @@ } }, "Microsoft.Win32.Primitives/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20", "System.Runtime.InteropServices": "4.0.20" @@ -8471,6 +9040,7 @@ } }, "runtime.any.System.Private.DataContractSerialization/4.1.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -8504,6 +9074,7 @@ } }, "runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR/1.0.1": { + "type": "package", "dependencies": { "Microsoft.NETCore.Windows.ApiSets-x86": "1.0.0" }, @@ -8524,6 +9095,7 @@ } }, "System.AppContext/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Resources.ResourceManager": "4.0.0", @@ -8538,6 +9110,7 @@ } }, "System.Collections/4.0.10": { + "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.0", "System.Resources.ResourceManager": "4.0.0", @@ -8553,6 +9126,7 @@ } }, "System.Collections.Concurrent/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -8572,6 +9146,7 @@ } }, "System.Collections.Immutable/1.1.37": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.0", @@ -8590,6 +9165,7 @@ } }, "System.Collections.NonGeneric/4.0.0": { + "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.10", "System.Globalization": "4.0.10", @@ -8606,6 +9182,7 @@ } }, "System.Collections.Specialized/4.0.0": { + "type": "package", "dependencies": { "System.Collections.NonGeneric": "4.0.0", "System.Globalization": "4.0.10", @@ -8623,6 +9200,7 @@ } }, "System.ComponentModel/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20" }, @@ -8634,6 +9212,7 @@ } }, "System.ComponentModel.Annotations/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.ComponentModel": "4.0.0", @@ -8655,6 +9234,7 @@ } }, "System.ComponentModel.EventBasedAsync/4.0.10": { + "type": "package", "dependencies": { "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20", @@ -8669,6 +9249,7 @@ } }, "System.Data.Common/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Collections.NonGeneric": "4.0.0", @@ -8688,6 +9269,7 @@ } }, "System.Diagnostics.Contracts/4.0.0": { + "type": "package", "compile": { "ref/netcore50/System.Diagnostics.Contracts.dll": {} }, @@ -8696,6 +9278,7 @@ } }, "System.Diagnostics.Debug/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -8707,6 +9290,7 @@ } }, "System.Diagnostics.StackTrace/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20" }, @@ -8718,6 +9302,7 @@ } }, "System.Diagnostics.Tools/4.0.0": { + "type": "package", "compile": { "ref/netcore50/System.Diagnostics.Tools.dll": {} }, @@ -8726,6 +9311,7 @@ } }, "System.Diagnostics.Tracing/4.0.20": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Globalization": "4.0.0", @@ -8746,6 +9332,7 @@ } }, "System.Dynamic.Runtime/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.0", @@ -8770,6 +9357,7 @@ } }, "System.Globalization/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -8781,6 +9369,7 @@ } }, "System.Globalization.Calendars/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.0", "System.Runtime": "4.0.0" @@ -8793,6 +9382,7 @@ } }, "System.Globalization.Extensions/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.10", "System.Resources.ResourceManager": "4.0.0", @@ -8808,6 +9398,7 @@ } }, "System.IO/4.0.10": { + "type": "package", "dependencies": { "System.Globalization": "4.0.0", "System.Runtime": "4.0.20", @@ -8824,6 +9415,7 @@ } }, "System.IO.Compression/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.IO": "4.0.0", @@ -8844,11 +9436,13 @@ } }, "System.IO.Compression.clrcompression-x86/4.0.0": { + "type": "package", "native": { "runtimes/win10-x86/native/ClrCompression.dll": {} } }, "System.IO.Compression.ZipFile/4.0.0": { + "type": "package", "dependencies": { "System.IO": "4.0.10", "System.IO.Compression": "4.0.0", @@ -8867,6 +9461,7 @@ } }, "System.IO.FileSystem/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -8892,6 +9487,7 @@ } }, "System.IO.FileSystem.Primitives/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20" }, @@ -8903,6 +9499,7 @@ } }, "System.IO.IsolatedStorage/4.0.0": { + "type": "package", "dependencies": { "System.IO": "4.0.10", "System.IO.FileSystem": "4.0.0", @@ -8922,6 +9519,7 @@ } }, "System.IO.UnmanagedMemoryStream/4.0.0": { + "type": "package", "dependencies": { "System.IO": "4.0.10", "System.IO.FileSystem.Primitives": "4.0.0", @@ -8939,6 +9537,7 @@ } }, "System.Linq/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -8954,6 +9553,7 @@ } }, "System.Linq.Expressions/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.0", @@ -8979,6 +9579,7 @@ } }, "System.Linq.Parallel/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Collections.Concurrent": "4.0.10", @@ -8999,6 +9600,7 @@ } }, "System.Linq.Queryable/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Linq": "4.0.0", @@ -9016,6 +9618,7 @@ } }, "System.Net.Http/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -9040,6 +9643,7 @@ } }, "System.Net.Http.Rtc/4.0.0": { + "type": "package", "dependencies": { "System.Net.Http": "4.0.0", "System.Runtime": "4.0.20" @@ -9052,6 +9656,7 @@ } }, "System.Net.NetworkInformation/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0", "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", @@ -9065,6 +9670,7 @@ } }, "System.Net.Primitives/4.0.10": { + "type": "package", "dependencies": { "System.Private.Networking": "4.0.0", "System.Runtime": "4.0.20" @@ -9077,6 +9683,7 @@ } }, "System.Net.Requests/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -9097,6 +9704,7 @@ } }, "System.Net.Sockets/4.0.0": { + "type": "package", "dependencies": { "System.Private.Networking": "4.0.0", "System.Runtime": "4.0.20" @@ -9109,6 +9717,7 @@ } }, "System.Net.WebHeaderCollection/4.0.0": { + "type": "package", "dependencies": { "System.Collections.NonGeneric": "4.0.0", "System.Collections.Specialized": "4.0.0", @@ -9123,6 +9732,7 @@ } }, "System.Numerics.Vectors/4.1.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.10", "System.Resources.ResourceManager": "4.0.0", @@ -9137,6 +9747,7 @@ } }, "System.Numerics.Vectors.WindowsRuntime/4.0.0": { + "type": "package", "dependencies": { "System.Numerics.Vectors": "4.1.0", "System.Runtime": "4.0.20", @@ -9150,6 +9761,7 @@ } }, "System.ObjectModel/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -9165,6 +9777,7 @@ } }, "System.Private.DataContractSerialization/4.1.0": { + "type": "package", "dependencies": { "runtime.any.System.Private.DataContractSerialization": "4.1.0" }, @@ -9173,6 +9786,7 @@ } }, "System.Private.Networking/4.0.0": { + "type": "package", "dependencies": { "Microsoft.Win32.Primitives": "4.0.0", "System.Collections": "4.0.10", @@ -9200,6 +9814,7 @@ } }, "System.Private.ServiceModel/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Collections.Concurrent": "4.0.10", @@ -9248,6 +9863,7 @@ } }, "System.Private.Uri/4.0.0": { + "type": "package", "compile": { "ref/netcore50/_._": {} }, @@ -9256,6 +9872,7 @@ } }, "System.Reflection/4.0.10": { + "type": "package", "dependencies": { "System.IO": "4.0.0", "System.Reflection.Primitives": "4.0.0", @@ -9269,6 +9886,7 @@ } }, "System.Reflection.Context/4.0.0": { + "type": "package", "dependencies": { "System.Reflection": "4.0.10", "System.Resources.ResourceManager": "4.0.0", @@ -9282,6 +9900,7 @@ } }, "System.Reflection.DispatchProxy/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Linq": "4.0.0", @@ -9302,6 +9921,7 @@ } }, "System.Reflection.Emit/4.0.0": { + "type": "package", "dependencies": { "System.IO": "4.0.0", "System.Reflection": "4.0.0", @@ -9317,6 +9937,7 @@ } }, "System.Reflection.Emit.ILGeneration/4.0.0": { + "type": "package", "dependencies": { "System.Reflection": "4.0.0", "System.Reflection.Primitives": "4.0.0", @@ -9330,6 +9951,7 @@ } }, "System.Reflection.Emit.Lightweight/4.0.0": { + "type": "package", "dependencies": { "System.Reflection": "4.0.0", "System.Reflection.Emit.ILGeneration": "4.0.0", @@ -9344,6 +9966,7 @@ } }, "System.Reflection.Extensions/4.0.0": { + "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.10", "System.Reflection": "4.0.10", @@ -9361,6 +9984,7 @@ } }, "System.Reflection.Metadata/1.0.22": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Collections.Immutable": "1.1.37", @@ -9385,6 +10009,7 @@ } }, "System.Reflection.Primitives/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0", "System.Threading": "4.0.0" @@ -9397,6 +10022,7 @@ } }, "System.Reflection.TypeExtensions/4.0.0": { + "type": "package", "dependencies": { "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", @@ -9415,6 +10041,7 @@ } }, "System.Resources.ResourceManager/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.0", "System.Reflection": "4.0.10", @@ -9428,6 +10055,7 @@ } }, "System.Runtime/4.0.20": { + "type": "package", "dependencies": { "System.Private.Uri": "4.0.0" }, @@ -9439,6 +10067,7 @@ } }, "System.Runtime.Extensions/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20" }, @@ -9450,6 +10079,7 @@ } }, "System.Runtime.Handles/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -9461,6 +10091,7 @@ } }, "System.Runtime.InteropServices/4.0.20": { + "type": "package", "dependencies": { "System.Reflection": "4.0.0", "System.Reflection.Primitives": "4.0.0", @@ -9475,6 +10106,7 @@ } }, "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { + "type": "package", "compile": { "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} }, @@ -9483,6 +10115,7 @@ } }, "System.Runtime.Numerics/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.10", "System.Resources.ResourceManager": "4.0.0", @@ -9497,6 +10130,7 @@ } }, "System.Runtime.Serialization.Json/4.0.1": { + "type": "package", "dependencies": { "System.IO": "4.0.0", "System.Private.DataContractSerialization": "4.1.0", @@ -9510,6 +10144,7 @@ } }, "System.Runtime.Serialization.Primitives/4.1.0": { + "type": "package", "dependencies": { "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20" @@ -9522,6 +10157,7 @@ } }, "System.Runtime.Serialization.Xml/4.1.0": { + "type": "package", "dependencies": { "System.IO": "4.0.0", "System.Private.DataContractSerialization": "4.1.0", @@ -9538,6 +10174,7 @@ } }, "System.Runtime.WindowsRuntime/4.0.10": { + "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.10", "System.Globalization": "4.0.0", @@ -9558,6 +10195,7 @@ } }, "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.0", "System.Resources.ResourceManager": "4.0.0", @@ -9573,6 +10211,7 @@ } }, "System.Security.Claims/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.0", @@ -9591,6 +10230,7 @@ } }, "System.Security.Principal/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -9602,6 +10242,7 @@ } }, "System.ServiceModel.Duplex/4.0.0": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -9614,6 +10255,7 @@ } }, "System.ServiceModel.Http/4.0.10": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -9626,6 +10268,7 @@ } }, "System.ServiceModel.NetTcp/4.0.0": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -9638,6 +10281,7 @@ } }, "System.ServiceModel.Primitives/4.0.0": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -9650,6 +10294,7 @@ } }, "System.ServiceModel.Security/4.0.0": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -9662,6 +10307,7 @@ } }, "System.Text.Encoding/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -9673,6 +10319,7 @@ } }, "System.Text.Encoding.CodePages/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Globalization": "4.0.10", @@ -9694,6 +10341,7 @@ } }, "System.Text.Encoding.Extensions/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0", "System.Text.Encoding": "4.0.10" @@ -9706,6 +10354,7 @@ } }, "System.Text.RegularExpressions/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Globalization": "4.0.10", @@ -9722,6 +10371,7 @@ } }, "System.Threading/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0", "System.Threading.Tasks": "4.0.0" @@ -9734,6 +10384,7 @@ } }, "System.Threading.Overlapped/4.0.0": { + "type": "package", "dependencies": { "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20", @@ -9750,6 +10401,7 @@ } }, "System.Threading.Tasks/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -9761,6 +10413,7 @@ } }, "System.Threading.Tasks.Dataflow/4.5.25": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Collections.Concurrent": "4.0.0", @@ -9782,6 +10435,7 @@ } }, "System.Threading.Tasks.Parallel/4.0.0": { + "type": "package", "dependencies": { "System.Collections.Concurrent": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -9800,6 +10454,7 @@ } }, "System.Threading.Timer/4.0.0": { + "type": "package", "compile": { "ref/netcore50/System.Threading.Timer.dll": {} }, @@ -9808,6 +10463,7 @@ } }, "System.Xml.ReaderWriter/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -9832,6 +10488,7 @@ } }, "System.Xml.XDocument/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -9853,6 +10510,7 @@ } }, "System.Xml.XmlDocument/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -9873,6 +10531,7 @@ } }, "System.Xml.XmlSerializer/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -9899,10 +10558,18 @@ "runtime": { "lib/netcore50/System.Xml.XmlSerializer.dll": {} } + }, + "FooEditEngine.UWP/1.0.0": { + "type": "project", + "framework": "UAP,Version=v10.0", + "dependencies": { + "Microsoft.NETCore.UniversalWindowsPlatform": "5.1.0" + } } }, "UAP,Version=v10.0/win10-x86-aot": { "Microsoft.CSharp/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -9929,6 +10596,7 @@ } }, "Microsoft.NETCore/5.0.0": { + "type": "package", "dependencies": { "Microsoft.CSharp": "4.0.0", "Microsoft.NETCore.Targets": "1.0.0", @@ -9987,8 +10655,11 @@ "System.Xml.XDocument": "4.0.10" } }, - "Microsoft.NETCore.Platforms/1.0.0": {}, + "Microsoft.NETCore.Platforms/1.0.0": { + "type": "package" + }, "Microsoft.NETCore.Portable.Compatibility/1.0.0": { + "type": "package", "dependencies": { "Microsoft.NETCore.Runtime": "1.0.0" }, @@ -10024,21 +10695,30 @@ } }, "Microsoft.NETCore.Runtime/1.0.1": { + "type": "package", "dependencies": { "Microsoft.NETCore.Runtime.CoreCLR": "1.0.1", "Microsoft.NETCore.Runtime.Native": "1.0.1" } }, - "Microsoft.NETCore.Runtime.CoreCLR/1.0.1": {}, - "Microsoft.NETCore.Runtime.Native/1.0.1": {}, + "Microsoft.NETCore.Runtime.CoreCLR/1.0.1": { + "type": "package" + }, + "Microsoft.NETCore.Runtime.Native/1.0.1": { + "type": "package" + }, "Microsoft.NETCore.Targets/1.0.0": { + "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.0", "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "5.0.0" } }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {}, + "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": { + "type": "package" + }, "Microsoft.NETCore.UniversalWindowsPlatform/5.1.0": { + "type": "package", "dependencies": { "Microsoft.NETCore": "5.0.0", "Microsoft.NETCore.Portable.Compatibility": "1.0.0", @@ -10071,6 +10751,7 @@ } }, "Microsoft.VisualBasic/10.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -10097,6 +10778,7 @@ } }, "Microsoft.Win32.Primitives/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20", "System.Runtime.InteropServices": "4.0.20" @@ -10109,6 +10791,7 @@ } }, "runtime.aot.System.Private.DataContractSerialization/4.1.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -10140,6 +10823,7 @@ } }, "System.AppContext/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Resources.ResourceManager": "4.0.0", @@ -10154,6 +10838,7 @@ } }, "System.Collections/4.0.10": { + "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.0", "System.Resources.ResourceManager": "4.0.0", @@ -10169,6 +10854,7 @@ } }, "System.Collections.Concurrent/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -10188,6 +10874,7 @@ } }, "System.Collections.Immutable/1.1.37": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.0", @@ -10206,6 +10893,7 @@ } }, "System.Collections.NonGeneric/4.0.0": { + "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.10", "System.Globalization": "4.0.10", @@ -10222,6 +10910,7 @@ } }, "System.Collections.Specialized/4.0.0": { + "type": "package", "dependencies": { "System.Collections.NonGeneric": "4.0.0", "System.Globalization": "4.0.10", @@ -10239,6 +10928,7 @@ } }, "System.ComponentModel/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20" }, @@ -10250,6 +10940,7 @@ } }, "System.ComponentModel.Annotations/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.ComponentModel": "4.0.0", @@ -10271,6 +10962,7 @@ } }, "System.ComponentModel.EventBasedAsync/4.0.10": { + "type": "package", "dependencies": { "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20", @@ -10285,6 +10977,7 @@ } }, "System.Data.Common/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Collections.NonGeneric": "4.0.0", @@ -10304,6 +10997,7 @@ } }, "System.Diagnostics.Contracts/4.0.0": { + "type": "package", "compile": { "ref/netcore50/System.Diagnostics.Contracts.dll": {} }, @@ -10312,6 +11006,7 @@ } }, "System.Diagnostics.Debug/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -10323,6 +11018,7 @@ } }, "System.Diagnostics.StackTrace/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20" }, @@ -10334,6 +11030,7 @@ } }, "System.Diagnostics.Tools/4.0.0": { + "type": "package", "compile": { "ref/netcore50/System.Diagnostics.Tools.dll": {} }, @@ -10342,6 +11039,7 @@ } }, "System.Diagnostics.Tracing/4.0.20": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Globalization": "4.0.0", @@ -10362,6 +11060,7 @@ } }, "System.Dynamic.Runtime/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.0", @@ -10384,6 +11083,7 @@ } }, "System.Globalization/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -10395,6 +11095,7 @@ } }, "System.Globalization.Calendars/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.0", "System.Runtime": "4.0.0" @@ -10407,6 +11108,7 @@ } }, "System.Globalization.Extensions/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.10", "System.Resources.ResourceManager": "4.0.0", @@ -10422,6 +11124,7 @@ } }, "System.IO/4.0.10": { + "type": "package", "dependencies": { "System.Globalization": "4.0.0", "System.Runtime": "4.0.20", @@ -10438,6 +11141,7 @@ } }, "System.IO.Compression/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.IO": "4.0.0", @@ -10458,11 +11162,13 @@ } }, "System.IO.Compression.clrcompression-x86/4.0.0": { + "type": "package", "native": { "runtimes/win10-x86/native/ClrCompression.dll": {} } }, "System.IO.Compression.ZipFile/4.0.0": { + "type": "package", "dependencies": { "System.IO": "4.0.10", "System.IO.Compression": "4.0.0", @@ -10481,6 +11187,7 @@ } }, "System.IO.FileSystem/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -10506,6 +11213,7 @@ } }, "System.IO.FileSystem.Primitives/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20" }, @@ -10517,6 +11225,7 @@ } }, "System.IO.IsolatedStorage/4.0.0": { + "type": "package", "dependencies": { "System.IO": "4.0.10", "System.IO.FileSystem": "4.0.0", @@ -10536,6 +11245,7 @@ } }, "System.IO.UnmanagedMemoryStream/4.0.0": { + "type": "package", "dependencies": { "System.IO": "4.0.10", "System.IO.FileSystem.Primitives": "4.0.0", @@ -10553,6 +11263,7 @@ } }, "System.Linq/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -10568,6 +11279,7 @@ } }, "System.Linq.Expressions/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.0", @@ -10591,6 +11303,7 @@ } }, "System.Linq.Parallel/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Collections.Concurrent": "4.0.10", @@ -10611,6 +11324,7 @@ } }, "System.Linq.Queryable/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Linq": "4.0.0", @@ -10628,6 +11342,7 @@ } }, "System.Net.Http/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -10652,6 +11367,7 @@ } }, "System.Net.Http.Rtc/4.0.0": { + "type": "package", "dependencies": { "System.Net.Http": "4.0.0", "System.Runtime": "4.0.20" @@ -10664,6 +11380,7 @@ } }, "System.Net.NetworkInformation/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0", "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", @@ -10677,6 +11394,7 @@ } }, "System.Net.Primitives/4.0.10": { + "type": "package", "dependencies": { "System.Private.Networking": "4.0.0", "System.Runtime": "4.0.20" @@ -10689,6 +11407,7 @@ } }, "System.Net.Requests/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -10709,6 +11428,7 @@ } }, "System.Net.Sockets/4.0.0": { + "type": "package", "dependencies": { "System.Private.Networking": "4.0.0", "System.Runtime": "4.0.20" @@ -10721,6 +11441,7 @@ } }, "System.Net.WebHeaderCollection/4.0.0": { + "type": "package", "dependencies": { "System.Collections.NonGeneric": "4.0.0", "System.Collections.Specialized": "4.0.0", @@ -10735,6 +11456,7 @@ } }, "System.Numerics.Vectors/4.1.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.10", "System.Resources.ResourceManager": "4.0.0", @@ -10749,6 +11471,7 @@ } }, "System.Numerics.Vectors.WindowsRuntime/4.0.0": { + "type": "package", "dependencies": { "System.Numerics.Vectors": "4.1.0", "System.Runtime": "4.0.20", @@ -10762,6 +11485,7 @@ } }, "System.ObjectModel/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -10777,6 +11501,7 @@ } }, "System.Private.DataContractSerialization/4.1.0": { + "type": "package", "dependencies": { "runtime.aot.System.Private.DataContractSerialization": "4.1.0" }, @@ -10785,6 +11510,7 @@ } }, "System.Private.Networking/4.0.0": { + "type": "package", "dependencies": { "Microsoft.Win32.Primitives": "4.0.0", "System.Collections": "4.0.10", @@ -10812,6 +11538,7 @@ } }, "System.Private.ServiceModel/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Collections.Concurrent": "4.0.10", @@ -10860,6 +11587,7 @@ } }, "System.Private.Uri/4.0.0": { + "type": "package", "compile": { "ref/netcore50/_._": {} }, @@ -10868,6 +11596,7 @@ } }, "System.Reflection/4.0.10": { + "type": "package", "dependencies": { "System.IO": "4.0.0", "System.Reflection.Primitives": "4.0.0", @@ -10881,6 +11610,7 @@ } }, "System.Reflection.Context/4.0.0": { + "type": "package", "dependencies": { "System.Reflection": "4.0.10", "System.Resources.ResourceManager": "4.0.0", @@ -10894,6 +11624,7 @@ } }, "System.Reflection.DispatchProxy/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Linq": "4.0.0", @@ -10912,6 +11643,7 @@ } }, "System.Reflection.Emit/4.0.0": { + "type": "package", "dependencies": { "System.IO": "4.0.0", "System.Reflection": "4.0.0", @@ -10927,6 +11659,7 @@ } }, "System.Reflection.Emit.ILGeneration/4.0.0": { + "type": "package", "dependencies": { "System.Reflection": "4.0.0", "System.Reflection.Primitives": "4.0.0", @@ -10940,6 +11673,7 @@ } }, "System.Reflection.Extensions/4.0.0": { + "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.10", "System.Reflection": "4.0.10", @@ -10957,6 +11691,7 @@ } }, "System.Reflection.Metadata/1.0.22": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Collections.Immutable": "1.1.37", @@ -10981,6 +11716,7 @@ } }, "System.Reflection.Primitives/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0", "System.Threading": "4.0.0" @@ -10993,6 +11729,7 @@ } }, "System.Reflection.TypeExtensions/4.0.0": { + "type": "package", "dependencies": { "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", @@ -11011,6 +11748,7 @@ } }, "System.Resources.ResourceManager/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.0", "System.Reflection": "4.0.10", @@ -11024,6 +11762,7 @@ } }, "System.Runtime/4.0.20": { + "type": "package", "dependencies": { "System.Private.Uri": "4.0.0" }, @@ -11035,6 +11774,7 @@ } }, "System.Runtime.Extensions/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.20" }, @@ -11046,6 +11786,7 @@ } }, "System.Runtime.Handles/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -11057,6 +11798,7 @@ } }, "System.Runtime.InteropServices/4.0.20": { + "type": "package", "dependencies": { "System.Reflection": "4.0.0", "System.Reflection.Primitives": "4.0.0", @@ -11071,6 +11813,7 @@ } }, "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { + "type": "package", "compile": { "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} }, @@ -11079,6 +11822,7 @@ } }, "System.Runtime.Numerics/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.10", "System.Resources.ResourceManager": "4.0.0", @@ -11093,6 +11837,7 @@ } }, "System.Runtime.Serialization.Json/4.0.1": { + "type": "package", "dependencies": { "System.IO": "4.0.0", "System.Private.DataContractSerialization": "4.1.0", @@ -11106,6 +11851,7 @@ } }, "System.Runtime.Serialization.Primitives/4.1.0": { + "type": "package", "dependencies": { "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20" @@ -11118,6 +11864,7 @@ } }, "System.Runtime.Serialization.Xml/4.1.0": { + "type": "package", "dependencies": { "System.IO": "4.0.0", "System.Private.DataContractSerialization": "4.1.0", @@ -11134,6 +11881,7 @@ } }, "System.Runtime.WindowsRuntime/4.0.10": { + "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.10", "System.Globalization": "4.0.0", @@ -11154,6 +11902,7 @@ } }, "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { + "type": "package", "dependencies": { "System.Globalization": "4.0.0", "System.Resources.ResourceManager": "4.0.0", @@ -11169,6 +11918,7 @@ } }, "System.Security.Claims/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.0", @@ -11187,6 +11937,7 @@ } }, "System.Security.Principal/4.0.0": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -11198,6 +11949,7 @@ } }, "System.ServiceModel.Duplex/4.0.0": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -11210,6 +11962,7 @@ } }, "System.ServiceModel.Http/4.0.10": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -11222,6 +11975,7 @@ } }, "System.ServiceModel.NetTcp/4.0.0": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -11234,6 +11988,7 @@ } }, "System.ServiceModel.Primitives/4.0.0": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -11246,6 +12001,7 @@ } }, "System.ServiceModel.Security/4.0.0": { + "type": "package", "dependencies": { "System.Private.ServiceModel": "4.0.0", "System.Runtime": "4.0.20" @@ -11258,6 +12014,7 @@ } }, "System.Text.Encoding/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -11269,6 +12026,7 @@ } }, "System.Text.Encoding.CodePages/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Globalization": "4.0.10", @@ -11290,6 +12048,7 @@ } }, "System.Text.Encoding.Extensions/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0", "System.Text.Encoding": "4.0.10" @@ -11302,6 +12061,7 @@ } }, "System.Text.RegularExpressions/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Globalization": "4.0.10", @@ -11318,6 +12078,7 @@ } }, "System.Threading/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0", "System.Threading.Tasks": "4.0.0" @@ -11330,6 +12091,7 @@ } }, "System.Threading.Overlapped/4.0.0": { + "type": "package", "dependencies": { "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20", @@ -11346,6 +12108,7 @@ } }, "System.Threading.Tasks/4.0.10": { + "type": "package", "dependencies": { "System.Runtime": "4.0.0" }, @@ -11357,6 +12120,7 @@ } }, "System.Threading.Tasks.Dataflow/4.5.25": { + "type": "package", "dependencies": { "System.Collections": "4.0.0", "System.Collections.Concurrent": "4.0.0", @@ -11378,6 +12142,7 @@ } }, "System.Threading.Tasks.Parallel/4.0.0": { + "type": "package", "dependencies": { "System.Collections.Concurrent": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -11396,6 +12161,7 @@ } }, "System.Threading.Timer/4.0.0": { + "type": "package", "compile": { "ref/netcore50/System.Threading.Timer.dll": {} }, @@ -11404,6 +12170,7 @@ } }, "System.Xml.ReaderWriter/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -11428,6 +12195,7 @@ } }, "System.Xml.XDocument/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -11449,6 +12217,7 @@ } }, "System.Xml.XmlDocument/4.0.0": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -11469,6 +12238,7 @@ } }, "System.Xml.XmlSerializer/4.0.10": { + "type": "package", "dependencies": { "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -11495,6 +12265,13 @@ "runtime": { "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {} } + }, + "FooEditEngine.UWP/1.0.0": { + "type": "project", + "framework": "UAP,Version=v10.0", + "dependencies": { + "Microsoft.NETCore.UniversalWindowsPlatform": "5.1.0" + } } } }, @@ -11502,6 +12279,7 @@ "Microsoft.CSharp/4.0.0": { "sha512": "oWqeKUxHXdK6dL2CFjgMcaBISbkk+AqEg+yvJHE4DElNzS4QaTsCflgkkqZwVlWby1Dg9zo9n+iCAMFefFdJ/A==", "type": "package", + "path": "microsoft.csharp/4.0.0", "files": [ "Microsoft.CSharp.4.0.0.nupkg.sha512", "Microsoft.CSharp.nuspec", @@ -11541,6 +12319,7 @@ "Microsoft.NETCore/5.0.0": { "sha512": "QQMp0yYQbIdfkKhdEE6Umh2Xonau7tasG36Trw/YlHoWgYQLp7T9L+ZD8EPvdj5ubRhtOuKEKwM7HMpkagB9ZA==", "type": "package", + "path": "microsoft.netcore/5.0.0", "files": [ "Microsoft.NETCore.5.0.0.nupkg.sha512", "Microsoft.NETCore.nuspec", @@ -11550,6 +12329,7 @@ "Microsoft.NETCore.Platforms/1.0.0": { "sha512": "0N77OwGZpXqUco2C/ynv1os7HqdFYifvNIbveLDKqL5PZaz05Rl9enCwVBjF61aumHKueLWIJ3prnmdAXxww4A==", "type": "package", + "path": "microsoft.netcore.platforms/1.0.0", "files": [ "Microsoft.NETCore.Platforms.1.0.0.nupkg.sha512", "Microsoft.NETCore.Platforms.nuspec", @@ -11559,6 +12339,7 @@ "Microsoft.NETCore.Portable.Compatibility/1.0.0": { "sha512": "5/IFqf2zN1jzktRJitxO+5kQ+0AilcIbPvSojSJwDG3cGNSMZg44LXLB5E9RkSETE0Wh4QoALdNh1koKoF7/mA==", "type": "package", + "path": "microsoft.netcore.portable.compatibility/1.0.0", "files": [ "Microsoft.NETCore.Portable.Compatibility.1.0.0.nupkg.sha512", "Microsoft.NETCore.Portable.Compatibility.nuspec", @@ -11638,6 +12419,7 @@ "Microsoft.NETCore.Runtime/1.0.1": { "sha512": "WIblAPds88Mwvcu8OjmspmHLG9zyay//n1jMVxQlxikGzZBIeRDz/O7o9qBtOR+vDpfn+Y2EbzdCmPb3brMGRg==", "type": "package", + "path": "microsoft.netcore.runtime/1.0.1", "files": [ "Microsoft.NETCore.Runtime.1.0.1.nupkg.sha512", "Microsoft.NETCore.Runtime.nuspec", @@ -11648,6 +12430,7 @@ "Microsoft.NETCore.Runtime.CoreCLR/1.0.1": { "sha512": "EQlk4pidS+VppUSjhCCMXYlw9mf/47BwyM5XIX/gQHp5/qedKG7jypSMy0SGwv80U5mr1juQC0YROqjr7j8nTA==", "type": "package", + "path": "microsoft.netcore.runtime.coreclr/1.0.1", "files": [ "Microsoft.NETCore.Runtime.CoreCLR.1.0.1.nupkg.sha512", "Microsoft.NETCore.Runtime.CoreCLR.nuspec", @@ -11659,6 +12442,7 @@ "Microsoft.NETCore.Runtime.Native/1.0.1": { "sha512": "VeZR/qn/+FRH5rd1htnwBFIzSBW6xiA7Yu2UzaHKKlyf9Ev9xVXIOitWnkvb/tJMTKdmiCzmfi2TsAMajUHNZA==", "type": "package", + "path": "microsoft.netcore.runtime.native/1.0.1", "files": [ "Microsoft.NETCore.Runtime.Native.1.0.1.nupkg.sha512", "Microsoft.NETCore.Runtime.Native.nuspec", @@ -11669,6 +12453,7 @@ "Microsoft.NETCore.Targets/1.0.0": { "sha512": "XfITpPjYLYRmAeZtb9diw6P7ylLQsSC1U2a/xj10iQpnHxkiLEBXop/psw15qMPuNca7lqgxWvzZGpQxphuXaw==", "type": "package", + "path": "microsoft.netcore.targets/1.0.0", "files": [ "Microsoft.NETCore.Targets.1.0.0.nupkg.sha512", "Microsoft.NETCore.Targets.nuspec", @@ -11678,6 +12463,7 @@ "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": { "sha512": "jszcJ6okLlhqF4OQbhSbixLOuLUyVT3BP7Y7/i7fcDMwnHBd1Pmdz6M1Al9SMDKVLA2oSaItg4tq6C0ydv8lYQ==", "type": "package", + "path": "microsoft.netcore.targets.universalwindowsplatform/5.0.0", "files": [ "Microsoft.NETCore.Targets.UniversalWindowsPlatform.5.0.0.nupkg.sha512", "Microsoft.NETCore.Targets.UniversalWindowsPlatform.nuspec", @@ -11687,6 +12473,7 @@ "Microsoft.NETCore.UniversalWindowsPlatform/5.1.0": { "sha512": "6xdZAZALSJB65rRfOAfB6+aVBBc42Oz8jr8Cqy8J7A34zWVBV9l612lwbEsf6KJ1YdtocJsNcA8sLId3vJL/FA==", "type": "package", + "path": "microsoft.netcore.universalwindowsplatform/5.1.0", "files": [ "Microsoft.NETCore.UniversalWindowsPlatform.5.1.0.nupkg.sha512", "Microsoft.NETCore.UniversalWindowsPlatform.nuspec", @@ -11697,6 +12484,7 @@ "Microsoft.NETCore.Windows.ApiSets-x64/1.0.0": { "sha512": "NC+dpFMdhujz2sWAdJ8EmBk07p1zOlNi0FCCnZEbzftABpw9xZ99EMP/bUJrPTgCxHfzJAiuLPOtAauzVINk0w==", "type": "package", + "path": "microsoft.netcore.windows.apisets-x64/1.0.0", "files": [ "Microsoft.NETCore.Windows.ApiSets-x64.1.0.0.nupkg.sha512", "Microsoft.NETCore.Windows.ApiSets-x64.nuspec", @@ -11862,6 +12650,7 @@ "Microsoft.NETCore.Windows.ApiSets-x86/1.0.0": { "sha512": "/HDRdhz5bZyhHwQ/uk/IbnDIX5VDTsHntEZYkTYo57dM+U3Ttel9/OJv0mjL64wTO/QKUJJNKp9XO+m7nSVjJQ==", "type": "package", + "path": "microsoft.netcore.windows.apisets-x86/1.0.0", "files": [ "Microsoft.NETCore.Windows.ApiSets-x86.1.0.0.nupkg.sha512", "Microsoft.NETCore.Windows.ApiSets-x86.nuspec", @@ -12027,6 +12816,7 @@ "Microsoft.VisualBasic/10.0.0": { "sha512": "5BEm2/HAVd97whRlCChU7rmSh/9cwGlZ/NTNe3Jl07zuPWfKQq5TUvVNUmdvmEe8QRecJLZ4/e7WF1i1O8V42g==", "type": "package", + "path": "microsoft.visualbasic/10.0.0", "files": [ "Microsoft.VisualBasic.10.0.0.nupkg.sha512", "Microsoft.VisualBasic.nuspec", @@ -12056,6 +12846,7 @@ "Microsoft.Win32.Primitives/4.0.0": { "sha512": "CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==", "type": "package", + "path": "microsoft.win32.primitives/4.0.0", "files": [ "Microsoft.Win32.Primitives.4.0.0.nupkg.sha512", "Microsoft.Win32.Primitives.nuspec", @@ -12086,6 +12877,7 @@ "runtime.any.System.Private.DataContractSerialization/4.1.0": { "sha512": "nJ5sB6Q7vbOEZ+tm/L7XISxO0Az6tkMup5rhpgPboVpUKgMnsdWiDvSlzzpK/bsiYxMIJCJ4Xrt2abt8Z1beJw==", "type": "package", + "path": "runtime.any.system.private.datacontractserialization/4.1.0", "files": [ "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -12100,6 +12892,7 @@ "runtime.aot.System.Private.DataContractSerialization/4.1.0": { "sha512": "0GKgzv1P8U+1x0grF5xg9xAjjVahzAZwGNF6ff8/CeXi+1isQYi7vZ/GhiyU7zDaQnKmSOj1/tTZqhOo5P4yTA==", "type": "package", + "path": "runtime.aot.system.private.datacontractserialization/4.1.0", "files": [ "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -12112,6 +12905,7 @@ "runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR/1.0.1": { "sha512": "RGzhZPvizLZVtpUAnRHdIlluBT+IBgj9YuJcpUzvE9X9sDfSIzKLmHoAYeuQDOKXjRiy1qWh6/qsgXF9K8LDrQ==", "type": "package", + "path": "runtime.win7-x64.microsoft.netcore.runtime.coreclr/1.0.1", "files": [ "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -12131,6 +12925,7 @@ "runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR/1.0.1": { "sha512": "Sm4ZEOX0J7RLguqTTv/S1df8DHy+ndLPCg8qlth3icuO6awpSzkqte5gQMV4pSci5YduMed9mgRGcPe3EQ5l2w==", "type": "package", + "path": "runtime.win7-x86.microsoft.netcore.runtime.coreclr/1.0.1", "files": [ "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -12150,6 +12945,7 @@ "runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR/1.0.1": { "sha512": "sO14C2owb6uCS+OuoCUO6baXQQrG4D3rfOtE6iL1RNsiTTe/rjQC7NZY0iWmUjzd7+g+5ejaEv4x3sM2KRAUSw==", "type": "package", + "path": "runtime.win8-arm.microsoft.netcore.runtime.coreclr/1.0.1", "files": [ "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -12169,6 +12965,7 @@ "System.AppContext/4.0.0": { "sha512": "gUoYgAWDC3+xhKeU5KSLbYDhTdBYk9GssrMSCcWUADzOglW+s0AmwVhOUGt2tL5xUl7ZXoYTPdA88zCgKrlG0A==", "type": "package", + "path": "system.appcontext/4.0.0", "files": [ "System.AppContext.4.0.0.nupkg.sha512", "System.AppContext.nuspec", @@ -12200,6 +12997,7 @@ "System.Collections/4.0.10": { "sha512": "ux6ilcZZjV/Gp7JEZpe+2V1eTueq6NuoGRM3eZCFuPM25hLVVgCRuea6STW8hvqreIOE59irJk5/ovpA5xQipw==", "type": "package", + "path": "system.collections/4.0.10", "files": [ "System.Collections.4.0.10.nupkg.sha512", "System.Collections.nuspec", @@ -12232,6 +13030,7 @@ "System.Collections.Concurrent/4.0.10": { "sha512": "ZtMEqOPAjAIqR8fqom9AOKRaB94a+emO2O8uOP6vyJoNswSPrbiwN7iH53rrVpvjMVx0wr4/OMpI7486uGZjbw==", "type": "package", + "path": "system.collections.concurrent/4.0.10", "files": [ "System.Collections.Concurrent.4.0.10.nupkg.sha512", "System.Collections.Concurrent.nuspec", @@ -12262,6 +13061,7 @@ "System.Collections.Immutable/1.1.37": { "sha512": "fTpqwZYBzoklTT+XjTRK8KxvmrGkYHzBiylCcKyQcxiOM8k+QvhNBxRvFHDWzy4OEP5f8/9n+xQ9mEgEXY+muA==", "type": "package", + "path": "system.collections.immutable/1.1.37", "files": [ "System.Collections.Immutable.1.1.37.nupkg.sha512", "System.Collections.Immutable.nuspec", @@ -12274,6 +13074,7 @@ "System.Collections.NonGeneric/4.0.0": { "sha512": "rVgwrFBMkmp8LI6GhAYd6Bx+2uLIXjRfNg6Ie+ASfX8ESuh9e2HNxFy2yh1MPIXZq3OAYa+0mmULVwpnEC6UDA==", "type": "package", + "path": "system.collections.nongeneric/4.0.0", "files": [ "System.Collections.NonGeneric.4.0.0.nupkg.sha512", "System.Collections.NonGeneric.nuspec", @@ -12304,6 +13105,7 @@ "System.Collections.Specialized/4.0.0": { "sha512": "poJFwQCUOoXqvdoGxx+3p8Z63yawcYKPBSFP67Z2jICeOINvEIQZN7mVOAnC7gsVF0WU+A2wtVwfhagC7UCgAg==", "type": "package", + "path": "system.collections.specialized/4.0.0", "files": [ "System.Collections.Specialized.4.0.0.nupkg.sha512", "System.Collections.Specialized.nuspec", @@ -12334,6 +13136,7 @@ "System.ComponentModel/4.0.0": { "sha512": "BzpLdSi++ld7rJLOOt5f/G9GxujP202bBgKORsHcGV36rLB0mfSA2h8chTMoBzFhgN7TE14TmJ2J7Q1RyNCTAw==", "type": "package", + "path": "system.componentmodel/4.0.0", "files": [ "System.ComponentModel.4.0.0.nupkg.sha512", "System.ComponentModel.nuspec", @@ -12365,6 +13168,7 @@ "System.ComponentModel.Annotations/4.0.10": { "sha512": "7+XGyEZx24nP1kpHxCB9e+c6D0fdVDvFwE1xujE9BzlXyNVcy5J5aIO0H/ECupx21QpyRvzZibGAHfL/XLL6dw==", "type": "package", + "path": "system.componentmodel.annotations/4.0.10", "files": [ "System.ComponentModel.Annotations.4.0.10.nupkg.sha512", "System.ComponentModel.Annotations.nuspec", @@ -12395,6 +13199,7 @@ "System.ComponentModel.EventBasedAsync/4.0.10": { "sha512": "d6kXcHUgP0jSPXEQ6hXJYCO6CzfoCi7t9vR3BfjSQLrj4HzpuATpx1gkN7itmTW1O+wjuw6rai4378Nj6N70yw==", "type": "package", + "path": "system.componentmodel.eventbasedasync/4.0.10", "files": [ "System.ComponentModel.EventBasedAsync.4.0.10.nupkg.sha512", "System.ComponentModel.EventBasedAsync.nuspec", @@ -12425,6 +13230,7 @@ "System.Data.Common/4.0.0": { "sha512": "SA7IdoTWiImVr0exDM68r0mKmR4f/qFGxZUrJQKu4YS7F+3afWzSOCezHxWdevQ0ONi4WRQsOiv+Zf9p8H0Feg==", "type": "package", + "path": "system.data.common/4.0.0", "files": [ "System.Data.Common.4.0.0.nupkg.sha512", "System.Data.Common.nuspec", @@ -12455,6 +13261,7 @@ "System.Diagnostics.Contracts/4.0.0": { "sha512": "lMc7HNmyIsu0pKTdA4wf+FMq5jvouUd+oUpV4BdtyqoV0Pkbg9u/7lTKFGqpjZRQosWHq1+B32Lch2wf4AmloA==", "type": "package", + "path": "system.diagnostics.contracts/4.0.0", "files": [ "System.Diagnostics.Contracts.4.0.0.nupkg.sha512", "System.Diagnostics.Contracts.nuspec", @@ -12487,6 +13294,7 @@ "System.Diagnostics.Debug/4.0.10": { "sha512": "pi2KthuvI2LWV2c2V+fwReDsDiKpNl040h6DcwFOb59SafsPT/V1fCy0z66OKwysurJkBMmp5j5CBe3Um+ub0g==", "type": "package", + "path": "system.diagnostics.debug/4.0.10", "files": [ "System.Diagnostics.Debug.4.0.10.nupkg.sha512", "System.Diagnostics.Debug.nuspec", @@ -12519,6 +13327,7 @@ "System.Diagnostics.StackTrace/4.0.0": { "sha512": "PItgenqpRiMqErvQONBlfDwctKpWVrcDSW5pppNZPJ6Bpiyz+KjsWoSiaqs5dt03HEbBTMNCrZb8KCkh7YfXmw==", "type": "package", + "path": "system.diagnostics.stacktrace/4.0.0", "files": [ "System.Diagnostics.StackTrace.4.0.0.nupkg.sha512", "System.Diagnostics.StackTrace.nuspec", @@ -12551,6 +13360,7 @@ "System.Diagnostics.Tools/4.0.0": { "sha512": "uw5Qi2u5Cgtv4xv3+8DeB63iaprPcaEHfpeJqlJiLjIVy6v0La4ahJ6VW9oPbJNIjcavd24LKq0ctT9ssuQXsw==", "type": "package", + "path": "system.diagnostics.tools/4.0.0", "files": [ "System.Diagnostics.Tools.4.0.0.nupkg.sha512", "System.Diagnostics.Tools.nuspec", @@ -12583,6 +13393,7 @@ "System.Diagnostics.Tracing/4.0.20": { "sha512": "gn/wexGHc35Fv++5L1gYHMY5g25COfiZ0PGrL+3PfwzoJd4X2LbTAm/U8d385SI6BKQBI/z4dQfvneS9J27+Tw==", "type": "package", + "path": "system.diagnostics.tracing/4.0.20", "files": [ "System.Diagnostics.Tracing.4.0.20.nupkg.sha512", "System.Diagnostics.Tracing.nuspec", @@ -12615,6 +13426,7 @@ "System.Dynamic.Runtime/4.0.10": { "sha512": "r10VTLdlxtYp46BuxomHnwx7vIoMOr04CFoC/jJJfY22f7HQQ4P+cXY2Nxo6/rIxNNqOxwdbQQwv7Gl88Jsu1w==", "type": "package", + "path": "system.dynamic.runtime/4.0.10", "files": [ "System.Dynamic.Runtime.4.0.10.nupkg.sha512", "System.Dynamic.Runtime.nuspec", @@ -12648,6 +13460,7 @@ "System.Globalization/4.0.10": { "sha512": "kzRtbbCNAxdafFBDogcM36ehA3th8c1PGiz8QRkZn8O5yMBorDHSK8/TGJPYOaCS5zdsGk0u9qXHnW91nqy7fw==", "type": "package", + "path": "system.globalization/4.0.10", "files": [ "System.Globalization.4.0.10.nupkg.sha512", "System.Globalization.nuspec", @@ -12680,6 +13493,7 @@ "System.Globalization.Calendars/4.0.0": { "sha512": "cL6WrdGKnNBx9W/iTr+jbffsEO4RLjEtOYcpVSzPNDoli6X5Q6bAfWtJYbJNOPi8Q0fXgBEvKK1ncFL/3FTqlA==", "type": "package", + "path": "system.globalization.calendars/4.0.0", "files": [ "System.Globalization.Calendars.4.0.0.nupkg.sha512", "System.Globalization.Calendars.nuspec", @@ -12712,6 +13526,7 @@ "System.Globalization.Extensions/4.0.0": { "sha512": "rqbUXiwpBCvJ18ySCsjh20zleazO+6fr3s5GihC2sVwhyS0MUl6+oc5Rzk0z6CKkS4kmxbZQSeZLsK7cFSO0ng==", "type": "package", + "path": "system.globalization.extensions/4.0.0", "files": [ "System.Globalization.Extensions.4.0.0.nupkg.sha512", "System.Globalization.Extensions.nuspec", @@ -12742,6 +13557,7 @@ "System.IO/4.0.10": { "sha512": "kghf1CeYT+W2lw8a50/GxFz5HR9t6RkL4BvjxtTp1NxtEFWywnMA9W8FH/KYXiDNThcw9u/GOViDON4iJFGXIQ==", "type": "package", + "path": "system.io/4.0.10", "files": [ "System.IO.4.0.10.nupkg.sha512", "System.IO.nuspec", @@ -12774,6 +13590,7 @@ "System.IO.Compression/4.0.0": { "sha512": "S+ljBE3py8pujTrsOOYHtDg2cnAifn6kBu/pfh1hMWIXd8DoVh0ADTA6Puv4q+nYj+Msm6JoFLNwuRSmztbsDQ==", "type": "package", + "path": "system.io.compression/4.0.0", "files": [ "System.IO.Compression.4.0.0.nupkg.sha512", "System.IO.Compression.nuspec", @@ -12812,6 +13629,7 @@ "System.IO.Compression.clrcompression-arm/4.0.0": { "sha512": "Kk21GecAbI+H6tMP6/lMssGObbhoHwLiREiB5UkNMCypdxACuF+6gmrdDTousCUcbH28CJeo7tArrnUc+bchuw==", "type": "package", + "path": "system.io.compression.clrcompression-arm/4.0.0", "files": [ "System.IO.Compression.clrcompression-arm.4.0.0.nupkg.sha512", "System.IO.Compression.clrcompression-arm.nuspec", @@ -12822,6 +13640,7 @@ "System.IO.Compression.clrcompression-x64/4.0.0": { "sha512": "Lqr+URMwKzf+8HJF6YrqEqzKzDzFJTE4OekaxqdIns71r8Ufbd8SbZa0LKl9q+7nu6Em4SkIEXVMB7plSXekOw==", "type": "package", + "path": "system.io.compression.clrcompression-x64/4.0.0", "files": [ "System.IO.Compression.clrcompression-x64.4.0.0.nupkg.sha512", "System.IO.Compression.clrcompression-x64.nuspec", @@ -12832,6 +13651,7 @@ "System.IO.Compression.clrcompression-x86/4.0.0": { "sha512": "GmevpuaMRzYDXHu+xuV10fxTO8DsP7OKweWxYtkaxwVnDSj9X6RBupSiXdiveq9yj/xjZ1NbG+oRRRb99kj+VQ==", "type": "package", + "path": "system.io.compression.clrcompression-x86/4.0.0", "files": [ "System.IO.Compression.clrcompression-x86.4.0.0.nupkg.sha512", "System.IO.Compression.clrcompression-x86.nuspec", @@ -12842,6 +13662,7 @@ "System.IO.Compression.ZipFile/4.0.0": { "sha512": "pwntmtsJqtt6Lez4Iyv4GVGW6DaXUTo9Rnlsx0MFagRgX+8F/sxG5S/IzDJabBj68sUWViz1QJrRZL4V9ngWDg==", "type": "package", + "path": "system.io.compression.zipfile/4.0.0", "files": [ "System.IO.Compression.ZipFile.4.0.0.nupkg.sha512", "System.IO.Compression.ZipFile.nuspec", @@ -12872,6 +13693,7 @@ "System.IO.FileSystem/4.0.0": { "sha512": "eo05SPWfG+54UA0wxgRIYOuOslq+2QrJLXZaJDDsfLXG15OLguaItW39NYZTqUb4DeGOkU4R0wpOLOW4ynMUDQ==", "type": "package", + "path": "system.io.filesystem/4.0.0", "files": [ "System.IO.FileSystem.4.0.0.nupkg.sha512", "System.IO.FileSystem.nuspec", @@ -12903,6 +13725,7 @@ "System.IO.FileSystem.Primitives/4.0.0": { "sha512": "7pJUvYi/Yq3A5nagqCCiOw3+aJp3xXc/Cjr8dnJDnER3/6kX3LEencfqmXUcPl9+7OvRNyPMNhqsLAcMK6K/KA==", "type": "package", + "path": "system.io.filesystem.primitives/4.0.0", "files": [ "System.IO.FileSystem.Primitives.4.0.0.nupkg.sha512", "System.IO.FileSystem.Primitives.nuspec", @@ -12933,6 +13756,7 @@ "System.IO.IsolatedStorage/4.0.0": { "sha512": "d5KimUbZ49Ki6A/uwU+Iodng+nhJvpRs7hr/828cfeXC02LxUiggnRnAu+COtWcKvJ2YbBmAGOcO4GLK4fX1+w==", "type": "package", + "path": "system.io.isolatedstorage/4.0.0", "files": [ "System.IO.IsolatedStorage.4.0.0.nupkg.sha512", "System.IO.IsolatedStorage.nuspec", @@ -12961,6 +13785,7 @@ "System.IO.UnmanagedMemoryStream/4.0.0": { "sha512": "i2xczgQfwHmolORBNHxV9b5izP8VOBxgSA2gf+H55xBvwqtR+9r9adtzlc7at0MAwiLcsk6V1TZlv2vfRQr8Sw==", "type": "package", + "path": "system.io.unmanagedmemorystream/4.0.0", "files": [ "System.IO.UnmanagedMemoryStream.4.0.0.nupkg.sha512", "System.IO.UnmanagedMemoryStream.nuspec", @@ -12991,6 +13816,7 @@ "System.Linq/4.0.0": { "sha512": "r6Hlc+ytE6m/9UBr+nNRRdoJEWjoeQiT3L3lXYFDHoXk3VYsRBCDNXrawcexw7KPLaH0zamQLiAb6avhZ50cGg==", "type": "package", + "path": "system.linq/4.0.0", "files": [ "System.Linq.4.0.0.nupkg.sha512", "System.Linq.nuspec", @@ -13022,6 +13848,7 @@ "System.Linq.Expressions/4.0.10": { "sha512": "qhFkPqRsTfXBaacjQhxwwwUoU7TEtwlBIULj7nG7i4qAkvivil31VvOvDKppCSui5yGw0/325ZeNaMYRvTotXw==", "type": "package", + "path": "system.linq.expressions/4.0.10", "files": [ "System.Linq.Expressions.4.0.10.nupkg.sha512", "System.Linq.Expressions.nuspec", @@ -13055,6 +13882,7 @@ "System.Linq.Parallel/4.0.0": { "sha512": "PtH7KKh1BbzVow4XY17pnrn7Io63ApMdwzRE2o2HnzsKQD/0o7X5xe6mxrDUqTm9ZCR3/PNhAlP13VY1HnHsbA==", "type": "package", + "path": "system.linq.parallel/4.0.0", "files": [ "System.Linq.Parallel.4.0.0.nupkg.sha512", "System.Linq.Parallel.nuspec", @@ -13084,6 +13912,7 @@ "System.Linq.Queryable/4.0.0": { "sha512": "DIlvCNn3ucFvwMMzXcag4aFnFJ1fdxkQ5NqwJe9Nh7y8ozzhDm07YakQL/yoF3P1dLzY1T2cTpuwbAmVSdXyBA==", "type": "package", + "path": "system.linq.queryable/4.0.0", "files": [ "System.Linq.Queryable.4.0.0.nupkg.sha512", "System.Linq.Queryable.nuspec", @@ -13115,6 +13944,7 @@ "System.Net.Http/4.0.0": { "sha512": "mZuAl7jw/mFY8jUq4ITKECxVBh9a8SJt9BC/+lJbmo7cRKspxE3PsITz+KiaCEsexN5WYPzwBOx0oJH/0HlPyQ==", "type": "package", + "path": "system.net.http/4.0.0", "files": [ "System.Net.Http.4.0.0.nupkg.sha512", "System.Net.Http.nuspec", @@ -13144,6 +13974,7 @@ "System.Net.Http.Rtc/4.0.0": { "sha512": "PlE+oJgXdbxPmZYR6GBywRkyIPovjB1Y0SYHizj2Iflgu80uJQC4szl9gue4rKI2FgXiEbj9JL7wL5K3mp9HAQ==", "type": "package", + "path": "system.net.http.rtc/4.0.0", "files": [ "System.Net.Http.Rtc.4.0.0.nupkg.sha512", "System.Net.Http.Rtc.nuspec", @@ -13168,6 +13999,7 @@ "System.Net.NetworkInformation/4.0.0": { "sha512": "D68KCf5VK1G1GgFUwD901gU6cnMITksOdfdxUCt9ReCZfT1pigaDqjJ7XbiLAM4jm7TfZHB7g5mbOf1mbG3yBA==", "type": "package", + "path": "system.net.networkinformation/4.0.0", "files": [ "System.Net.NetworkInformation.4.0.0.nupkg.sha512", "System.Net.NetworkInformation.nuspec", @@ -13206,6 +14038,7 @@ "System.Net.Primitives/4.0.10": { "sha512": "YQqIpmMhnKjIbT7rl6dlf7xM5DxaMR+whduZ9wKb9OhMLjoueAJO3HPPJI+Naf3v034kb+xZqdc3zo44o3HWcg==", "type": "package", + "path": "system.net.primitives/4.0.10", "files": [ "System.Net.Primitives.4.0.10.nupkg.sha512", "System.Net.Primitives.nuspec", @@ -13237,6 +14070,7 @@ "System.Net.Requests/4.0.10": { "sha512": "A6XBR7TztiIQg6hx7VGfbBKmRTAavUERm2E7pmNz/gZeGvwyP0lcKHZxylJtNVKj7DPwr91bD87oLY6zZYntcg==", "type": "package", + "path": "system.net.requests/4.0.10", "files": [ "System.Net.Requests.4.0.10.nupkg.sha512", "System.Net.Requests.nuspec", @@ -13267,6 +14101,7 @@ "System.Net.Sockets/4.0.0": { "sha512": "7bBNLdO6Xw0BGyFVSxjloGXMvsc3qQmW+70bYMLwHEAVivMK8zx+E7XO8CeJnAko2mFj6R402E798EGYUksFcQ==", "type": "package", + "path": "system.net.sockets/4.0.0", "files": [ "System.Net.Sockets.4.0.0.nupkg.sha512", "System.Net.Sockets.nuspec", @@ -13297,6 +14132,7 @@ "System.Net.WebHeaderCollection/4.0.0": { "sha512": "IsIZAsHm/yK7R/XASnEc4EMffFLIMgYchG3/zJv6B4LwMnXZwrVlSPpNbPgEVb0lSXyztsn7A6sIPAACQQ2vTQ==", "type": "package", + "path": "system.net.webheadercollection/4.0.0", "files": [ "System.Net.WebHeaderCollection.4.0.0.nupkg.sha512", "System.Net.WebHeaderCollection.nuspec", @@ -13327,6 +14163,7 @@ "System.Numerics.Vectors/4.1.0": { "sha512": "jpubR06GWPoZA0oU5xLM7kHeV59/CKPBXZk4Jfhi0T3DafxbrdueHZ8kXlb+Fb5nd3DAyyMh2/eqEzLX0xv6Qg==", "type": "package", + "path": "system.numerics.vectors/4.1.0", "files": [ "System.Numerics.Vectors.4.1.0.nupkg.sha512", "System.Numerics.Vectors.nuspec", @@ -13347,6 +14184,7 @@ "System.Numerics.Vectors.WindowsRuntime/4.0.0": { "sha512": "Ly7GvoPFZq6GyfZpfS0E7uCk1cinl5BANAngXVuau3lD2QqZJMHitzlPv6n1FlIn6krfv99X2IPkIaVzUwDHXA==", "type": "package", + "path": "system.numerics.vectors.windowsruntime/4.0.0", "files": [ "System.Numerics.Vectors.WindowsRuntime.4.0.0.nupkg.sha512", "System.Numerics.Vectors.WindowsRuntime.nuspec", @@ -13356,6 +14194,7 @@ "System.ObjectModel/4.0.10": { "sha512": "Djn1wb0vP662zxbe+c3mOhvC4vkQGicsFs1Wi0/GJJpp3Eqp+oxbJ+p2Sx3O0efYueggAI5SW+BqEoczjfr1cA==", "type": "package", + "path": "system.objectmodel/4.0.10", "files": [ "System.ObjectModel.4.0.10.nupkg.sha512", "System.ObjectModel.nuspec", @@ -13386,6 +14225,7 @@ "System.Private.DataContractSerialization/4.1.0": { "sha512": "jihi0lC7TMGx8QtMuz3tRFoXdP0BHbceAdd3gvRbNnxM3W93jSRE/cocQyGf64wlC/1etjHKPwnwdu+PDJkjnA==", "type": "package", + "path": "system.private.datacontractserialization/4.1.0", "files": [ "System.Private.DataContractSerialization.4.1.0.nupkg.sha512", "System.Private.DataContractSerialization.nuspec", @@ -13399,6 +14239,7 @@ "System.Private.Networking/4.0.0": { "sha512": "RUEqdBdJjISC65dO8l4LdN7vTdlXH+attUpKnauDUHVtLbIKdlDB9LKoLzCQsTQRP7vzUJHWYXznHJBkjAA7yA==", "type": "package", + "path": "system.private.networking/4.0.0", "files": [ "System.Private.Networking.4.0.0.nupkg.sha512", "System.Private.Networking.nuspec", @@ -13411,6 +14252,7 @@ "System.Private.ServiceModel/4.0.0": { "sha512": "cm2wEa1f9kuUq/2k8uIwepgZJi5HdxXSnjGQIeXmAb7RaWfZPEC/iamv9GJ67b5LPnCZHR0KvtFqh82e8AAYSw==", "type": "package", + "path": "system.private.servicemodel/4.0.0", "files": [ "System.Private.ServiceModel.4.0.0.nupkg.sha512", "System.Private.ServiceModel.nuspec", @@ -13423,6 +14265,7 @@ "System.Private.Uri/4.0.0": { "sha512": "CtuxaCKcRIvPcsqquVl3mPp79EDZPMr2UogfiFCxCs+t2z1VjbpQsKNs1GHZ8VQetqbk1mr0V1yAfMe6y8CHDA==", "type": "package", + "path": "system.private.uri/4.0.0", "files": [ "System.Private.Uri.4.0.0.nupkg.sha512", "System.Private.Uri.nuspec", @@ -13436,6 +14279,7 @@ "System.Reflection/4.0.10": { "sha512": "WZ+4lEE4gqGx6mrqLhSiW4oi6QLPWwdNjzhhTONmhELOrW8Cw9phlO9tltgvRUuQUqYtBiliFwhO5S5fCJElVw==", "type": "package", + "path": "system.reflection/4.0.10", "files": [ "System.Reflection.4.0.10.nupkg.sha512", "System.Reflection.nuspec", @@ -13468,6 +14312,7 @@ "System.Reflection.Context/4.0.0": { "sha512": "Gz4sUHHFd/52RjHccSHbOXdujJEWKfL3gIaA+ekxvQaQfJGbI2tPzA0Uv3WTCTDRGHgtoNq5WS9E007Dt4P/VQ==", "type": "package", + "path": "system.reflection.context/4.0.0", "files": [ "System.Reflection.Context.4.0.0.nupkg.sha512", "System.Reflection.Context.nuspec", @@ -13494,6 +14339,7 @@ "System.Reflection.DispatchProxy/4.0.0": { "sha512": "Kd/4o6DqBfJA4058X8oGEu1KlT8Ej0A+WGeoQgZU2h+3f2vC8NRbHxeOSZvxj9/MPZ1RYmZMGL1ApO9xG/4IVA==", "type": "package", + "path": "system.reflection.dispatchproxy/4.0.0", "files": [ "System.Reflection.DispatchProxy.4.0.0.nupkg.sha512", "System.Reflection.DispatchProxy.nuspec", @@ -13526,6 +14372,7 @@ "System.Reflection.Emit/4.0.0": { "sha512": "CqnQz5LbNbiSxN10cv3Ehnw3j1UZOBCxnE0OO0q/keGQ5ENjyFM6rIG4gm/i0dX6EjdpYkAgKcI/mhZZCaBq4A==", "type": "package", + "path": "system.reflection.emit/4.0.0", "files": [ "System.Reflection.Emit.4.0.0.nupkg.sha512", "System.Reflection.Emit.nuspec", @@ -13553,6 +14400,7 @@ "System.Reflection.Emit.ILGeneration/4.0.0": { "sha512": "02okuusJ0GZiHZSD2IOLIN41GIn6qOr7i5+86C98BPuhlwWqVABwebiGNvhDiXP1f9a6CxEigC7foQD42klcDg==", "type": "package", + "path": "system.reflection.emit.ilgeneration/4.0.0", "files": [ "System.Reflection.Emit.ILGeneration.4.0.0.nupkg.sha512", "System.Reflection.Emit.ILGeneration.nuspec", @@ -13578,6 +14426,7 @@ "System.Reflection.Emit.Lightweight/4.0.0": { "sha512": "DJZhHiOdkN08xJgsJfDjkuOreLLmMcU8qkEEqEHqyhkPUZMMQs0lE8R+6+68BAFWgcdzxtNu0YmIOtEug8j00w==", "type": "package", + "path": "system.reflection.emit.lightweight/4.0.0", "files": [ "System.Reflection.Emit.Lightweight.4.0.0.nupkg.sha512", "System.Reflection.Emit.Lightweight.nuspec", @@ -13603,6 +14452,7 @@ "System.Reflection.Extensions/4.0.0": { "sha512": "dbYaZWCyFAu1TGYUqR2n+Q+1casSHPR2vVW0WVNkXpZbrd2BXcZ7cpvpu9C98CTHtNmyfMWCLpCclDqly23t6A==", "type": "package", + "path": "system.reflection.extensions/4.0.0", "files": [ "System.Reflection.Extensions.4.0.0.nupkg.sha512", "System.Reflection.Extensions.nuspec", @@ -13635,6 +14485,7 @@ "System.Reflection.Metadata/1.0.22": { "sha512": "ltoL/teiEdy5W9fyYdtFr2xJ/4nHyksXLK9dkPWx3ubnj7BVfsSWxvWTg9EaJUXjhWvS/AeTtugZA1/IDQyaPQ==", "type": "package", + "path": "system.reflection.metadata/1.0.22", "files": [ "System.Reflection.Metadata.1.0.22.nupkg.sha512", "System.Reflection.Metadata.nuspec", @@ -13647,6 +14498,7 @@ "System.Reflection.Primitives/4.0.0": { "sha512": "n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==", "type": "package", + "path": "system.reflection.primitives/4.0.0", "files": [ "System.Reflection.Primitives.4.0.0.nupkg.sha512", "System.Reflection.Primitives.nuspec", @@ -13679,6 +14531,7 @@ "System.Reflection.TypeExtensions/4.0.0": { "sha512": "YRM/msNAM86hdxPyXcuZSzmTO0RQFh7YMEPBLTY8cqXvFPYIx2x99bOyPkuU81wRYQem1c1HTkImQ2DjbOBfew==", "type": "package", + "path": "system.reflection.typeextensions/4.0.0", "files": [ "System.Reflection.TypeExtensions.4.0.0.nupkg.sha512", "System.Reflection.TypeExtensions.nuspec", @@ -13711,6 +14564,7 @@ "System.Resources.ResourceManager/4.0.0": { "sha512": "qmqeZ4BJgjfU+G2JbrZt4Dk1LsMxO4t+f/9HarNY6w8pBgweO6jT+cknUH7c3qIrGvyUqraBhU45Eo6UtA0fAw==", "type": "package", + "path": "system.resources.resourcemanager/4.0.0", "files": [ "System.Resources.ResourceManager.4.0.0.nupkg.sha512", "System.Resources.ResourceManager.nuspec", @@ -13743,6 +14597,7 @@ "System.Runtime/4.0.20": { "sha512": "X7N/9Bz7jVPorqdVFO86ns1sX6MlQM+WTxELtx+Z4VG45x9+LKmWH0GRqjgKprUnVuwmfB9EJ9DQng14Z7/zwg==", "type": "package", + "path": "system.runtime/4.0.20", "files": [ "System.Runtime.4.0.20.nupkg.sha512", "System.Runtime.nuspec", @@ -13775,6 +14630,7 @@ "System.Runtime.Extensions/4.0.10": { "sha512": "5dsEwf3Iml7d5OZeT20iyOjT+r+okWpN7xI2v+R4cgd3WSj4DeRPTvPFjDpacbVW4skCAZ8B9hxXJYgkCFKJ1A==", "type": "package", + "path": "system.runtime.extensions/4.0.10", "files": [ "System.Runtime.Extensions.4.0.10.nupkg.sha512", "System.Runtime.Extensions.nuspec", @@ -13807,6 +14663,7 @@ "System.Runtime.Handles/4.0.0": { "sha512": "638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==", "type": "package", + "path": "system.runtime.handles/4.0.0", "files": [ "System.Runtime.Handles.4.0.0.nupkg.sha512", "System.Runtime.Handles.nuspec", @@ -13839,6 +14696,7 @@ "System.Runtime.InteropServices/4.0.20": { "sha512": "ZgDyBYfEnjWoz/viS6VOswA6XOkDSH2DzgbpczbW50RywhnCgTl+w3JEvtAiOGyIh8cyx1NJq80jsNBSUr8Pig==", "type": "package", + "path": "system.runtime.interopservices/4.0.20", "files": [ "System.Runtime.InteropServices.4.0.20.nupkg.sha512", "System.Runtime.InteropServices.nuspec", @@ -13871,6 +14729,7 @@ "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { "sha512": "K5MGSvw/sGPKQYdOVqSpsVbHBE8HccHIDEhUNjM1lui65KGF/slNZfijGU87ggQiVXTI802ebKiOYBkwiLotow==", "type": "package", + "path": "system.runtime.interopservices.windowsruntime/4.0.0", "files": [ "System.Runtime.InteropServices.WindowsRuntime.4.0.0.nupkg.sha512", "System.Runtime.InteropServices.WindowsRuntime.nuspec", @@ -13902,6 +14761,7 @@ "System.Runtime.Numerics/4.0.0": { "sha512": "aAYGEOE01nabQLufQ4YO8WuSyZzOqGcksi8m1BRW8ppkmssR7en8TqiXcBkB2gTkCnKG/Ai2NQY8CgdmgZw/fw==", "type": "package", + "path": "system.runtime.numerics/4.0.0", "files": [ "System.Runtime.Numerics.4.0.0.nupkg.sha512", "System.Runtime.Numerics.nuspec", @@ -13931,6 +14791,7 @@ "System.Runtime.Serialization.Json/4.0.1": { "sha512": "MUqpQDHlwFAy3v+fVzLN26SMGCPW/J2n4vfsBfScPiut/+Kp77Pcy1nWX2FC83WskFMepvmjMcXwTYZ75FCK0Q==", "type": "package", + "path": "system.runtime.serialization.json/4.0.1", "files": [ "System.Runtime.Serialization.Json.4.0.1.nupkg.sha512", "System.Runtime.Serialization.Json.nuspec", @@ -13982,6 +14843,7 @@ "System.Runtime.Serialization.Primitives/4.1.0": { "sha512": "2UBnpTwpEi5dzbNJ8KhbOZ7Te1XQNov9MrtJ+dcnqogjACPNzbOiGT2uU9XgZg+sdbPvr4VMvVjFwJ85uLLCuA==", "type": "package", + "path": "system.runtime.serialization.primitives/4.1.0", "files": [ "System.Runtime.Serialization.Primitives.4.1.0.nupkg.sha512", "System.Runtime.Serialization.Primitives.nuspec", @@ -14046,6 +14908,7 @@ "System.Runtime.Serialization.Xml/4.1.0": { "sha512": "7TvzeIeNvT2GLpmSy/3J1VIkT70MroNujIiBWBe0qeM6/QFPdCcF/1Zxx9Ohc/iZUPAANb1wMruCAiYY2HTTrg==", "type": "package", + "path": "system.runtime.serialization.xml/4.1.0", "files": [ "System.Runtime.Serialization.Xml.4.1.0.nupkg.sha512", "System.Runtime.Serialization.Xml.nuspec", @@ -14110,6 +14973,7 @@ "System.Runtime.WindowsRuntime/4.0.10": { "sha512": "9w6ypdnEw8RrLRlxTbLAYrap4eL1xIQeNoOaumQVOQ8TTD/5g9FGrBtY3KLiGxAPieN9AwAAEIDkugU85Cwuvg==", "type": "package", + "path": "system.runtime.windowsruntime/4.0.10", "files": [ "System.Runtime.WindowsRuntime.4.0.10.nupkg.sha512", "System.Runtime.WindowsRuntime.nuspec", @@ -14137,6 +15001,7 @@ "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { "sha512": "2GY3fkXBMQOyyO9ovaH46CN6MD2ck/Gvk4VNAgVDvtmfO3HXYFNd+bB05WhVcJrHKbfKZNwfwZKpYZ+OsVFsLw==", "type": "package", + "path": "system.runtime.windowsruntime.ui.xaml/4.0.0", "files": [ "System.Runtime.WindowsRuntime.UI.Xaml.4.0.0.nupkg.sha512", "System.Runtime.WindowsRuntime.UI.Xaml.nuspec", @@ -14163,6 +15028,7 @@ "System.Security.Claims/4.0.0": { "sha512": "94NFR/7JN3YdyTH7hl2iSvYmdA8aqShriTHectcK+EbizT71YczMaG6LuqJBQP/HWo66AQyikYYM9aw+4EzGXg==", "type": "package", + "path": "system.security.claims/4.0.0", "files": [ "System.Security.Claims.4.0.0.nupkg.sha512", "System.Security.Claims.nuspec", @@ -14193,6 +15059,7 @@ "System.Security.Principal/4.0.0": { "sha512": "FOhq3jUOONi6fp5j3nPYJMrKtSJlqAURpjiO3FaDIV4DJNEYymWW5uh1pfxySEB8dtAW+I66IypzNge/w9OzZQ==", "type": "package", + "path": "system.security.principal/4.0.0", "files": [ "System.Security.Principal.4.0.0.nupkg.sha512", "System.Security.Principal.nuspec", @@ -14224,6 +15091,7 @@ "System.ServiceModel.Duplex/4.0.0": { "sha512": "JFeDn+IsiwAVJkNNnM7MLefJOnzYhovaHnjk3lzEnUWkYZJeAKrcgLdK6GE2GNjb5mEV8Pad/E0JcA8eCr3eWQ==", "type": "package", + "path": "system.servicemodel.duplex/4.0.0", "files": [ "System.ServiceModel.Duplex.4.0.0.nupkg.sha512", "System.ServiceModel.Duplex.nuspec", @@ -14251,6 +15119,7 @@ "System.ServiceModel.Http/4.0.10": { "sha512": "Vyl7lmvMlXJamtnDugoXuAgAQGSqtA7omK3zDBYByhbYeBC2hRBchgyXox7e5vEO+29TeB1IpoLWQGb7tO9h6A==", "type": "package", + "path": "system.servicemodel.http/4.0.10", "files": [ "System.ServiceModel.Http.4.0.10.nupkg.sha512", "System.ServiceModel.Http.nuspec", @@ -14282,6 +15151,7 @@ "System.ServiceModel.NetTcp/4.0.0": { "sha512": "lV2Cdcso9jOS0KBtgHZHzTLe/Lx/ERdPcvF4dlepUie6/+BOMYTOgg2C7OdpIjp3fwUNXq8nhU+IilmEyjuf/A==", "type": "package", + "path": "system.servicemodel.nettcp/4.0.0", "files": [ "System.ServiceModel.NetTcp.4.0.0.nupkg.sha512", "System.ServiceModel.NetTcp.nuspec", @@ -14309,6 +15179,7 @@ "System.ServiceModel.Primitives/4.0.0": { "sha512": "uF5VYQWR07LgiZkzUr8qjwvqOaIAfwU566MneD4WuC14d8FLJNsAgCJUYhBGB7COjH7HTqnP9ZFmr6c+L83Stg==", "type": "package", + "path": "system.servicemodel.primitives/4.0.0", "files": [ "System.ServiceModel.Primitives.4.0.0.nupkg.sha512", "System.ServiceModel.Primitives.nuspec", @@ -14336,6 +15207,7 @@ "System.ServiceModel.Security/4.0.0": { "sha512": "sPVzsnd8w/TJsW/4sYA9eIGP+RtlpN0AhKLGKf9ywdGGmHPi0kkuX2mx412dM3GN0e4oifuISwvZqby/sI8Feg==", "type": "package", + "path": "system.servicemodel.security/4.0.0", "files": [ "System.ServiceModel.Security.4.0.0.nupkg.sha512", "System.ServiceModel.Security.nuspec", @@ -14363,6 +15235,7 @@ "System.Text.Encoding/4.0.10": { "sha512": "fNlSFgy4OuDlJrP9SFFxMlaLazq6ipv15sU5TiEgg9UCVnA/OgoVUfymFp4AOk1jOkW5SVxWbeeIUptcM+m/Vw==", "type": "package", + "path": "system.text.encoding/4.0.10", "files": [ "System.Text.Encoding.4.0.10.nupkg.sha512", "System.Text.Encoding.nuspec", @@ -14395,6 +15268,7 @@ "System.Text.Encoding.CodePages/4.0.0": { "sha512": "ZHBTr1AXLjY9OuYR7pKx5xfN6QFye1kgd5QAbGrvfCOu7yxRnJs3VUaxERe1fOlnF0mi/xD/Dvb3T3x3HNuPWQ==", "type": "package", + "path": "system.text.encoding.codepages/4.0.0", "files": [ "System.Text.Encoding.CodePages.4.0.0.nupkg.sha512", "System.Text.Encoding.CodePages.nuspec", @@ -14423,6 +15297,7 @@ "System.Text.Encoding.Extensions/4.0.10": { "sha512": "TZvlwXMxKo3bSRIcsWZLCIzIhLbvlz+mGeKYRZv/zUiSoQzGOwkYeBu6hOw2XPQgKqT0F4Rv8zqKdvmp2fWKYg==", "type": "package", + "path": "system.text.encoding.extensions/4.0.10", "files": [ "System.Text.Encoding.Extensions.4.0.10.nupkg.sha512", "System.Text.Encoding.Extensions.nuspec", @@ -14455,6 +15330,7 @@ "System.Text.RegularExpressions/4.0.10": { "sha512": "0vDuHXJePpfMCecWBNOabOKCvzfTbFMNcGgklt3l5+RqHV5SzmF7RUVpuet8V0rJX30ROlL66xdehw2Rdsn2DA==", "type": "package", + "path": "system.text.regularexpressions/4.0.10", "files": [ "System.Text.RegularExpressions.4.0.10.nupkg.sha512", "System.Text.RegularExpressions.nuspec", @@ -14485,6 +15361,7 @@ "System.Threading/4.0.10": { "sha512": "0w6pRxIEE7wuiOJeKabkDgeIKmqf4ER1VNrs6qFwHnooEE78yHwi/bKkg5Jo8/pzGLm0xQJw0nEmPXt1QBAIUA==", "type": "package", + "path": "system.threading/4.0.10", "files": [ "System.Threading.4.0.10.nupkg.sha512", "System.Threading.nuspec", @@ -14517,6 +15394,7 @@ "System.Threading.Overlapped/4.0.0": { "sha512": "X5LuQFhM5FTqaez3eXKJ9CbfSGZ7wj6j4hSVtxct3zmwQXLqG95qoWdvILcgN7xtrDOBIFtpiyDg0vmoI0jE2A==", "type": "package", + "path": "system.threading.overlapped/4.0.0", "files": [ "System.Threading.Overlapped.4.0.0.nupkg.sha512", "System.Threading.Overlapped.nuspec", @@ -14540,6 +15418,7 @@ "System.Threading.Tasks/4.0.10": { "sha512": "NOwJGDfk79jR0bnzosbXLVD/PdI8KzBeESoa3CofEM5v9R5EBfcI0Jyf18stx+0IYV9okmDIDxVtxq9TbnR9bQ==", "type": "package", + "path": "system.threading.tasks/4.0.10", "files": [ "System.Threading.Tasks.4.0.10.nupkg.sha512", "System.Threading.Tasks.nuspec", @@ -14572,6 +15451,7 @@ "System.Threading.Tasks.Dataflow/4.5.25": { "sha512": "Y5/Dj+tYlDxHBwie7bFKp3+1uSG4vqTJRF7Zs7kaUQ3ahYClffCTxvgjrJyPclC+Le55uE7bMLgjZQVOQr3Jfg==", "type": "package", + "path": "system.threading.tasks.dataflow/4.5.25", "files": [ "System.Threading.Tasks.Dataflow.4.5.25.nupkg.sha512", "System.Threading.Tasks.Dataflow.nuspec", @@ -14586,6 +15466,7 @@ "System.Threading.Tasks.Parallel/4.0.0": { "sha512": "GXDhjPhF3nE4RtDia0W6JR4UMdmhOyt9ibHmsNV6GLRT4HAGqU636Teo4tqvVQOFp2R6b1ffxPXiRaoqtzGxuA==", "type": "package", + "path": "system.threading.tasks.parallel/4.0.0", "files": [ "System.Threading.Tasks.Parallel.4.0.0.nupkg.sha512", "System.Threading.Tasks.Parallel.nuspec", @@ -14615,6 +15496,7 @@ "System.Threading.Timer/4.0.0": { "sha512": "BIdJH5/e4FnVl7TkRUiE3pWytp7OYiRUGtwUbyLewS/PhKiLepFetdtlW+FvDYOVn60Q2NMTrhHhJ51q+sVW5g==", "type": "package", + "path": "system.threading.timer/4.0.0", "files": [ "System.Threading.Timer.4.0.0.nupkg.sha512", "System.Threading.Timer.nuspec", @@ -14645,6 +15527,7 @@ "System.Xml.ReaderWriter/4.0.10": { "sha512": "VdmWWMH7otrYV7D+cviUo7XjX0jzDnD/lTGSZTlZqfIQ5PhXk85j+6P0TK9od3PnOd5ZIM+pOk01G/J+3nh9/w==", "type": "package", + "path": "system.xml.readerwriter/4.0.10", "files": [ "System.Xml.ReaderWriter.4.0.10.nupkg.sha512", "System.Xml.ReaderWriter.nuspec", @@ -14675,6 +15558,7 @@ "System.Xml.XDocument/4.0.10": { "sha512": "+ej0g0INnXDjpS2tDJsLO7/BjyBzC+TeBXLeoGnvRrm4AuBH9PhBjjZ1IuKWOhCkxPkFognUOKhZHS2glIOlng==", "type": "package", + "path": "system.xml.xdocument/4.0.10", "files": [ "System.Xml.XDocument.4.0.10.nupkg.sha512", "System.Xml.XDocument.nuspec", @@ -14705,6 +15589,7 @@ "System.Xml.XmlDocument/4.0.0": { "sha512": "H5qTx2+AXgaKE5wehU1ZYeYPFpp/rfFh69/937NvwCrDqbIkvJRmIFyKKpkoMI6gl9hGfuVizfIudVTMyowCXw==", "type": "package", + "path": "system.xml.xmldocument/4.0.0", "files": [ "System.Xml.XmlDocument.4.0.0.nupkg.sha512", "System.Xml.XmlDocument.nuspec", @@ -14735,6 +15620,7 @@ "System.Xml.XmlSerializer/4.0.10": { "sha512": "OKhE6vruk88z/hl0lmfrMvXteTASgJUagu6PT6S10i9uLbvDR3pTwB6jVgiwa2D2qtTB+eneZbS9jljhPXhTtg==", "type": "package", + "path": "system.xml.xmlserializer/4.0.10", "files": [ "System.Xml.XmlSerializer.4.0.10.nupkg.sha512", "System.Xml.XmlSerializer.nuspec", @@ -14764,6 +15650,11 @@ "runtime.json", "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll" ] + }, + "FooEditEngine.UWP/1.0.0": { + "type": "project", + "path": "../FooEditEngine.UWP/project.json", + "msbuildProject": "../FooEditEngine.UWP/FooEditEngine.UWP.csproj" } }, "projectFileDependencyGroups": { @@ -14771,5 +15662,52 @@ "Microsoft.NETCore.UniversalWindowsPlatform >= 5.1.0" ], "UAP,Version=v10.0": [] + }, + "packageFolders": { + "C:\\Users\\matin\\.nuget\\packages\\": {} + }, + "project": { + "restore": { + "projectUniqueName": "D:\\matin\\Documents\\Visual Studio 2013\\Projects\\FooEditEngine\\UWP\\Test\\Test.csproj", + "projectName": "Test", + "projectPath": "D:\\matin\\Documents\\Visual Studio 2013\\Projects\\FooEditEngine\\UWP\\Test\\Test.csproj", + "projectJsonPath": "D:\\matin\\Documents\\Visual Studio 2013\\Projects\\FooEditEngine\\UWP\\Test\\project.json", + "projectStyle": "ProjectJson", + "frameworks": { + "uap10.0": { + "projectReferences": { + "D:\\matin\\Documents\\Visual Studio 2013\\Projects\\FooEditEngine\\UWP\\FooEditEngine.UWP\\FooEditEngine.UWP.csproj": { + "projectPath": "D:\\matin\\Documents\\Visual Studio 2013\\Projects\\FooEditEngine\\UWP\\FooEditEngine.UWP\\FooEditEngine.UWP.csproj" + } + } + } + } + }, + "dependencies": { + "Microsoft.NETCore.UniversalWindowsPlatform": "5.1.0" + }, + "frameworks": { + "uap10.0": {} + }, + "runtimes": { + "win10-arm": { + "#import": [] + }, + "win10-arm-aot": { + "#import": [] + }, + "win10-x64": { + "#import": [] + }, + "win10-x64-aot": { + "#import": [] + }, + "win10-x86": { + "#import": [] + }, + "win10-x86-aot": { + "#import": [] + } + } } } \ No newline at end of file diff --git a/WPF/FooEditEngine/Direct2D/D2DRender.cs b/WPF/FooEditEngine/Direct2D/D2DRender.cs index cfa3f16..ef38de5 100644 --- a/WPF/FooEditEngine/Direct2D/D2DRender.cs +++ b/WPF/FooEditEngine/Direct2D/D2DRender.cs @@ -65,6 +65,7 @@ namespace FooEditEngine.WPF this.LineMarker = ToColor4(textbox.LineMarker); this.UpdateArea = ToColor4(textbox.UpdateArea); this.LineNumber = ToColor4(textbox.LineNumber); + this.HilightForeground = ToColor4(textbox.HilightForeground); this.store = textbox.TextStore; this.CreateDevice(); @@ -177,8 +178,9 @@ namespace FooEditEngine.WPF row, x, y, - SelectRanges, - PreDrawOneLine); + PreDrawOneLine, + SelectRanges + ); } private void DrawImeConversionLine(MyTextLayout layout,LineToIndexTable lti,int row,double x,double y) diff --git a/WPF/FooEditEngine/FooTextBox.cs b/WPF/FooEditEngine/FooTextBox.cs index b93cc7d..90ba548 100644 --- a/WPF/FooEditEngine/FooTextBox.cs +++ b/WPF/FooEditEngine/FooTextBox.cs @@ -1382,6 +1382,9 @@ namespace FooEditEngine.WPF case "Foreground": this.Render.Foreground = D2DRender.ToColor4(this.Foreground); break; + case "HilightForeground": + this.Render.HilightForeground = D2DRender.ToColor4(this.HilightForeground); + break; case "Background": this.Render.Background = D2DRender.ToColor4(this.Background); break; @@ -1664,7 +1667,22 @@ namespace FooEditEngine.WPF /// public new static readonly DependencyProperty BackgroundProperty = DependencyProperty.Register("Background", typeof(System.Windows.Media.Color), typeof(FooTextBox), new FrameworkPropertyMetadata(SystemColors.WindowColor)); - + + /// + /// 選択時の文字色を表す。これは依存プロパティです + /// + public System.Windows.Media.Color HilightForeground + { + get { return (System.Windows.Media.Color)GetValue(HilightForegroundProperty); } + set { SetValue(HilightForegroundProperty, value); } + } + + /// + /// ControlCharの依存プロパティを表す + /// + public static readonly DependencyProperty HilightForegroundProperty = + DependencyProperty.Register("HilightForeground", typeof(System.Windows.Media.Color), typeof(FooTextBox), new FrameworkPropertyMetadata(Colors.White)); + /// /// コントロールコードの文字色を表す。これは依存プロパティです /// diff --git a/WPF/FooEditEngine/WPF/WPFRender.cs b/WPF/FooEditEngine/WPF/WPFRender.cs index 241e1e3..59afbfa 100644 --- a/WPF/FooEditEngine/WPF/WPFRender.cs +++ b/WPF/FooEditEngine/WPF/WPFRender.cs @@ -472,7 +472,7 @@ namespace FooEditEngine.WPF foreach (TextBounds bound in layout.GetTextBounds(sel.start, sel.length)) { - Rect rect = new Rect(x,y,bound.Rectangle.Width,bound.Rectangle.Height); + Rect rect = new Rect(x, y, bound.Rectangle.Width, bound.Rectangle.Height); this.Context.DrawRectangle(this.Brushes[this.Hilight], null, rect); } } @@ -528,7 +528,7 @@ namespace FooEditEngine.WPF return output; } - public ITextLayout CreateLaytout(string str, SyntaxInfo[] syntaxCollection, IEnumerable MarkerRanges) + public ITextLayout CreateLaytout(string str, SyntaxInfo[] syntaxCollection, IEnumerable MarkerRanges, IEnumerable SelectRanges) { TextLayout layout = new TextLayout(str,this.FontFamily,this.FontSize,Brushes[this.Foreground],this.TextArea.Width); layout.TextWarpping = TextWrapping.NoWrap; diff --git a/WPF/UnitTest/DummyRender.cs b/WPF/UnitTest/DummyRender.cs index 9ea3b5e..43d2e78 100644 --- a/WPF/UnitTest/DummyRender.cs +++ b/WPF/UnitTest/DummyRender.cs @@ -130,7 +130,7 @@ namespace UnitTest throw new NotImplementedException(); } - public ITextLayout CreateLaytout(string str, SyntaxInfo[] syntaxCollection, IEnumerable MarkerRanges) + public ITextLayout CreateLaytout(string str, SyntaxInfo[] syntaxCollection, IEnumerable MarkerRanges, IEnumerable SelectRanges) { return new DummyTextLayout(); } diff --git a/Windows/FooEditEngine/D2DTextRender.cs b/Windows/FooEditEngine/D2DTextRender.cs index 6a57fcc..ac24430 100644 --- a/Windows/FooEditEngine/D2DTextRender.cs +++ b/Windows/FooEditEngine/D2DTextRender.cs @@ -76,14 +76,14 @@ namespace FooEditEngine.Windows } - public void DrawOneLine(LineToIndexTable lti, int row, double x, double y, IEnumerable SelectRanges) + public void DrawOneLine(LineToIndexTable lti, int row, double x, double y, IEnumerable Selections) { this.DrawOneLine(lti, row, x, y, - SelectRanges, - null); + null, + Selections); } public override void DrawCachedBitmap(Rectangle rect) @@ -123,6 +123,7 @@ namespace FooEditEngine.Windows protected override void ConstrctedResource() { + //デフォルト値を反映させる this.Foreground = ToColor4(this.TextBox.Foreground); this.Background = ToColor4(this.TextBox.Background); this.ControlChar = ToColor4(this.TextBox.ControlChar); @@ -136,6 +137,7 @@ namespace FooEditEngine.Windows this.InsertCaret = ToColor4(this.TextBox.InsertCaret); this.OverwriteCaret = ToColor4(this.TextBox.OverwriteCaret); this.UpdateArea = ToColor4(this.TextBox.UpdateArea); + this.HilightForeground = ToColor4(this.TextBox.HilightForeground); } protected override void DestructRender() diff --git a/Windows/FooEditEngine/FooTextBox.cs b/Windows/FooEditEngine/FooTextBox.cs index 895dd0f..2e4edb9 100644 --- a/Windows/FooEditEngine/FooTextBox.cs +++ b/Windows/FooEditEngine/FooTextBox.cs @@ -454,6 +454,7 @@ namespace FooEditEngine.Windows } System.Drawing.Color ForegroundColor = SystemColors.ControlText, + HilightForegroundColor = SystemColors.HighlightText, BackgroundColor = SystemColors.Control, HilightColor = System.Drawing.Color.DeepSkyBlue, Keyword1Color = System.Drawing.Color.Blue, @@ -485,6 +486,22 @@ namespace FooEditEngine.Windows } /// + /// 選択時の前景色 + /// + public System.Drawing.Color HilightForeground + { + get + { + return this.HilightForegroundColor; + } + set + { + this.render.HilightForeground = D2DTextRender.ToColor4(value); + this.HilightForegroundColor = value; + } + } + + /// /// 背景色 /// public System.Drawing.Color Background diff --git a/Windows/FooEditEngine/PrintableTextRender.cs b/Windows/FooEditEngine/PrintableTextRender.cs index aca8b31..92ac029 100644 --- a/Windows/FooEditEngine/PrintableTextRender.cs +++ b/Windows/FooEditEngine/PrintableTextRender.cs @@ -184,7 +184,7 @@ namespace FooEditEngine.Windows this.sf.Alignment = old; } - public void DrawOneLine(LineToIndexTable lti, int row, double x, double y, IEnumerable SelectRanges) + public void DrawOneLine(LineToIndexTable lti, int row, double x, double y, IEnumerable Selections) { g.DrawString(lti[row], this.font, new SolidBrush(this.Foreground), new RectangleF((float)x, (float)y, (float)this.TextArea.Width, (float)this.TextArea.Height), this.sf); } @@ -205,7 +205,7 @@ namespace FooEditEngine.Windows { } - public ITextLayout CreateLaytout(string str, SyntaxInfo[] syntaxCollection, IEnumerable MarkerRanges) + public ITextLayout CreateLaytout(string str, SyntaxInfo[] syntaxCollection, IEnumerable MarkerRanges, IEnumerable Selections) { return new PrintableTextLayout(this.font); }