diff --git a/build.cake b/build.cake index e1fe00e8..c8a71beb 100644 --- a/build.cake +++ b/build.cake @@ -35,7 +35,7 @@ Task("Build-Solutions") .IsDependentOn("Locate-Solutions") .DoesForEach(GetFiles($"./{lang}/**/*.sln"), (slnFile) => { - if (!slnFile.ToString().Contains("MyOutlookAddIn")) + if (!slnFile.ToString().Contains("MyOutlookAddIn") && !slnFile.ToString().Contains("ExcelComAddin")) { Console.WriteLine($"--- Building solution: {slnFile}"); diff --git a/csharp/activex/ComWrapper/ComWrapper.WinForms.csproj b/csharp/activex/ComWrapper/ComWrapper.WinForms.csproj index d8d8cdda..0d3a5a4b 100644 --- a/csharp/activex/ComWrapper/ComWrapper.WinForms.csproj +++ b/csharp/activex/ComWrapper/ComWrapper.WinForms.csproj @@ -85,6 +85,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/activex/ComWrapper/packages.config b/csharp/activex/ComWrapper/packages.config index d6bfcf95..dae11cec 100644 --- a/csharp/activex/ComWrapper/packages.config +++ b/csharp/activex/ComWrapper/packages.config @@ -6,4 +6,8 @@ + + + + diff --git a/csharp/devtools-protocol/SeleniumChromeDriver/App.config b/csharp/devtools-protocol/SeleniumChromeDriver/App.config index d1428ad7..8d234373 100644 --- a/csharp/devtools-protocol/SeleniumChromeDriver/App.config +++ b/csharp/devtools-protocol/SeleniumChromeDriver/App.config @@ -1,6 +1,6 @@ - + diff --git a/csharp/devtools-protocol/SeleniumChromeDriver/SeleniumChromeDriver.csproj b/csharp/devtools-protocol/SeleniumChromeDriver/SeleniumChromeDriver.csproj index 87173911..3d76998c 100644 --- a/csharp/devtools-protocol/SeleniumChromeDriver/SeleniumChromeDriver.csproj +++ b/csharp/devtools-protocol/SeleniumChromeDriver/SeleniumChromeDriver.csproj @@ -68,6 +68,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/devtools-protocol/SeleniumChromeDriver/packages.config b/csharp/devtools-protocol/SeleniumChromeDriver/packages.config index 7d9f9619..c358ec1e 100644 --- a/csharp/devtools-protocol/SeleniumChromeDriver/packages.config +++ b/csharp/devtools-protocol/SeleniumChromeDriver/packages.config @@ -1,4 +1,4 @@ - + @@ -6,6 +6,10 @@ + + + + \ No newline at end of file diff --git a/csharp/vsto/MyOutlookAddIn/MyOutlookAddIn.csproj b/csharp/vsto/MyOutlookAddIn/MyOutlookAddIn.csproj index 089f28e4..561be6be 100644 --- a/csharp/vsto/MyOutlookAddIn/MyOutlookAddIn.csproj +++ b/csharp/vsto/MyOutlookAddIn/MyOutlookAddIn.csproj @@ -129,6 +129,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/vsto/MyOutlookAddIn/app.config b/csharp/vsto/MyOutlookAddIn/app.config index e930146a..1b997731 100644 --- a/csharp/vsto/MyOutlookAddIn/app.config +++ b/csharp/vsto/MyOutlookAddIn/app.config @@ -1,7 +1,3 @@ - - - - \ No newline at end of file diff --git a/csharp/vsto/MyOutlookAddIn/packages.config b/csharp/vsto/MyOutlookAddIn/packages.config index 776bcc53..7fad945b 100644 --- a/csharp/vsto/MyOutlookAddIn/packages.config +++ b/csharp/vsto/MyOutlookAddIn/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/winforms/ContextMenu.SpellCheck/App.config b/csharp/winforms/ContextMenu.SpellCheck/App.config index ee1a4cf7..c730267f 100644 --- a/csharp/winforms/ContextMenu.SpellCheck/App.config +++ b/csharp/winforms/ContextMenu.SpellCheck/App.config @@ -1,10 +1,6 @@ - + - - - - \ No newline at end of file diff --git a/csharp/winforms/ContextMenu.SpellCheck/ContextMenu.SpellCheck.WinForms.csproj b/csharp/winforms/ContextMenu.SpellCheck/ContextMenu.SpellCheck.WinForms.csproj index 830a6cd8..6ac3037d 100644 --- a/csharp/winforms/ContextMenu.SpellCheck/ContextMenu.SpellCheck.WinForms.csproj +++ b/csharp/winforms/ContextMenu.SpellCheck/ContextMenu.SpellCheck.WinForms.csproj @@ -10,6 +10,7 @@ ContextMenu.SpellCheck.WinForms v4.6.2 512 + true true @@ -62,6 +63,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/winforms/ContextMenu.SpellCheck/packages.config b/csharp/winforms/ContextMenu.SpellCheck/packages.config index 776bcc53..7fad945b 100644 --- a/csharp/winforms/ContextMenu.SpellCheck/packages.config +++ b/csharp/winforms/ContextMenu.SpellCheck/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/winforms/ContextMenu/App.config b/csharp/winforms/ContextMenu/App.config index ee1a4cf7..c730267f 100644 --- a/csharp/winforms/ContextMenu/App.config +++ b/csharp/winforms/ContextMenu/App.config @@ -1,10 +1,6 @@ - + - - - - \ No newline at end of file diff --git a/csharp/winforms/ContextMenu/ContextMenu.WinForms.csproj b/csharp/winforms/ContextMenu/ContextMenu.WinForms.csproj index 529c117c..fd771e26 100644 --- a/csharp/winforms/ContextMenu/ContextMenu.WinForms.csproj +++ b/csharp/winforms/ContextMenu/ContextMenu.WinForms.csproj @@ -10,6 +10,7 @@ ContextMenu.WinForms v4.6.2 512 + true true @@ -62,6 +63,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/winforms/ContextMenu/packages.config b/csharp/winforms/ContextMenu/packages.config index 776bcc53..7fad945b 100644 --- a/csharp/winforms/ContextMenu/packages.config +++ b/csharp/winforms/ContextMenu/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/winforms/CookiesSharing/App.config b/csharp/winforms/CookiesSharing/App.config index 8e156463..b50c74f3 100644 --- a/csharp/winforms/CookiesSharing/App.config +++ b/csharp/winforms/CookiesSharing/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/csharp/winforms/CookiesSharing/CookiesSharing.WinForms.csproj b/csharp/winforms/CookiesSharing/CookiesSharing.WinForms.csproj index 66f2b2da..e434909a 100644 --- a/csharp/winforms/CookiesSharing/CookiesSharing.WinForms.csproj +++ b/csharp/winforms/CookiesSharing/CookiesSharing.WinForms.csproj @@ -10,6 +10,7 @@ CookiesSharing.WinForms v4.6.2 512 + true true @@ -59,6 +60,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/winforms/CookiesSharing/packages.config b/csharp/winforms/CookiesSharing/packages.config index 776bcc53..7fad945b 100644 --- a/csharp/winforms/CookiesSharing/packages.config +++ b/csharp/winforms/CookiesSharing/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/winforms/CustomShortcuts/App.config b/csharp/winforms/CustomShortcuts/App.config index 8e156463..b50c74f3 100644 --- a/csharp/winforms/CustomShortcuts/App.config +++ b/csharp/winforms/CustomShortcuts/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/csharp/winforms/CustomShortcuts/CustomShortcuts.WinForms.csproj b/csharp/winforms/CustomShortcuts/CustomShortcuts.WinForms.csproj index 505924a6..934420d3 100644 --- a/csharp/winforms/CustomShortcuts/CustomShortcuts.WinForms.csproj +++ b/csharp/winforms/CustomShortcuts/CustomShortcuts.WinForms.csproj @@ -10,6 +10,7 @@ CustomShortcuts.WinForms v4.6.2 512 + true true @@ -62,6 +63,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/winforms/CustomShortcuts/packages.config b/csharp/winforms/CustomShortcuts/packages.config index 776bcc53..7fad945b 100644 --- a/csharp/winforms/CustomShortcuts/packages.config +++ b/csharp/winforms/CustomShortcuts/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/winforms/DevTools/App.config b/csharp/winforms/DevTools/App.config index 8e156463..b50c74f3 100644 --- a/csharp/winforms/DevTools/App.config +++ b/csharp/winforms/DevTools/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/csharp/winforms/DevTools/DevTools.WinForms.csproj b/csharp/winforms/DevTools/DevTools.WinForms.csproj index 0f3df4c7..ccec6563 100644 --- a/csharp/winforms/DevTools/DevTools.WinForms.csproj +++ b/csharp/winforms/DevTools/DevTools.WinForms.csproj @@ -10,6 +10,7 @@ DevTools.WinForms v4.6.2 512 + true true @@ -62,6 +63,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/winforms/DevTools/packages.config b/csharp/winforms/DevTools/packages.config index 776bcc53..7fad945b 100644 --- a/csharp/winforms/DevTools/packages.config +++ b/csharp/winforms/DevTools/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/winforms/Dom.DragAndDrop/App.config b/csharp/winforms/Dom.DragAndDrop/App.config index 8e156463..b50c74f3 100644 --- a/csharp/winforms/Dom.DragAndDrop/App.config +++ b/csharp/winforms/Dom.DragAndDrop/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/csharp/winforms/Dom.DragAndDrop/Dom.DragAndDrop.WinForms.csproj b/csharp/winforms/Dom.DragAndDrop/Dom.DragAndDrop.WinForms.csproj index 2b8819df..db8b49e9 100644 --- a/csharp/winforms/Dom.DragAndDrop/Dom.DragAndDrop.WinForms.csproj +++ b/csharp/winforms/Dom.DragAndDrop/Dom.DragAndDrop.WinForms.csproj @@ -10,6 +10,7 @@ Dom.DragAndDrop.WinForms v4.6.2 512 + true true @@ -62,6 +63,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/winforms/Dom.DragAndDrop/packages.config b/csharp/winforms/Dom.DragAndDrop/packages.config index 776bcc53..7fad945b 100644 --- a/csharp/winforms/Dom.DragAndDrop/packages.config +++ b/csharp/winforms/Dom.DragAndDrop/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/winforms/ElementHostEmbedding/App.config b/csharp/winforms/ElementHostEmbedding/App.config index 8e156463..b50c74f3 100644 --- a/csharp/winforms/ElementHostEmbedding/App.config +++ b/csharp/winforms/ElementHostEmbedding/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/csharp/winforms/ElementHostEmbedding/ElementHostEmbedding.WinForms.csproj b/csharp/winforms/ElementHostEmbedding/ElementHostEmbedding.WinForms.csproj index 96de9d5b..5ad94ee3 100644 --- a/csharp/winforms/ElementHostEmbedding/ElementHostEmbedding.WinForms.csproj +++ b/csharp/winforms/ElementHostEmbedding/ElementHostEmbedding.WinForms.csproj @@ -10,6 +10,7 @@ ElementHostEmbedding.WinForms v4.6.2 512 + true true @@ -67,6 +68,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/winforms/ElementHostEmbedding/packages.config b/csharp/winforms/ElementHostEmbedding/packages.config index f2092374..25095e00 100644 --- a/csharp/winforms/ElementHostEmbedding/packages.config +++ b/csharp/winforms/ElementHostEmbedding/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/winforms/ElementVisibility/ElementVisibility.WinForms.csproj b/csharp/winforms/ElementVisibility/ElementVisibility.WinForms.csproj index 2dd847f1..da484f6c 100644 --- a/csharp/winforms/ElementVisibility/ElementVisibility.WinForms.csproj +++ b/csharp/winforms/ElementVisibility/ElementVisibility.WinForms.csproj @@ -64,6 +64,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/winforms/ElementVisibility/packages.config b/csharp/winforms/ElementVisibility/packages.config index 776bcc53..7fad945b 100644 --- a/csharp/winforms/ElementVisibility/packages.config +++ b/csharp/winforms/ElementVisibility/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/winforms/FindText/App.config b/csharp/winforms/FindText/App.config index 8e156463..b50c74f3 100644 --- a/csharp/winforms/FindText/App.config +++ b/csharp/winforms/FindText/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/csharp/winforms/FindText/FindText.WinForms.csproj b/csharp/winforms/FindText/FindText.WinForms.csproj index 10fa02e6..3b19b0a6 100644 --- a/csharp/winforms/FindText/FindText.WinForms.csproj +++ b/csharp/winforms/FindText/FindText.WinForms.csproj @@ -10,6 +10,7 @@ FindText.WinForms v4.6.2 512 + true true @@ -70,6 +71,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/winforms/FindText/packages.config b/csharp/winforms/FindText/packages.config index 776bcc53..7fad945b 100644 --- a/csharp/winforms/FindText/packages.config +++ b/csharp/winforms/FindText/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/winforms/FullScreen/App.config b/csharp/winforms/FullScreen/App.config index 8e156463..b50c74f3 100644 --- a/csharp/winforms/FullScreen/App.config +++ b/csharp/winforms/FullScreen/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/csharp/winforms/FullScreen/FullScreen.WinForms.csproj b/csharp/winforms/FullScreen/FullScreen.WinForms.csproj index 00804e9a..b43a0155 100644 --- a/csharp/winforms/FullScreen/FullScreen.WinForms.csproj +++ b/csharp/winforms/FullScreen/FullScreen.WinForms.csproj @@ -10,6 +10,7 @@ FullScreen.WinForms v4.6.2 512 + true true @@ -62,6 +63,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/winforms/FullScreen/packages.config b/csharp/winforms/FullScreen/packages.config index 776bcc53..7fad945b 100644 --- a/csharp/winforms/FullScreen/packages.config +++ b/csharp/winforms/FullScreen/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/winforms/GoogleMaps/App.config b/csharp/winforms/GoogleMaps/App.config index d1428ad7..8d234373 100644 --- a/csharp/winforms/GoogleMaps/App.config +++ b/csharp/winforms/GoogleMaps/App.config @@ -1,6 +1,6 @@ - + diff --git a/csharp/winforms/GoogleMaps/GoogleMaps.WinForms.csproj b/csharp/winforms/GoogleMaps/GoogleMaps.WinForms.csproj index 75b74934..f6e91855 100644 --- a/csharp/winforms/GoogleMaps/GoogleMaps.WinForms.csproj +++ b/csharp/winforms/GoogleMaps/GoogleMaps.WinForms.csproj @@ -64,6 +64,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/winforms/GoogleMaps/packages.config b/csharp/winforms/GoogleMaps/packages.config index 776bcc53..7fad945b 100644 --- a/csharp/winforms/GoogleMaps/packages.config +++ b/csharp/winforms/GoogleMaps/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/winforms/GoogleStreetView/App.config b/csharp/winforms/GoogleStreetView/App.config index 5c73fc53..8609e962 100644 --- a/csharp/winforms/GoogleStreetView/App.config +++ b/csharp/winforms/GoogleStreetView/App.config @@ -2,6 +2,6 @@ - + \ No newline at end of file diff --git a/csharp/winforms/GoogleStreetView/GoogleStreetView.WinForms.csproj b/csharp/winforms/GoogleStreetView/GoogleStreetView.WinForms.csproj index 04d6e458..ac11a408 100644 --- a/csharp/winforms/GoogleStreetView/GoogleStreetView.WinForms.csproj +++ b/csharp/winforms/GoogleStreetView/GoogleStreetView.WinForms.csproj @@ -10,6 +10,7 @@ GoogleStreetView.WinForms v4.6.2 512 + true true @@ -62,6 +63,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/winforms/GoogleStreetView/packages.config b/csharp/winforms/GoogleStreetView/packages.config index 776bcc53..7fad945b 100644 --- a/csharp/winforms/GoogleStreetView/packages.config +++ b/csharp/winforms/GoogleStreetView/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/winforms/Inspect/App.config b/csharp/winforms/Inspect/App.config index 88fa4027..b50c74f3 100644 --- a/csharp/winforms/Inspect/App.config +++ b/csharp/winforms/Inspect/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/csharp/winforms/Inspect/Inspect.WinForms.csproj b/csharp/winforms/Inspect/Inspect.WinForms.csproj index 694a81d7..8ba759f0 100644 --- a/csharp/winforms/Inspect/Inspect.WinForms.csproj +++ b/csharp/winforms/Inspect/Inspect.WinForms.csproj @@ -63,6 +63,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/winforms/Inspect/packages.config b/csharp/winforms/Inspect/packages.config index 776bcc53..7fad945b 100644 --- a/csharp/winforms/Inspect/packages.config +++ b/csharp/winforms/Inspect/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/winforms/JavaScriptBridge/App.config b/csharp/winforms/JavaScriptBridge/App.config index d5a0f2b6..c886293e 100644 --- a/csharp/winforms/JavaScriptBridge/App.config +++ b/csharp/winforms/JavaScriptBridge/App.config @@ -1,7 +1,7 @@  - + diff --git a/csharp/winforms/JavaScriptBridge/JavaScriptBridge.WinForms.csproj b/csharp/winforms/JavaScriptBridge/JavaScriptBridge.WinForms.csproj index 9255e4a3..031f4818 100644 --- a/csharp/winforms/JavaScriptBridge/JavaScriptBridge.WinForms.csproj +++ b/csharp/winforms/JavaScriptBridge/JavaScriptBridge.WinForms.csproj @@ -10,6 +10,7 @@ JavaScriptBridge.WinForms v4.6.2 512 + true true @@ -62,6 +63,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/winforms/JavaScriptBridge/packages.config b/csharp/winforms/JavaScriptBridge/packages.config index 776bcc53..7fad945b 100644 --- a/csharp/winforms/JavaScriptBridge/packages.config +++ b/csharp/winforms/JavaScriptBridge/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/winforms/KeyboardEventSimulation/App.config b/csharp/winforms/KeyboardEventSimulation/App.config index 8e156463..b50c74f3 100644 --- a/csharp/winforms/KeyboardEventSimulation/App.config +++ b/csharp/winforms/KeyboardEventSimulation/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/csharp/winforms/KeyboardEventSimulation/KeyboardEventSimulation.WinForms.csproj b/csharp/winforms/KeyboardEventSimulation/KeyboardEventSimulation.WinForms.csproj index def2c5eb..68d7709b 100644 --- a/csharp/winforms/KeyboardEventSimulation/KeyboardEventSimulation.WinForms.csproj +++ b/csharp/winforms/KeyboardEventSimulation/KeyboardEventSimulation.WinForms.csproj @@ -10,6 +10,7 @@ KeyboardEventSimulation.WinForms v4.6.2 512 + true true @@ -62,6 +63,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/winforms/KeyboardEventSimulation/packages.config b/csharp/winforms/KeyboardEventSimulation/packages.config index 776bcc53..7fad945b 100644 --- a/csharp/winforms/KeyboardEventSimulation/packages.config +++ b/csharp/winforms/KeyboardEventSimulation/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/winforms/Kiosk/App.config b/csharp/winforms/Kiosk/App.config index 88fa4027..b50c74f3 100644 --- a/csharp/winforms/Kiosk/App.config +++ b/csharp/winforms/Kiosk/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/csharp/winforms/Kiosk/Kiosk.WinForms.csproj b/csharp/winforms/Kiosk/Kiosk.WinForms.csproj index 54118ac2..fddc90ac 100644 --- a/csharp/winforms/Kiosk/Kiosk.WinForms.csproj +++ b/csharp/winforms/Kiosk/Kiosk.WinForms.csproj @@ -63,6 +63,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/winforms/Kiosk/packages.config b/csharp/winforms/Kiosk/packages.config index 776bcc53..7fad945b 100644 --- a/csharp/winforms/Kiosk/packages.config +++ b/csharp/winforms/Kiosk/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/winforms/MailToHandling/App.config b/csharp/winforms/MailToHandling/App.config index 8e156463..b50c74f3 100644 --- a/csharp/winforms/MailToHandling/App.config +++ b/csharp/winforms/MailToHandling/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/csharp/winforms/MailToHandling/MailToHandling.WinForms.csproj b/csharp/winforms/MailToHandling/MailToHandling.WinForms.csproj index 610c6d53..4e2be7cc 100644 --- a/csharp/winforms/MailToHandling/MailToHandling.WinForms.csproj +++ b/csharp/winforms/MailToHandling/MailToHandling.WinForms.csproj @@ -10,6 +10,7 @@ MailToHandling.WinForms v4.6.2 512 + true true @@ -62,6 +63,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/winforms/MailToHandling/packages.config b/csharp/winforms/MailToHandling/packages.config index 776bcc53..7fad945b 100644 --- a/csharp/winforms/MailToHandling/packages.config +++ b/csharp/winforms/MailToHandling/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/winforms/ObservePageChanges/App.config b/csharp/winforms/ObservePageChanges/App.config index 8e156463..b50c74f3 100644 --- a/csharp/winforms/ObservePageChanges/App.config +++ b/csharp/winforms/ObservePageChanges/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/csharp/winforms/ObservePageChanges/ObservePageChanges.WinForms.csproj b/csharp/winforms/ObservePageChanges/ObservePageChanges.WinForms.csproj index f9bc88e9..c7d80109 100644 --- a/csharp/winforms/ObservePageChanges/ObservePageChanges.WinForms.csproj +++ b/csharp/winforms/ObservePageChanges/ObservePageChanges.WinForms.csproj @@ -10,6 +10,7 @@ ObservePageChanges.WinForms v4.6.2 512 + true true @@ -62,6 +63,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/winforms/ObservePageChanges/packages.config b/csharp/winforms/ObservePageChanges/packages.config index 776bcc53..7fad945b 100644 --- a/csharp/winforms/ObservePageChanges/packages.config +++ b/csharp/winforms/ObservePageChanges/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/winforms/Popups/App.config b/csharp/winforms/Popups/App.config index 8e156463..b50c74f3 100644 --- a/csharp/winforms/Popups/App.config +++ b/csharp/winforms/Popups/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/csharp/winforms/Popups/Popups.WinForms.csproj b/csharp/winforms/Popups/Popups.WinForms.csproj index 24ba91dd..e754286f 100644 --- a/csharp/winforms/Popups/Popups.WinForms.csproj +++ b/csharp/winforms/Popups/Popups.WinForms.csproj @@ -10,6 +10,7 @@ Popups.WinForms v4.6.2 512 + true true @@ -62,6 +63,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/winforms/Popups/packages.config b/csharp/winforms/Popups/packages.config index 776bcc53..7fad945b 100644 --- a/csharp/winforms/Popups/packages.config +++ b/csharp/winforms/Popups/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/winforms/Profiles/App.config b/csharp/winforms/Profiles/App.config index 5c73fc53..8609e962 100644 --- a/csharp/winforms/Profiles/App.config +++ b/csharp/winforms/Profiles/App.config @@ -2,6 +2,6 @@ - + \ No newline at end of file diff --git a/csharp/winforms/Profiles/Profiles.WinForms.csproj b/csharp/winforms/Profiles/Profiles.WinForms.csproj index f6c26705..ac58bb2d 100644 --- a/csharp/winforms/Profiles/Profiles.WinForms.csproj +++ b/csharp/winforms/Profiles/Profiles.WinForms.csproj @@ -10,6 +10,7 @@ Profiles.WinForms v4.6.2 512 + true true @@ -62,6 +63,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/winforms/Profiles/packages.config b/csharp/winforms/Profiles/packages.config index 776bcc53..7fad945b 100644 --- a/csharp/winforms/Profiles/packages.config +++ b/csharp/winforms/Profiles/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/winforms/SimulateUserInput/App.config b/csharp/winforms/SimulateUserInput/App.config index 8e156463..b50c74f3 100644 --- a/csharp/winforms/SimulateUserInput/App.config +++ b/csharp/winforms/SimulateUserInput/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/csharp/winforms/SimulateUserInput/SimulateUserInput.WinForms.csproj b/csharp/winforms/SimulateUserInput/SimulateUserInput.WinForms.csproj index cff7126c..8e867ede 100644 --- a/csharp/winforms/SimulateUserInput/SimulateUserInput.WinForms.csproj +++ b/csharp/winforms/SimulateUserInput/SimulateUserInput.WinForms.csproj @@ -10,6 +10,7 @@ SimulateUserInput.WinForms v4.6.2 512 + true true @@ -62,6 +63,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/winforms/SimulateUserInput/packages.config b/csharp/winforms/SimulateUserInput/packages.config index 776bcc53..7fad945b 100644 --- a/csharp/winforms/SimulateUserInput/packages.config +++ b/csharp/winforms/SimulateUserInput/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/wpf/Chromecast/Chromecast.Wpf.csproj b/csharp/wpf/Chromecast/Chromecast.Wpf.csproj index 969d0e81..1edce767 100644 --- a/csharp/wpf/Chromecast/Chromecast.Wpf.csproj +++ b/csharp/wpf/Chromecast/Chromecast.Wpf.csproj @@ -68,6 +68,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/wpf/Chromecast/packages.config b/csharp/wpf/Chromecast/packages.config index f2092374..25095e00 100644 --- a/csharp/wpf/Chromecast/packages.config +++ b/csharp/wpf/Chromecast/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/wpf/ChromiumBinariesResolver/App.config b/csharp/wpf/ChromiumBinariesResolver/App.config index d1428ad7..8d234373 100644 --- a/csharp/wpf/ChromiumBinariesResolver/App.config +++ b/csharp/wpf/ChromiumBinariesResolver/App.config @@ -1,6 +1,6 @@ - + diff --git a/csharp/wpf/ChromiumBinariesResolver/ChromiumBinariesResolver.Wpf.csproj b/csharp/wpf/ChromiumBinariesResolver/ChromiumBinariesResolver.Wpf.csproj index 909673e5..4e4e1d4e 100644 --- a/csharp/wpf/ChromiumBinariesResolver/ChromiumBinariesResolver.Wpf.csproj +++ b/csharp/wpf/ChromiumBinariesResolver/ChromiumBinariesResolver.Wpf.csproj @@ -10,6 +10,7 @@ ChromiumBinariesResolver.Wpf v4.6.2 512 + true {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 4 true @@ -70,6 +71,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/wpf/ChromiumBinariesResolver/packages.config b/csharp/wpf/ChromiumBinariesResolver/packages.config index f2092374..25095e00 100644 --- a/csharp/wpf/ChromiumBinariesResolver/packages.config +++ b/csharp/wpf/ChromiumBinariesResolver/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/wpf/ContextMenu.SpellCheck/ContextMenu.SpellCheck.Wpf.csproj b/csharp/wpf/ContextMenu.SpellCheck/ContextMenu.SpellCheck.Wpf.csproj index d299d19a..aec6208f 100644 --- a/csharp/wpf/ContextMenu.SpellCheck/ContextMenu.SpellCheck.Wpf.csproj +++ b/csharp/wpf/ContextMenu.SpellCheck/ContextMenu.SpellCheck.Wpf.csproj @@ -71,6 +71,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/wpf/ContextMenu.SpellCheck/app.config b/csharp/wpf/ContextMenu.SpellCheck/app.config index e930146a..1b997731 100644 --- a/csharp/wpf/ContextMenu.SpellCheck/app.config +++ b/csharp/wpf/ContextMenu.SpellCheck/app.config @@ -1,7 +1,3 @@ - - - - \ No newline at end of file diff --git a/csharp/wpf/ContextMenu.SpellCheck/packages.config b/csharp/wpf/ContextMenu.SpellCheck/packages.config index f2092374..25095e00 100644 --- a/csharp/wpf/ContextMenu.SpellCheck/packages.config +++ b/csharp/wpf/ContextMenu.SpellCheck/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/wpf/ContextMenu/ContextMenu.Wpf.csproj b/csharp/wpf/ContextMenu/ContextMenu.Wpf.csproj index 472d0b31..49d0667f 100644 --- a/csharp/wpf/ContextMenu/ContextMenu.Wpf.csproj +++ b/csharp/wpf/ContextMenu/ContextMenu.Wpf.csproj @@ -71,6 +71,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/wpf/ContextMenu/app.config b/csharp/wpf/ContextMenu/app.config index e930146a..1b997731 100644 --- a/csharp/wpf/ContextMenu/app.config +++ b/csharp/wpf/ContextMenu/app.config @@ -1,7 +1,3 @@ - - - - \ No newline at end of file diff --git a/csharp/wpf/ContextMenu/packages.config b/csharp/wpf/ContextMenu/packages.config index f2092374..25095e00 100644 --- a/csharp/wpf/ContextMenu/packages.config +++ b/csharp/wpf/ContextMenu/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/wpf/CreateHtmlUi/App.config b/csharp/wpf/CreateHtmlUi/App.config index 8e156463..b50c74f3 100644 --- a/csharp/wpf/CreateHtmlUi/App.config +++ b/csharp/wpf/CreateHtmlUi/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/csharp/wpf/CreateHtmlUi/CreateHtmlUi.Wpf.csproj b/csharp/wpf/CreateHtmlUi/CreateHtmlUi.Wpf.csproj index 8a8d2d67..556cb665 100644 --- a/csharp/wpf/CreateHtmlUi/CreateHtmlUi.Wpf.csproj +++ b/csharp/wpf/CreateHtmlUi/CreateHtmlUi.Wpf.csproj @@ -10,6 +10,7 @@ CreateHtmlUi.Wpf v4.6.2 512 + true {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 4 true @@ -67,6 +68,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/wpf/CreateHtmlUi/packages.config b/csharp/wpf/CreateHtmlUi/packages.config index f2092374..25095e00 100644 --- a/csharp/wpf/CreateHtmlUi/packages.config +++ b/csharp/wpf/CreateHtmlUi/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/wpf/DragAndDrop/App.config b/csharp/wpf/DragAndDrop/App.config index 8e156463..b50c74f3 100644 --- a/csharp/wpf/DragAndDrop/App.config +++ b/csharp/wpf/DragAndDrop/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/csharp/wpf/DragAndDrop/DragAndDrop.Wpf.csproj b/csharp/wpf/DragAndDrop/DragAndDrop.Wpf.csproj index f07822ca..2ab5e3fd 100644 --- a/csharp/wpf/DragAndDrop/DragAndDrop.Wpf.csproj +++ b/csharp/wpf/DragAndDrop/DragAndDrop.Wpf.csproj @@ -10,6 +10,7 @@ DragAndDrop.Wpf v4.6.2 512 + true {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 4 true @@ -67,6 +68,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/wpf/DragAndDrop/packages.config b/csharp/wpf/DragAndDrop/packages.config index f2092374..25095e00 100644 --- a/csharp/wpf/DragAndDrop/packages.config +++ b/csharp/wpf/DragAndDrop/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/wpf/Extensions/Extensions.Wpf.csproj b/csharp/wpf/Extensions/Extensions.Wpf.csproj index 5f5a888e..41a5a8c8 100644 --- a/csharp/wpf/Extensions/Extensions.Wpf.csproj +++ b/csharp/wpf/Extensions/Extensions.Wpf.csproj @@ -74,6 +74,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/wpf/Extensions/app.config b/csharp/wpf/Extensions/app.config index 4c2d2ac5..78809ef3 100644 --- a/csharp/wpf/Extensions/app.config +++ b/csharp/wpf/Extensions/app.config @@ -1,7 +1,3 @@ - - - - - + diff --git a/csharp/wpf/Extensions/packages.config b/csharp/wpf/Extensions/packages.config index f2092374..25095e00 100644 --- a/csharp/wpf/Extensions/packages.config +++ b/csharp/wpf/Extensions/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/wpf/FindText/FindText.Wpf.csproj b/csharp/wpf/FindText/FindText.Wpf.csproj index 15c0a441..d78d0f63 100644 --- a/csharp/wpf/FindText/FindText.Wpf.csproj +++ b/csharp/wpf/FindText/FindText.Wpf.csproj @@ -83,6 +83,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/wpf/FindText/app.config b/csharp/wpf/FindText/app.config index e930146a..1b997731 100644 --- a/csharp/wpf/FindText/app.config +++ b/csharp/wpf/FindText/app.config @@ -1,7 +1,3 @@ - - - - \ No newline at end of file diff --git a/csharp/wpf/FindText/packages.config b/csharp/wpf/FindText/packages.config index f2092374..25095e00 100644 --- a/csharp/wpf/FindText/packages.config +++ b/csharp/wpf/FindText/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/wpf/Inspect/App.config b/csharp/wpf/Inspect/App.config index 88fa4027..b50c74f3 100644 --- a/csharp/wpf/Inspect/App.config +++ b/csharp/wpf/Inspect/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/csharp/wpf/Inspect/Inspect.Wpf.csproj b/csharp/wpf/Inspect/Inspect.Wpf.csproj index 4bd7759f..6f9f0637 100644 --- a/csharp/wpf/Inspect/Inspect.Wpf.csproj +++ b/csharp/wpf/Inspect/Inspect.Wpf.csproj @@ -68,6 +68,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/wpf/Inspect/packages.config b/csharp/wpf/Inspect/packages.config index f2092374..25095e00 100644 --- a/csharp/wpf/Inspect/packages.config +++ b/csharp/wpf/Inspect/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/wpf/KeyboardEventSimulation/KeyboardEventSimulation.Wpf.csproj b/csharp/wpf/KeyboardEventSimulation/KeyboardEventSimulation.Wpf.csproj index 6380f20d..4d09cead 100644 --- a/csharp/wpf/KeyboardEventSimulation/KeyboardEventSimulation.Wpf.csproj +++ b/csharp/wpf/KeyboardEventSimulation/KeyboardEventSimulation.Wpf.csproj @@ -71,6 +71,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/wpf/KeyboardEventSimulation/app.config b/csharp/wpf/KeyboardEventSimulation/app.config index e930146a..1b997731 100644 --- a/csharp/wpf/KeyboardEventSimulation/app.config +++ b/csharp/wpf/KeyboardEventSimulation/app.config @@ -1,7 +1,3 @@ - - - - \ No newline at end of file diff --git a/csharp/wpf/KeyboardEventSimulation/packages.config b/csharp/wpf/KeyboardEventSimulation/packages.config index f2092374..25095e00 100644 --- a/csharp/wpf/KeyboardEventSimulation/packages.config +++ b/csharp/wpf/KeyboardEventSimulation/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/wpf/Kiosk/App.config b/csharp/wpf/Kiosk/App.config index 88fa4027..b50c74f3 100644 --- a/csharp/wpf/Kiosk/App.config +++ b/csharp/wpf/Kiosk/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/csharp/wpf/Kiosk/Kiosk.Wpf.csproj b/csharp/wpf/Kiosk/Kiosk.Wpf.csproj index fe86cc8e..0641cd18 100644 --- a/csharp/wpf/Kiosk/Kiosk.Wpf.csproj +++ b/csharp/wpf/Kiosk/Kiosk.Wpf.csproj @@ -68,6 +68,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/wpf/Kiosk/packages.config b/csharp/wpf/Kiosk/packages.config index f2092374..25095e00 100644 --- a/csharp/wpf/Kiosk/packages.config +++ b/csharp/wpf/Kiosk/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/wpf/Mvvm/App.config b/csharp/wpf/Mvvm/App.config index 5c73fc53..8609e962 100644 --- a/csharp/wpf/Mvvm/App.config +++ b/csharp/wpf/Mvvm/App.config @@ -2,6 +2,6 @@ - + \ No newline at end of file diff --git a/csharp/wpf/Mvvm/Mvvm.Wpf.csproj b/csharp/wpf/Mvvm/Mvvm.Wpf.csproj index 6e51b271..5ca823c6 100644 --- a/csharp/wpf/Mvvm/Mvvm.Wpf.csproj +++ b/csharp/wpf/Mvvm/Mvvm.Wpf.csproj @@ -10,6 +10,7 @@ MVVM.Wpf v4.6.2 512 + true {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 4 true @@ -67,6 +68,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/wpf/Mvvm/packages.config b/csharp/wpf/Mvvm/packages.config index f2092374..25095e00 100644 --- a/csharp/wpf/Mvvm/packages.config +++ b/csharp/wpf/Mvvm/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/wpf/Popups/App.config b/csharp/wpf/Popups/App.config index 8e156463..b50c74f3 100644 --- a/csharp/wpf/Popups/App.config +++ b/csharp/wpf/Popups/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/csharp/wpf/Popups/Popups.Wpf.csproj b/csharp/wpf/Popups/Popups.Wpf.csproj index d09b8082..9a1871e7 100644 --- a/csharp/wpf/Popups/Popups.Wpf.csproj +++ b/csharp/wpf/Popups/Popups.Wpf.csproj @@ -10,6 +10,7 @@ Popups.Wpf v4.6.2 512 + true {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 4 true @@ -67,6 +68,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/wpf/Popups/packages.config b/csharp/wpf/Popups/packages.config index f2092374..25095e00 100644 --- a/csharp/wpf/Popups/packages.config +++ b/csharp/wpf/Popups/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/wpf/SaveWebPage/SaveWebPage.Wpf.csproj b/csharp/wpf/SaveWebPage/SaveWebPage.Wpf.csproj index b0912c6f..af2f9bb0 100644 --- a/csharp/wpf/SaveWebPage/SaveWebPage.Wpf.csproj +++ b/csharp/wpf/SaveWebPage/SaveWebPage.Wpf.csproj @@ -11,6 +11,7 @@ WPF.SaveWebPage v4.6.2 512 + true {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 4 @@ -70,6 +71,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/wpf/SaveWebPage/app.config b/csharp/wpf/SaveWebPage/app.config index e930146a..1b997731 100644 --- a/csharp/wpf/SaveWebPage/app.config +++ b/csharp/wpf/SaveWebPage/app.config @@ -1,7 +1,3 @@ - - - - \ No newline at end of file diff --git a/csharp/wpf/SaveWebPage/packages.config b/csharp/wpf/SaveWebPage/packages.config index f2092374..25095e00 100644 --- a/csharp/wpf/SaveWebPage/packages.config +++ b/csharp/wpf/SaveWebPage/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/wpf/TransparentWebPage/TransparentWebPage.Wpf.csproj b/csharp/wpf/TransparentWebPage/TransparentWebPage.Wpf.csproj index 54b5cffe..81cb0124 100644 --- a/csharp/wpf/TransparentWebPage/TransparentWebPage.Wpf.csproj +++ b/csharp/wpf/TransparentWebPage/TransparentWebPage.Wpf.csproj @@ -11,6 +11,7 @@ TransparentWebPage.Wpf v4.6.2 512 + true {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 4 @@ -66,6 +67,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/wpf/TransparentWebPage/app.config b/csharp/wpf/TransparentWebPage/app.config index e930146a..1b997731 100644 --- a/csharp/wpf/TransparentWebPage/app.config +++ b/csharp/wpf/TransparentWebPage/app.config @@ -1,7 +1,3 @@ - - - - \ No newline at end of file diff --git a/csharp/wpf/TransparentWebPage/packages.config b/csharp/wpf/TransparentWebPage/packages.config index f2092374..25095e00 100644 --- a/csharp/wpf/TransparentWebPage/packages.config +++ b/csharp/wpf/TransparentWebPage/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/wpf/UiAutomation/UiAutomation.Wpf.csproj b/csharp/wpf/UiAutomation/UiAutomation.Wpf.csproj index 85f255ab..3a682212 100644 --- a/csharp/wpf/UiAutomation/UiAutomation.Wpf.csproj +++ b/csharp/wpf/UiAutomation/UiAutomation.Wpf.csproj @@ -11,6 +11,7 @@ UiAutomation.Wpf v4.6.2 512 + true {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 4 true @@ -69,6 +70,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/wpf/UiAutomation/app.config b/csharp/wpf/UiAutomation/app.config index e930146a..1b997731 100644 --- a/csharp/wpf/UiAutomation/app.config +++ b/csharp/wpf/UiAutomation/app.config @@ -1,7 +1,3 @@ - - - - \ No newline at end of file diff --git a/csharp/wpf/UiAutomation/packages.config b/csharp/wpf/UiAutomation/packages.config index f2092374..25095e00 100644 --- a/csharp/wpf/UiAutomation/packages.config +++ b/csharp/wpf/UiAutomation/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/csharp/wpf/Zoom/App.config b/csharp/wpf/Zoom/App.config index 8e156463..b50c74f3 100644 --- a/csharp/wpf/Zoom/App.config +++ b/csharp/wpf/Zoom/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/csharp/wpf/Zoom/Zoom.Wpf.csproj b/csharp/wpf/Zoom/Zoom.Wpf.csproj index 3c1b287d..eab8c6fc 100644 --- a/csharp/wpf/Zoom/Zoom.Wpf.csproj +++ b/csharp/wpf/Zoom/Zoom.Wpf.csproj @@ -10,6 +10,7 @@ Zoom.Wpf v4.6.2 512 + true {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 4 true @@ -67,6 +68,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/csharp/wpf/Zoom/packages.config b/csharp/wpf/Zoom/packages.config index f2092374..25095e00 100644 --- a/csharp/wpf/Zoom/packages.config +++ b/csharp/wpf/Zoom/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/activex/ComWrapper/ComWrapper.WinForms.vbproj b/vbnet/activex/ComWrapper/ComWrapper.WinForms.vbproj index f3f99f74..3da2cb20 100644 --- a/vbnet/activex/ComWrapper/ComWrapper.WinForms.vbproj +++ b/vbnet/activex/ComWrapper/ComWrapper.WinForms.vbproj @@ -103,6 +103,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/activex/ComWrapper/packages.config b/vbnet/activex/ComWrapper/packages.config index 776bcc53..7fad945b 100644 --- a/vbnet/activex/ComWrapper/packages.config +++ b/vbnet/activex/ComWrapper/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/devtools-protocol/SeleniumChromeDriver/App.config b/vbnet/devtools-protocol/SeleniumChromeDriver/App.config index bc3672db..61d0069c 100644 --- a/vbnet/devtools-protocol/SeleniumChromeDriver/App.config +++ b/vbnet/devtools-protocol/SeleniumChromeDriver/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/vbnet/devtools-protocol/SeleniumChromeDriver/SeleniumChromeDriver.vbproj b/vbnet/devtools-protocol/SeleniumChromeDriver/SeleniumChromeDriver.vbproj index 0ef69158..07263651 100644 --- a/vbnet/devtools-protocol/SeleniumChromeDriver/SeleniumChromeDriver.vbproj +++ b/vbnet/devtools-protocol/SeleniumChromeDriver/SeleniumChromeDriver.vbproj @@ -10,6 +10,7 @@ SeleniumChromeDriver SeleniumChromeDriver 512 + true WindowsForms v4.6.2 true @@ -95,6 +96,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/devtools-protocol/SeleniumChromeDriver/packages.config b/vbnet/devtools-protocol/SeleniumChromeDriver/packages.config index a5faed16..d51b574f 100644 --- a/vbnet/devtools-protocol/SeleniumChromeDriver/packages.config +++ b/vbnet/devtools-protocol/SeleniumChromeDriver/packages.config @@ -1,4 +1,4 @@ - + @@ -6,6 +6,10 @@ + + + + \ No newline at end of file diff --git a/vbnet/vsto/MyOutlookAddIn/MyOutlookAddIn.vbproj b/vbnet/vsto/MyOutlookAddIn/MyOutlookAddIn.vbproj index 9023986b..c372ea06 100644 --- a/vbnet/vsto/MyOutlookAddIn/MyOutlookAddIn.vbproj +++ b/vbnet/vsto/MyOutlookAddIn/MyOutlookAddIn.vbproj @@ -149,6 +149,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/vsto/MyOutlookAddIn/app.config b/vbnet/vsto/MyOutlookAddIn/app.config index e930146a..1b997731 100644 --- a/vbnet/vsto/MyOutlookAddIn/app.config +++ b/vbnet/vsto/MyOutlookAddIn/app.config @@ -1,7 +1,3 @@ - - - - \ No newline at end of file diff --git a/vbnet/vsto/MyOutlookAddIn/packages.config b/vbnet/vsto/MyOutlookAddIn/packages.config index 776bcc53..7fad945b 100644 --- a/vbnet/vsto/MyOutlookAddIn/packages.config +++ b/vbnet/vsto/MyOutlookAddIn/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/winforms/ContextMenu.SpellCheck/App.config b/vbnet/winforms/ContextMenu.SpellCheck/App.config index ee1a4cf7..c730267f 100644 --- a/vbnet/winforms/ContextMenu.SpellCheck/App.config +++ b/vbnet/winforms/ContextMenu.SpellCheck/App.config @@ -1,10 +1,6 @@ - + - - - - \ No newline at end of file diff --git a/vbnet/winforms/ContextMenu.SpellCheck/ContextMenu.SpellCheck.WinForms.vbproj b/vbnet/winforms/ContextMenu.SpellCheck/ContextMenu.SpellCheck.WinForms.vbproj index 48d15fc8..8112e1d1 100644 --- a/vbnet/winforms/ContextMenu.SpellCheck/ContextMenu.SpellCheck.WinForms.vbproj +++ b/vbnet/winforms/ContextMenu.SpellCheck/ContextMenu.SpellCheck.WinForms.vbproj @@ -10,6 +10,7 @@ ContextMenu.SpellCheck.WinForms v4.6.2 512 + true true On Binary @@ -81,6 +82,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/winforms/ContextMenu.SpellCheck/packages.config b/vbnet/winforms/ContextMenu.SpellCheck/packages.config index 776bcc53..7fad945b 100644 --- a/vbnet/winforms/ContextMenu.SpellCheck/packages.config +++ b/vbnet/winforms/ContextMenu.SpellCheck/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/winforms/ContextMenu/App.config b/vbnet/winforms/ContextMenu/App.config index ee1a4cf7..c730267f 100644 --- a/vbnet/winforms/ContextMenu/App.config +++ b/vbnet/winforms/ContextMenu/App.config @@ -1,10 +1,6 @@ - + - - - - \ No newline at end of file diff --git a/vbnet/winforms/ContextMenu/ContextMenu.WinForms.vbproj b/vbnet/winforms/ContextMenu/ContextMenu.WinForms.vbproj index 28cd9958..9ace0dab 100644 --- a/vbnet/winforms/ContextMenu/ContextMenu.WinForms.vbproj +++ b/vbnet/winforms/ContextMenu/ContextMenu.WinForms.vbproj @@ -10,6 +10,7 @@ ContextMenu.WinForms v4.6.2 512 + true true On Binary @@ -78,6 +79,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/winforms/ContextMenu/packages.config b/vbnet/winforms/ContextMenu/packages.config index 776bcc53..7fad945b 100644 --- a/vbnet/winforms/ContextMenu/packages.config +++ b/vbnet/winforms/ContextMenu/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/winforms/CookiesSharing/App.config b/vbnet/winforms/CookiesSharing/App.config index bc3672db..61d0069c 100644 --- a/vbnet/winforms/CookiesSharing/App.config +++ b/vbnet/winforms/CookiesSharing/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/vbnet/winforms/CookiesSharing/CookiesSharing.WinForms.vbproj b/vbnet/winforms/CookiesSharing/CookiesSharing.WinForms.vbproj index 7e8ebf21..57995594 100644 --- a/vbnet/winforms/CookiesSharing/CookiesSharing.WinForms.vbproj +++ b/vbnet/winforms/CookiesSharing/CookiesSharing.WinForms.vbproj @@ -10,6 +10,7 @@ CookiesSharing.WinForms CookiesSharing.WinForms 512 + true WindowsForms v4.6.2 true @@ -76,6 +77,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/winforms/CookiesSharing/packages.config b/vbnet/winforms/CookiesSharing/packages.config index 776bcc53..7fad945b 100644 --- a/vbnet/winforms/CookiesSharing/packages.config +++ b/vbnet/winforms/CookiesSharing/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/winforms/CustomShortcuts/App.config b/vbnet/winforms/CustomShortcuts/App.config index 8e156463..b50c74f3 100644 --- a/vbnet/winforms/CustomShortcuts/App.config +++ b/vbnet/winforms/CustomShortcuts/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/vbnet/winforms/CustomShortcuts/CustomShortcuts.WinForms.vbproj b/vbnet/winforms/CustomShortcuts/CustomShortcuts.WinForms.vbproj index 9b324a2f..84721a30 100644 --- a/vbnet/winforms/CustomShortcuts/CustomShortcuts.WinForms.vbproj +++ b/vbnet/winforms/CustomShortcuts/CustomShortcuts.WinForms.vbproj @@ -10,6 +10,7 @@ CustomShortcuts.WinForms v4.6.2 512 + true true On Binary @@ -81,6 +82,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/winforms/CustomShortcuts/packages.config b/vbnet/winforms/CustomShortcuts/packages.config index 776bcc53..7fad945b 100644 --- a/vbnet/winforms/CustomShortcuts/packages.config +++ b/vbnet/winforms/CustomShortcuts/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/winforms/DevTools/App.config b/vbnet/winforms/DevTools/App.config index 8e156463..b50c74f3 100644 --- a/vbnet/winforms/DevTools/App.config +++ b/vbnet/winforms/DevTools/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/vbnet/winforms/DevTools/DevTools.WinForms.vbproj b/vbnet/winforms/DevTools/DevTools.WinForms.vbproj index 60d6caef..214ac34b 100644 --- a/vbnet/winforms/DevTools/DevTools.WinForms.vbproj +++ b/vbnet/winforms/DevTools/DevTools.WinForms.vbproj @@ -10,6 +10,7 @@ DevTools.WinForms v4.6.2 512 + true true On Binary @@ -81,6 +82,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/winforms/DevTools/packages.config b/vbnet/winforms/DevTools/packages.config index 776bcc53..7fad945b 100644 --- a/vbnet/winforms/DevTools/packages.config +++ b/vbnet/winforms/DevTools/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/winforms/Dom.DragAndDrop/App.config b/vbnet/winforms/Dom.DragAndDrop/App.config index 8e156463..b50c74f3 100644 --- a/vbnet/winforms/Dom.DragAndDrop/App.config +++ b/vbnet/winforms/Dom.DragAndDrop/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/vbnet/winforms/Dom.DragAndDrop/Dom.DragAndDrop.WinForms.vbproj b/vbnet/winforms/Dom.DragAndDrop/Dom.DragAndDrop.WinForms.vbproj index c8d12d6b..a0a4f1f5 100644 --- a/vbnet/winforms/Dom.DragAndDrop/Dom.DragAndDrop.WinForms.vbproj +++ b/vbnet/winforms/Dom.DragAndDrop/Dom.DragAndDrop.WinForms.vbproj @@ -10,6 +10,7 @@ Dom.DragAndDrop.WinForms v4.6.2 512 + true true On Binary @@ -81,6 +82,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/winforms/Dom.DragAndDrop/packages.config b/vbnet/winforms/Dom.DragAndDrop/packages.config index 776bcc53..7fad945b 100644 --- a/vbnet/winforms/Dom.DragAndDrop/packages.config +++ b/vbnet/winforms/Dom.DragAndDrop/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/winforms/ElementHostEmbedding/App.config b/vbnet/winforms/ElementHostEmbedding/App.config index 8e156463..b50c74f3 100644 --- a/vbnet/winforms/ElementHostEmbedding/App.config +++ b/vbnet/winforms/ElementHostEmbedding/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/vbnet/winforms/ElementHostEmbedding/ElementHostEmbedding.WinForms.vbproj b/vbnet/winforms/ElementHostEmbedding/ElementHostEmbedding.WinForms.vbproj index c17f42dc..05eaba98 100644 --- a/vbnet/winforms/ElementHostEmbedding/ElementHostEmbedding.WinForms.vbproj +++ b/vbnet/winforms/ElementHostEmbedding/ElementHostEmbedding.WinForms.vbproj @@ -10,6 +10,7 @@ ElementHostEmbedding.WinForms v4.6.2 512 + true true On Binary @@ -95,6 +96,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/winforms/ElementHostEmbedding/packages.config b/vbnet/winforms/ElementHostEmbedding/packages.config index f2092374..25095e00 100644 --- a/vbnet/winforms/ElementHostEmbedding/packages.config +++ b/vbnet/winforms/ElementHostEmbedding/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/winforms/ElementVisibility/ElementVisibility.WinForms.vbproj b/vbnet/winforms/ElementVisibility/ElementVisibility.WinForms.vbproj index 3c440ad0..0860fe5c 100644 --- a/vbnet/winforms/ElementVisibility/ElementVisibility.WinForms.vbproj +++ b/vbnet/winforms/ElementVisibility/ElementVisibility.WinForms.vbproj @@ -83,6 +83,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/winforms/ElementVisibility/packages.config b/vbnet/winforms/ElementVisibility/packages.config index 776bcc53..7fad945b 100644 --- a/vbnet/winforms/ElementVisibility/packages.config +++ b/vbnet/winforms/ElementVisibility/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/winforms/FindText/App.config b/vbnet/winforms/FindText/App.config index bc3672db..61d0069c 100644 --- a/vbnet/winforms/FindText/App.config +++ b/vbnet/winforms/FindText/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/vbnet/winforms/FindText/FindText.WinForms.vbproj b/vbnet/winforms/FindText/FindText.WinForms.vbproj index 7c926c82..f233b55c 100644 --- a/vbnet/winforms/FindText/FindText.WinForms.vbproj +++ b/vbnet/winforms/FindText/FindText.WinForms.vbproj @@ -10,6 +10,7 @@ FindText.WinForms FindText.WinForms 512 + true WindowsForms v4.6.2 true @@ -84,6 +85,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/winforms/FindText/packages.config b/vbnet/winforms/FindText/packages.config index 776bcc53..7fad945b 100644 --- a/vbnet/winforms/FindText/packages.config +++ b/vbnet/winforms/FindText/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/winforms/FullScreen/App.config b/vbnet/winforms/FullScreen/App.config index 8e156463..b50c74f3 100644 --- a/vbnet/winforms/FullScreen/App.config +++ b/vbnet/winforms/FullScreen/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/vbnet/winforms/FullScreen/FullScreen.WinForms.vbproj b/vbnet/winforms/FullScreen/FullScreen.WinForms.vbproj index b58d32d6..0166f156 100644 --- a/vbnet/winforms/FullScreen/FullScreen.WinForms.vbproj +++ b/vbnet/winforms/FullScreen/FullScreen.WinForms.vbproj @@ -10,6 +10,7 @@ FullScreen.WinForms v4.6.2 512 + true true On Binary @@ -78,6 +79,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/winforms/FullScreen/packages.config b/vbnet/winforms/FullScreen/packages.config index 776bcc53..7fad945b 100644 --- a/vbnet/winforms/FullScreen/packages.config +++ b/vbnet/winforms/FullScreen/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/winforms/GoogleMaps/App.config b/vbnet/winforms/GoogleMaps/App.config index d1428ad7..8d234373 100644 --- a/vbnet/winforms/GoogleMaps/App.config +++ b/vbnet/winforms/GoogleMaps/App.config @@ -1,6 +1,6 @@ - + diff --git a/vbnet/winforms/GoogleMaps/GoogleMaps.WinForms.vbproj b/vbnet/winforms/GoogleMaps/GoogleMaps.WinForms.vbproj index fcdbb27c..1410cc34 100644 --- a/vbnet/winforms/GoogleMaps/GoogleMaps.WinForms.vbproj +++ b/vbnet/winforms/GoogleMaps/GoogleMaps.WinForms.vbproj @@ -80,6 +80,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/winforms/GoogleMaps/packages.config b/vbnet/winforms/GoogleMaps/packages.config index 776bcc53..7fad945b 100644 --- a/vbnet/winforms/GoogleMaps/packages.config +++ b/vbnet/winforms/GoogleMaps/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/winforms/GoogleStreetView/App.config b/vbnet/winforms/GoogleStreetView/App.config index 5c73fc53..8609e962 100644 --- a/vbnet/winforms/GoogleStreetView/App.config +++ b/vbnet/winforms/GoogleStreetView/App.config @@ -2,6 +2,6 @@ - + \ No newline at end of file diff --git a/vbnet/winforms/GoogleStreetView/GoogleStreetView.WinForms.vbproj b/vbnet/winforms/GoogleStreetView/GoogleStreetView.WinForms.vbproj index 57e188c1..1f0614d2 100644 --- a/vbnet/winforms/GoogleStreetView/GoogleStreetView.WinForms.vbproj +++ b/vbnet/winforms/GoogleStreetView/GoogleStreetView.WinForms.vbproj @@ -10,6 +10,7 @@ GoogleStreetView.WinForms v4.6.2 512 + true true On Binary @@ -81,6 +82,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/winforms/GoogleStreetView/packages.config b/vbnet/winforms/GoogleStreetView/packages.config index 776bcc53..7fad945b 100644 --- a/vbnet/winforms/GoogleStreetView/packages.config +++ b/vbnet/winforms/GoogleStreetView/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/winforms/Inspect/App.config b/vbnet/winforms/Inspect/App.config index 88fa4027..b50c74f3 100644 --- a/vbnet/winforms/Inspect/App.config +++ b/vbnet/winforms/Inspect/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/vbnet/winforms/Inspect/Inspect.WinForms.vbproj b/vbnet/winforms/Inspect/Inspect.WinForms.vbproj index 909cde94..d09ad01d 100644 --- a/vbnet/winforms/Inspect/Inspect.WinForms.vbproj +++ b/vbnet/winforms/Inspect/Inspect.WinForms.vbproj @@ -82,6 +82,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/winforms/Inspect/packages.config b/vbnet/winforms/Inspect/packages.config index 776bcc53..7fad945b 100644 --- a/vbnet/winforms/Inspect/packages.config +++ b/vbnet/winforms/Inspect/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/winforms/JavaScriptBridge/App.config b/vbnet/winforms/JavaScriptBridge/App.config index d5a0f2b6..c886293e 100644 --- a/vbnet/winforms/JavaScriptBridge/App.config +++ b/vbnet/winforms/JavaScriptBridge/App.config @@ -1,7 +1,7 @@  - + diff --git a/vbnet/winforms/JavaScriptBridge/JavaScriptBridge.WinForms.vbproj b/vbnet/winforms/JavaScriptBridge/JavaScriptBridge.WinForms.vbproj index 6d5ea36b..9c2b9c0b 100644 --- a/vbnet/winforms/JavaScriptBridge/JavaScriptBridge.WinForms.vbproj +++ b/vbnet/winforms/JavaScriptBridge/JavaScriptBridge.WinForms.vbproj @@ -10,6 +10,7 @@ JavaScriptBridge.WinForms v4.6.2 512 + true true On Binary @@ -78,6 +79,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/winforms/JavaScriptBridge/packages.config b/vbnet/winforms/JavaScriptBridge/packages.config index 776bcc53..7fad945b 100644 --- a/vbnet/winforms/JavaScriptBridge/packages.config +++ b/vbnet/winforms/JavaScriptBridge/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/winforms/KeyboardEventSimulation/App.config b/vbnet/winforms/KeyboardEventSimulation/App.config index bc3672db..61d0069c 100644 --- a/vbnet/winforms/KeyboardEventSimulation/App.config +++ b/vbnet/winforms/KeyboardEventSimulation/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/vbnet/winforms/KeyboardEventSimulation/KeyboardEventSimulation.WinForms.vbproj b/vbnet/winforms/KeyboardEventSimulation/KeyboardEventSimulation.WinForms.vbproj index 0e94050c..59639016 100644 --- a/vbnet/winforms/KeyboardEventSimulation/KeyboardEventSimulation.WinForms.vbproj +++ b/vbnet/winforms/KeyboardEventSimulation/KeyboardEventSimulation.WinForms.vbproj @@ -10,6 +10,7 @@ KeyboardEventSimulation.WinForms KeyboardEventSimulation.WinForms 512 + true WindowsForms v4.6.2 true @@ -76,6 +77,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/winforms/KeyboardEventSimulation/packages.config b/vbnet/winforms/KeyboardEventSimulation/packages.config index 776bcc53..7fad945b 100644 --- a/vbnet/winforms/KeyboardEventSimulation/packages.config +++ b/vbnet/winforms/KeyboardEventSimulation/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/winforms/Kiosk/App.config b/vbnet/winforms/Kiosk/App.config index 88fa4027..b50c74f3 100644 --- a/vbnet/winforms/Kiosk/App.config +++ b/vbnet/winforms/Kiosk/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/vbnet/winforms/Kiosk/Kiosk.WinForms.vbproj b/vbnet/winforms/Kiosk/Kiosk.WinForms.vbproj index ba31fdc1..ff3ef7c0 100644 --- a/vbnet/winforms/Kiosk/Kiosk.WinForms.vbproj +++ b/vbnet/winforms/Kiosk/Kiosk.WinForms.vbproj @@ -82,6 +82,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/winforms/Kiosk/packages.config b/vbnet/winforms/Kiosk/packages.config index 776bcc53..7fad945b 100644 --- a/vbnet/winforms/Kiosk/packages.config +++ b/vbnet/winforms/Kiosk/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/winforms/MailToHandling/App.config b/vbnet/winforms/MailToHandling/App.config index 8e156463..b50c74f3 100644 --- a/vbnet/winforms/MailToHandling/App.config +++ b/vbnet/winforms/MailToHandling/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/vbnet/winforms/MailToHandling/MailToHandling.WinForms.vbproj b/vbnet/winforms/MailToHandling/MailToHandling.WinForms.vbproj index a83a1c1d..30f8b962 100644 --- a/vbnet/winforms/MailToHandling/MailToHandling.WinForms.vbproj +++ b/vbnet/winforms/MailToHandling/MailToHandling.WinForms.vbproj @@ -10,6 +10,7 @@ MailToHandling.WinForms v4.6.2 512 + true true On Binary @@ -81,6 +82,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/winforms/MailToHandling/packages.config b/vbnet/winforms/MailToHandling/packages.config index 776bcc53..7fad945b 100644 --- a/vbnet/winforms/MailToHandling/packages.config +++ b/vbnet/winforms/MailToHandling/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/winforms/ObservePageChanges/App.config b/vbnet/winforms/ObservePageChanges/App.config index 8e156463..b50c74f3 100644 --- a/vbnet/winforms/ObservePageChanges/App.config +++ b/vbnet/winforms/ObservePageChanges/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/vbnet/winforms/ObservePageChanges/ObservePageChanges.WinForms.vbproj b/vbnet/winforms/ObservePageChanges/ObservePageChanges.WinForms.vbproj index 90b0f3f1..cc1d5226 100644 --- a/vbnet/winforms/ObservePageChanges/ObservePageChanges.WinForms.vbproj +++ b/vbnet/winforms/ObservePageChanges/ObservePageChanges.WinForms.vbproj @@ -10,6 +10,7 @@ ObservePageChanges.WinForms v4.6.2 512 + true true On Binary @@ -78,6 +79,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/winforms/ObservePageChanges/packages.config b/vbnet/winforms/ObservePageChanges/packages.config index 776bcc53..7fad945b 100644 --- a/vbnet/winforms/ObservePageChanges/packages.config +++ b/vbnet/winforms/ObservePageChanges/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/winforms/Popups/App.config b/vbnet/winforms/Popups/App.config index 8e156463..b50c74f3 100644 --- a/vbnet/winforms/Popups/App.config +++ b/vbnet/winforms/Popups/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/vbnet/winforms/Popups/Popups.WinForms.vbproj b/vbnet/winforms/Popups/Popups.WinForms.vbproj index c9eee143..58249815 100644 --- a/vbnet/winforms/Popups/Popups.WinForms.vbproj +++ b/vbnet/winforms/Popups/Popups.WinForms.vbproj @@ -10,6 +10,7 @@ Popups.WinForms v4.6.2 512 + true true On Binary @@ -81,6 +82,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/winforms/Popups/packages.config b/vbnet/winforms/Popups/packages.config index 776bcc53..7fad945b 100644 --- a/vbnet/winforms/Popups/packages.config +++ b/vbnet/winforms/Popups/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/winforms/Profiles/App.config b/vbnet/winforms/Profiles/App.config index 5c73fc53..8609e962 100644 --- a/vbnet/winforms/Profiles/App.config +++ b/vbnet/winforms/Profiles/App.config @@ -2,6 +2,6 @@ - + \ No newline at end of file diff --git a/vbnet/winforms/Profiles/Profiles.WinForms.vbproj b/vbnet/winforms/Profiles/Profiles.WinForms.vbproj index f70f66eb..b0939cc6 100644 --- a/vbnet/winforms/Profiles/Profiles.WinForms.vbproj +++ b/vbnet/winforms/Profiles/Profiles.WinForms.vbproj @@ -10,6 +10,7 @@ Profiles.WinForms v4.6.2 512 + true true On Binary @@ -78,6 +79,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/winforms/Profiles/packages.config b/vbnet/winforms/Profiles/packages.config index 776bcc53..7fad945b 100644 --- a/vbnet/winforms/Profiles/packages.config +++ b/vbnet/winforms/Profiles/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/winforms/SimulateUserInput/App.config b/vbnet/winforms/SimulateUserInput/App.config index bc3672db..61d0069c 100644 --- a/vbnet/winforms/SimulateUserInput/App.config +++ b/vbnet/winforms/SimulateUserInput/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/vbnet/winforms/SimulateUserInput/SimulateUserInput.WinForms.vbproj b/vbnet/winforms/SimulateUserInput/SimulateUserInput.WinForms.vbproj index 8d361abd..9f30c947 100644 --- a/vbnet/winforms/SimulateUserInput/SimulateUserInput.WinForms.vbproj +++ b/vbnet/winforms/SimulateUserInput/SimulateUserInput.WinForms.vbproj @@ -10,6 +10,7 @@ SimulateUserInput.WinForms SimulateUserInput.WinForms 512 + true WindowsForms v4.6.2 true @@ -76,6 +77,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/winforms/SimulateUserInput/packages.config b/vbnet/winforms/SimulateUserInput/packages.config index 776bcc53..7fad945b 100644 --- a/vbnet/winforms/SimulateUserInput/packages.config +++ b/vbnet/winforms/SimulateUserInput/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/wpf/Chromecast/App.config b/vbnet/wpf/Chromecast/App.config index e930146a..1b997731 100644 --- a/vbnet/wpf/Chromecast/App.config +++ b/vbnet/wpf/Chromecast/App.config @@ -1,7 +1,3 @@ - - - - \ No newline at end of file diff --git a/vbnet/wpf/Chromecast/Chromecast.Wpf.vbproj b/vbnet/wpf/Chromecast/Chromecast.Wpf.vbproj index f00caaa6..cabe5d8b 100644 --- a/vbnet/wpf/Chromecast/Chromecast.Wpf.vbproj +++ b/vbnet/wpf/Chromecast/Chromecast.Wpf.vbproj @@ -78,6 +78,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/wpf/Chromecast/packages.config b/vbnet/wpf/Chromecast/packages.config index f2092374..25095e00 100644 --- a/vbnet/wpf/Chromecast/packages.config +++ b/vbnet/wpf/Chromecast/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/wpf/ChromiumBinariesResolver/App.config b/vbnet/wpf/ChromiumBinariesResolver/App.config index d1428ad7..8d234373 100644 --- a/vbnet/wpf/ChromiumBinariesResolver/App.config +++ b/vbnet/wpf/ChromiumBinariesResolver/App.config @@ -1,6 +1,6 @@ - + diff --git a/vbnet/wpf/ChromiumBinariesResolver/ChromiumBinariesResolver.Wpf.vbproj b/vbnet/wpf/ChromiumBinariesResolver/ChromiumBinariesResolver.Wpf.vbproj index 9e58f3ba..875532a3 100644 --- a/vbnet/wpf/ChromiumBinariesResolver/ChromiumBinariesResolver.Wpf.vbproj +++ b/vbnet/wpf/ChromiumBinariesResolver/ChromiumBinariesResolver.Wpf.vbproj @@ -10,6 +10,7 @@ ChromiumBinariesResolver.Wpf v4.6.2 512 + true {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{F184B08F-C81C-45F6-A57F-5ABD9991F28F} true @@ -95,6 +96,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/wpf/ChromiumBinariesResolver/packages.config b/vbnet/wpf/ChromiumBinariesResolver/packages.config index f2092374..25095e00 100644 --- a/vbnet/wpf/ChromiumBinariesResolver/packages.config +++ b/vbnet/wpf/ChromiumBinariesResolver/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/wpf/ContextMenu.SpellCheck/ContextMenu.SpellCheck.Wpf.vbproj b/vbnet/wpf/ContextMenu.SpellCheck/ContextMenu.SpellCheck.Wpf.vbproj index f3d499f0..76d76648 100644 --- a/vbnet/wpf/ContextMenu.SpellCheck/ContextMenu.SpellCheck.Wpf.vbproj +++ b/vbnet/wpf/ContextMenu.SpellCheck/ContextMenu.SpellCheck.Wpf.vbproj @@ -95,6 +95,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/wpf/ContextMenu.SpellCheck/app.config b/vbnet/wpf/ContextMenu.SpellCheck/app.config index e930146a..1b997731 100644 --- a/vbnet/wpf/ContextMenu.SpellCheck/app.config +++ b/vbnet/wpf/ContextMenu.SpellCheck/app.config @@ -1,7 +1,3 @@ - - - - \ No newline at end of file diff --git a/vbnet/wpf/ContextMenu.SpellCheck/packages.config b/vbnet/wpf/ContextMenu.SpellCheck/packages.config index f2092374..25095e00 100644 --- a/vbnet/wpf/ContextMenu.SpellCheck/packages.config +++ b/vbnet/wpf/ContextMenu.SpellCheck/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/wpf/ContextMenu/ContextMenu.Wpf.vbproj b/vbnet/wpf/ContextMenu/ContextMenu.Wpf.vbproj index cba15f22..8ff7ae38 100644 --- a/vbnet/wpf/ContextMenu/ContextMenu.Wpf.vbproj +++ b/vbnet/wpf/ContextMenu/ContextMenu.Wpf.vbproj @@ -92,6 +92,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/wpf/ContextMenu/app.config b/vbnet/wpf/ContextMenu/app.config index e930146a..1b997731 100644 --- a/vbnet/wpf/ContextMenu/app.config +++ b/vbnet/wpf/ContextMenu/app.config @@ -1,7 +1,3 @@ - - - - \ No newline at end of file diff --git a/vbnet/wpf/ContextMenu/packages.config b/vbnet/wpf/ContextMenu/packages.config index f2092374..25095e00 100644 --- a/vbnet/wpf/ContextMenu/packages.config +++ b/vbnet/wpf/ContextMenu/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/wpf/CreateHtmlUi/App.config b/vbnet/wpf/CreateHtmlUi/App.config index 8e156463..b50c74f3 100644 --- a/vbnet/wpf/CreateHtmlUi/App.config +++ b/vbnet/wpf/CreateHtmlUi/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/vbnet/wpf/CreateHtmlUi/CreateHtmlUi.Wpf.vbproj b/vbnet/wpf/CreateHtmlUi/CreateHtmlUi.Wpf.vbproj index 8c73e229..992543bd 100644 --- a/vbnet/wpf/CreateHtmlUi/CreateHtmlUi.Wpf.vbproj +++ b/vbnet/wpf/CreateHtmlUi/CreateHtmlUi.Wpf.vbproj @@ -10,6 +10,7 @@ CreateHtmlUi.Wpf v4.6.2 512 + true {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{F184B08F-C81C-45F6-A57F-5ABD9991F28F} true On @@ -92,6 +93,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/wpf/CreateHtmlUi/packages.config b/vbnet/wpf/CreateHtmlUi/packages.config index f2092374..25095e00 100644 --- a/vbnet/wpf/CreateHtmlUi/packages.config +++ b/vbnet/wpf/CreateHtmlUi/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/wpf/DragAndDrop/App.config b/vbnet/wpf/DragAndDrop/App.config index 8e156463..b50c74f3 100644 --- a/vbnet/wpf/DragAndDrop/App.config +++ b/vbnet/wpf/DragAndDrop/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/vbnet/wpf/DragAndDrop/DragAndDrop.Wpf.vbproj b/vbnet/wpf/DragAndDrop/DragAndDrop.Wpf.vbproj index 9165923e..8e820d1e 100644 --- a/vbnet/wpf/DragAndDrop/DragAndDrop.Wpf.vbproj +++ b/vbnet/wpf/DragAndDrop/DragAndDrop.Wpf.vbproj @@ -10,6 +10,7 @@ DragAndDrop.Wpf v4.6.2 512 + true {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{F184B08F-C81C-45F6-A57F-5ABD9991F28F} true On @@ -92,6 +93,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/wpf/DragAndDrop/packages.config b/vbnet/wpf/DragAndDrop/packages.config index f2092374..25095e00 100644 --- a/vbnet/wpf/DragAndDrop/packages.config +++ b/vbnet/wpf/DragAndDrop/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/wpf/FindText/FindText.Wpf.vbproj b/vbnet/wpf/FindText/FindText.Wpf.vbproj index e7a0cbce..2f4328f7 100644 --- a/vbnet/wpf/FindText/FindText.Wpf.vbproj +++ b/vbnet/wpf/FindText/FindText.Wpf.vbproj @@ -104,6 +104,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/wpf/FindText/app.config b/vbnet/wpf/FindText/app.config index e930146a..1b997731 100644 --- a/vbnet/wpf/FindText/app.config +++ b/vbnet/wpf/FindText/app.config @@ -1,7 +1,3 @@ - - - - \ No newline at end of file diff --git a/vbnet/wpf/FindText/packages.config b/vbnet/wpf/FindText/packages.config index f2092374..25095e00 100644 --- a/vbnet/wpf/FindText/packages.config +++ b/vbnet/wpf/FindText/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/wpf/Inspect/App.config b/vbnet/wpf/Inspect/App.config index 88fa4027..b50c74f3 100644 --- a/vbnet/wpf/Inspect/App.config +++ b/vbnet/wpf/Inspect/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/vbnet/wpf/Inspect/Inspect.Wpf.vbproj b/vbnet/wpf/Inspect/Inspect.Wpf.vbproj index 595beff2..390d027c 100644 --- a/vbnet/wpf/Inspect/Inspect.Wpf.vbproj +++ b/vbnet/wpf/Inspect/Inspect.Wpf.vbproj @@ -93,6 +93,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/wpf/Inspect/packages.config b/vbnet/wpf/Inspect/packages.config index f2092374..25095e00 100644 --- a/vbnet/wpf/Inspect/packages.config +++ b/vbnet/wpf/Inspect/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/wpf/KeyboardEventSimulation/KeyboardEventSimulation.Wpf.vbproj b/vbnet/wpf/KeyboardEventSimulation/KeyboardEventSimulation.Wpf.vbproj index e5084272..e46ad07e 100644 --- a/vbnet/wpf/KeyboardEventSimulation/KeyboardEventSimulation.Wpf.vbproj +++ b/vbnet/wpf/KeyboardEventSimulation/KeyboardEventSimulation.Wpf.vbproj @@ -92,6 +92,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/wpf/KeyboardEventSimulation/app.config b/vbnet/wpf/KeyboardEventSimulation/app.config index e930146a..1b997731 100644 --- a/vbnet/wpf/KeyboardEventSimulation/app.config +++ b/vbnet/wpf/KeyboardEventSimulation/app.config @@ -1,7 +1,3 @@ - - - - \ No newline at end of file diff --git a/vbnet/wpf/KeyboardEventSimulation/packages.config b/vbnet/wpf/KeyboardEventSimulation/packages.config index f2092374..25095e00 100644 --- a/vbnet/wpf/KeyboardEventSimulation/packages.config +++ b/vbnet/wpf/KeyboardEventSimulation/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/wpf/Kiosk/App.config b/vbnet/wpf/Kiosk/App.config index 88fa4027..b50c74f3 100644 --- a/vbnet/wpf/Kiosk/App.config +++ b/vbnet/wpf/Kiosk/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/vbnet/wpf/Kiosk/Kiosk.Wpf.vbproj b/vbnet/wpf/Kiosk/Kiosk.Wpf.vbproj index 32478b28..18435133 100644 --- a/vbnet/wpf/Kiosk/Kiosk.Wpf.vbproj +++ b/vbnet/wpf/Kiosk/Kiosk.Wpf.vbproj @@ -93,6 +93,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/wpf/Kiosk/packages.config b/vbnet/wpf/Kiosk/packages.config index f2092374..25095e00 100644 --- a/vbnet/wpf/Kiosk/packages.config +++ b/vbnet/wpf/Kiosk/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/wpf/Mvvm/App.config b/vbnet/wpf/Mvvm/App.config index 5c73fc53..8609e962 100644 --- a/vbnet/wpf/Mvvm/App.config +++ b/vbnet/wpf/Mvvm/App.config @@ -2,6 +2,6 @@ - + \ No newline at end of file diff --git a/vbnet/wpf/Mvvm/Mvvm.Wpf.vbproj b/vbnet/wpf/Mvvm/Mvvm.Wpf.vbproj index 0bc66bf8..8da52099 100644 --- a/vbnet/wpf/Mvvm/Mvvm.Wpf.vbproj +++ b/vbnet/wpf/Mvvm/Mvvm.Wpf.vbproj @@ -10,6 +10,7 @@ MVVM.Wpf v4.6.2 512 + true {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{F184B08F-C81C-45F6-A57F-5ABD9991F28F} true On @@ -89,6 +90,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/wpf/Mvvm/packages.config b/vbnet/wpf/Mvvm/packages.config index f2092374..25095e00 100644 --- a/vbnet/wpf/Mvvm/packages.config +++ b/vbnet/wpf/Mvvm/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/wpf/Popups/App.config b/vbnet/wpf/Popups/App.config index 8e156463..b50c74f3 100644 --- a/vbnet/wpf/Popups/App.config +++ b/vbnet/wpf/Popups/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/vbnet/wpf/Popups/Popups.Wpf.vbproj b/vbnet/wpf/Popups/Popups.Wpf.vbproj index 1b31d3d4..0f7049c2 100644 --- a/vbnet/wpf/Popups/Popups.Wpf.vbproj +++ b/vbnet/wpf/Popups/Popups.Wpf.vbproj @@ -10,6 +10,7 @@ Popups.Wpf v4.6.2 512 + true {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{F184B08F-C81C-45F6-A57F-5ABD9991F28F} true On @@ -92,6 +93,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/wpf/Popups/packages.config b/vbnet/wpf/Popups/packages.config index f2092374..25095e00 100644 --- a/vbnet/wpf/Popups/packages.config +++ b/vbnet/wpf/Popups/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/wpf/SaveWebPage/SaveWebPage.Wpf.vbproj b/vbnet/wpf/SaveWebPage/SaveWebPage.Wpf.vbproj index 677e5fe4..3c3452f9 100644 --- a/vbnet/wpf/SaveWebPage/SaveWebPage.Wpf.vbproj +++ b/vbnet/wpf/SaveWebPage/SaveWebPage.Wpf.vbproj @@ -10,6 +10,7 @@ SaveWebPage.Wpf v4.6.2 512 + true {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{F184B08F-C81C-45F6-A57F-5ABD9991F28F} true @@ -91,6 +92,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/wpf/SaveWebPage/app.config b/vbnet/wpf/SaveWebPage/app.config index e930146a..1b997731 100644 --- a/vbnet/wpf/SaveWebPage/app.config +++ b/vbnet/wpf/SaveWebPage/app.config @@ -1,7 +1,3 @@ - - - - \ No newline at end of file diff --git a/vbnet/wpf/SaveWebPage/packages.config b/vbnet/wpf/SaveWebPage/packages.config index f2092374..25095e00 100644 --- a/vbnet/wpf/SaveWebPage/packages.config +++ b/vbnet/wpf/SaveWebPage/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/wpf/TransparentWebPage/TransparentWebPage.Wpf.vbproj b/vbnet/wpf/TransparentWebPage/TransparentWebPage.Wpf.vbproj index 8a50a51b..fa0bffa5 100644 --- a/vbnet/wpf/TransparentWebPage/TransparentWebPage.Wpf.vbproj +++ b/vbnet/wpf/TransparentWebPage/TransparentWebPage.Wpf.vbproj @@ -10,6 +10,7 @@ TransparentWebPage.Wpf v4.6.2 512 + true {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{F184B08F-C81C-45F6-A57F-5ABD9991F28F} On Binary @@ -87,6 +88,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/wpf/TransparentWebPage/app.config b/vbnet/wpf/TransparentWebPage/app.config index e930146a..1b997731 100644 --- a/vbnet/wpf/TransparentWebPage/app.config +++ b/vbnet/wpf/TransparentWebPage/app.config @@ -1,7 +1,3 @@ - - - - \ No newline at end of file diff --git a/vbnet/wpf/TransparentWebPage/packages.config b/vbnet/wpf/TransparentWebPage/packages.config index f2092374..25095e00 100644 --- a/vbnet/wpf/TransparentWebPage/packages.config +++ b/vbnet/wpf/TransparentWebPage/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/wpf/UiAutomation/UiAutomation.Wpf.vbproj b/vbnet/wpf/UiAutomation/UiAutomation.Wpf.vbproj index 592f5b0f..c9693900 100644 --- a/vbnet/wpf/UiAutomation/UiAutomation.Wpf.vbproj +++ b/vbnet/wpf/UiAutomation/UiAutomation.Wpf.vbproj @@ -10,6 +10,7 @@ UiAutomation.Wpf v4.6.2 512 + true {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{F184B08F-C81C-45F6-A57F-5ABD9991F28F} true On @@ -90,6 +91,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/wpf/UiAutomation/app.config b/vbnet/wpf/UiAutomation/app.config index e930146a..1b997731 100644 --- a/vbnet/wpf/UiAutomation/app.config +++ b/vbnet/wpf/UiAutomation/app.config @@ -1,7 +1,3 @@ - - - - \ No newline at end of file diff --git a/vbnet/wpf/UiAutomation/packages.config b/vbnet/wpf/UiAutomation/packages.config index f2092374..25095e00 100644 --- a/vbnet/wpf/UiAutomation/packages.config +++ b/vbnet/wpf/UiAutomation/packages.config @@ -6,5 +6,9 @@ + + + + diff --git a/vbnet/wpf/Zoom/App.config b/vbnet/wpf/Zoom/App.config index 8e156463..b50c74f3 100644 --- a/vbnet/wpf/Zoom/App.config +++ b/vbnet/wpf/Zoom/App.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/vbnet/wpf/Zoom/Zoom.Wpf.vbproj b/vbnet/wpf/Zoom/Zoom.Wpf.vbproj index 4b0152af..f9dab8ca 100644 --- a/vbnet/wpf/Zoom/Zoom.Wpf.vbproj +++ b/vbnet/wpf/Zoom/Zoom.Wpf.vbproj @@ -10,6 +10,7 @@ Zoom.Wpf v4.6.2 512 + true {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{F184B08F-C81C-45F6-A57F-5ABD9991F28F} true On @@ -92,6 +93,22 @@ ..\..\..\packages\Google.Protobuf.3.32.0\lib\net45\Google.Protobuf.dll + + ..\..\..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + True + + + ..\..\..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll + True + + + ..\..\..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + True + + + ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + diff --git a/vbnet/wpf/Zoom/packages.config b/vbnet/wpf/Zoom/packages.config index f2092374..25095e00 100644 --- a/vbnet/wpf/Zoom/packages.config +++ b/vbnet/wpf/Zoom/packages.config @@ -6,5 +6,9 @@ + + + +