diff --git a/.github/workflows/cmdlets.ci.yml b/.github/workflows/cmdlets.ci.yml
index e07bc9d..ebbe35a 100644
--- a/.github/workflows/cmdlets.ci.yml
+++ b/.github/workflows/cmdlets.ci.yml
@@ -28,6 +28,18 @@ jobs:
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.1
+ - uses: actions/cache@v4
+ id: cache
+ with:
+ path: ~/.nuget/packages
+ key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
+
+ - uses: actions/cache@v4
+ id: cache2
+ with:
+ path: .\packages
+ key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.config') }}
+
- name: Restore
shell: pwsh
run: |
diff --git a/.github/workflows/cmdlets.production.yml b/.github/workflows/cmdlets.production.yml
index 9f5a53a..4e546da 100644
--- a/.github/workflows/cmdlets.production.yml
+++ b/.github/workflows/cmdlets.production.yml
@@ -20,6 +20,18 @@ jobs:
with:
dotnet-version: 6.0.x
+ - uses: actions/cache@v4
+ id: cache
+ with:
+ path: ~/.nuget/packages
+ key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
+
+ - uses: actions/cache@v4
+ id: cache2
+ with:
+ path: .\packages
+ key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.config') }}
+
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.1
diff --git a/.github/workflows/hosts.ci.yml b/.github/workflows/hosts.ci.yml
index 9309e3e..52e9ff6 100644
--- a/.github/workflows/hosts.ci.yml
+++ b/.github/workflows/hosts.ci.yml
@@ -24,6 +24,8 @@ jobs:
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
+ cache: true
+ cache-dependency-path: IronmanPowerShellHost/packages.lock.json
- name: Build Ironman Host
shell: pwsh
diff --git a/.github/workflows/hosts.production.yml b/.github/workflows/hosts.production.yml
index a2847af..b4c23d5 100644
--- a/.github/workflows/hosts.production.yml
+++ b/.github/workflows/hosts.production.yml
@@ -17,6 +17,8 @@ jobs:
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
+ cache: true
+ cache-dependency-path: IronmanPowerShellHost/packages.lock.json
- name: Build and Release
shell: pwsh
diff --git a/.github/workflows/vs.yml b/.github/workflows/vs.yml
index daee1a1..28acffc 100644
--- a/.github/workflows/vs.yml
+++ b/.github/workflows/vs.yml
@@ -20,6 +20,18 @@ jobs:
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.1
+ - uses: actions/cache@v4
+ id: cache
+ with:
+ path: ~/.nuget/packages
+ key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
+
+ - uses: actions/cache@v4
+ id: cache2
+ with:
+ path: .\packages
+ key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.config') }}
+
- name: Restore
shell: pwsh
run: |
diff --git a/.github/workflows/vscode.ci.yml b/.github/workflows/vscode.ci.yml
index 3b1a671..9dc6be4 100644
--- a/.github/workflows/vscode.ci.yml
+++ b/.github/workflows/vscode.ci.yml
@@ -25,6 +25,18 @@ jobs:
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.1
+ - uses: actions/cache@v4
+ id: cache
+ with:
+ path: ~/.nuget/packages
+ key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
+
+ - uses: actions/cache@v4
+ id: cache2
+ with:
+ path: .\packages
+ key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.config') }}
+
- name: Restore
shell: pwsh
run: |
diff --git a/.github/workflows/vscode.production.yml b/.github/workflows/vscode.production.yml
index 7e3a67c..e2c985b 100644
--- a/.github/workflows/vscode.production.yml
+++ b/.github/workflows/vscode.production.yml
@@ -20,6 +20,18 @@ jobs:
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.1
+ - uses: actions/cache@v4
+ id: cache
+ with:
+ path: ~/.nuget/packages
+ key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
+
+ - uses: actions/cache@v4
+ id: cache2
+ with:
+ path: .\packages
+ key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.config') }}
+
- name: Restore
shell: pwsh
run: |
diff --git a/.github/workflows/winformdesigner.ci.yml b/.github/workflows/winformdesigner.ci.yml
index 1ad7eef..fc84478 100644
--- a/.github/workflows/winformdesigner.ci.yml
+++ b/.github/workflows/winformdesigner.ci.yml
@@ -31,6 +31,18 @@ jobs:
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.1
+ - uses: actions/cache@v4
+ id: cache
+ with:
+ path: ~/.nuget/packages
+ key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
+
+ - uses: actions/cache@v4
+ id: cache2
+ with:
+ path: .\packages
+ key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.config') }}
+
- name: Restore
shell: pwsh
run: |
diff --git a/.github/workflows/winformdesigner.production.yml b/.github/workflows/winformdesigner.production.yml
index 29a713c..6da70be 100644
--- a/.github/workflows/winformdesigner.production.yml
+++ b/.github/workflows/winformdesigner.production.yml
@@ -27,6 +27,18 @@ jobs:
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.1
+ - uses: actions/cache@v4
+ id: cache
+ with:
+ path: ~/.nuget/packages
+ key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
+
+ - uses: actions/cache@v4
+ id: cache2
+ with:
+ path: .\packages
+ key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.config') }}
+
- name: Restore
shell: pwsh
run: |
diff --git a/Common/Common.csproj b/Common/Common.csproj
index a3b5dfc..0d93d92 100644
--- a/Common/Common.csproj
+++ b/Common/Common.csproj
@@ -5,6 +5,7 @@
true
..\Build\FinalPublicKey.snk
false
+ true
diff --git a/Common/packages.lock.json b/Common/packages.lock.json
new file mode 100644
index 0000000..3181d96
--- /dev/null
+++ b/Common/packages.lock.json
@@ -0,0 +1,576 @@
+{
+ "version": 1,
+ "dependencies": {
+ ".NETStandard,Version=v2.0": {
+ "Microsoft.Win32.Registry": {
+ "type": "Direct",
+ "requested": "[4.5.0, )",
+ "resolved": "4.5.0",
+ "contentHash": "+FWlwd//+Tt56316p00hVePBCouXyEzT86Jb3+AuRotTND0IYn0OO3obs1gnQEs/txEnt+rF2JBGLItTG+Be6A==",
+ "dependencies": {
+ "System.Buffers": "4.4.0",
+ "System.Memory": "4.5.0",
+ "System.Security.AccessControl": "4.5.0",
+ "System.Security.Principal.Windows": "4.5.0"
+ }
+ },
+ "NETStandard.Library": {
+ "type": "Direct",
+ "requested": "[2.0.3, )",
+ "resolved": "2.0.3",
+ "contentHash": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0"
+ }
+ },
+ "Newtonsoft.Json": {
+ "type": "Direct",
+ "requested": "[9.0.1, )",
+ "resolved": "9.0.1",
+ "contentHash": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==",
+ "dependencies": {
+ "Microsoft.CSharp": "4.0.1",
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Dynamic.Runtime": "4.0.11",
+ "System.Globalization": "4.0.11",
+ "System.IO": "4.1.0",
+ "System.Linq": "4.1.0",
+ "System.Linq.Expressions": "4.1.0",
+ "System.ObjectModel": "4.0.12",
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Extensions": "4.0.1",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Runtime.Serialization.Primitives": "4.1.1",
+ "System.Text.Encoding": "4.0.11",
+ "System.Text.Encoding.Extensions": "4.0.11",
+ "System.Text.RegularExpressions": "4.1.0",
+ "System.Threading": "4.0.11",
+ "System.Threading.Tasks": "4.0.11",
+ "System.Xml.ReaderWriter": "4.0.11",
+ "System.Xml.XDocument": "4.0.11"
+ }
+ },
+ "PowerShellStandard.Library": {
+ "type": "Direct",
+ "requested": "[5.1.0, )",
+ "resolved": "5.1.0",
+ "contentHash": "iYaRvQsM1fow9h3uEmio+2m2VXfulgI16AYHaTZ8Sf7erGe27Qc8w/h6QL5UPuwv1aXR40QfzMEwcCeiYJp2cw=="
+ },
+ "Serilog.Sinks.File": {
+ "type": "Direct",
+ "requested": "[5.0.0, )",
+ "resolved": "5.0.0",
+ "contentHash": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==",
+ "dependencies": {
+ "Serilog": "2.10.0"
+ }
+ },
+ "ICSharpCode.Decompiler": {
+ "type": "Transitive",
+ "resolved": "7.0.0.6488",
+ "contentHash": "1enxZGgiZgnka6VcHpBxkcuuNo462+YVPzRYUfe2/eF3tcDuLk9/yKEfQnXC265sRKnDhks+2Xhk0PlyagM5EA==",
+ "dependencies": {
+ "System.Collections.Immutable": "5.0.0",
+ "System.Reflection.Metadata": "5.0.0"
+ }
+ },
+ "Microsoft.CSharp": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Dynamic.Runtime": "4.0.11",
+ "System.Globalization": "4.0.11",
+ "System.Linq": "4.1.0",
+ "System.Linq.Expressions": "4.1.0",
+ "System.ObjectModel": "4.0.12",
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Extensions": "4.0.1",
+ "System.Reflection.Primitives": "4.0.1",
+ "System.Reflection.TypeExtensions": "4.1.0",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Runtime.InteropServices": "4.1.0",
+ "System.Threading": "4.0.11"
+ }
+ },
+ "Microsoft.NETCore.Platforms": {
+ "type": "Transitive",
+ "resolved": "1.1.0",
+ "contentHash": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A=="
+ },
+ "Microsoft.NETCore.Targets": {
+ "type": "Transitive",
+ "resolved": "1.0.1",
+ "contentHash": "rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw=="
+ },
+ "Serilog": {
+ "type": "Transitive",
+ "resolved": "2.10.0",
+ "contentHash": "+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA=="
+ },
+ "System.Buffers": {
+ "type": "Transitive",
+ "resolved": "4.5.1",
+ "contentHash": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg=="
+ },
+ "System.Collections": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Collections.Immutable": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
+ "dependencies": {
+ "System.Memory": "4.5.4"
+ }
+ },
+ "System.Diagnostics.Debug": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Diagnostics.Tools": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Dynamic.Runtime": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Globalization": "4.0.11",
+ "System.Linq": "4.1.0",
+ "System.Linq.Expressions": "4.1.0",
+ "System.ObjectModel": "4.0.12",
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Emit": "4.0.1",
+ "System.Reflection.Emit.ILGeneration": "4.0.1",
+ "System.Reflection.Primitives": "4.0.1",
+ "System.Reflection.TypeExtensions": "4.1.0",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Threading": "4.0.11"
+ }
+ },
+ "System.Globalization": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.IO": {
+ "type": "Transitive",
+ "resolved": "4.1.0",
+ "contentHash": "3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Text.Encoding": "4.0.11",
+ "System.Threading.Tasks": "4.0.11"
+ }
+ },
+ "System.IO.FileSystem": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.IO": "4.1.0",
+ "System.IO.FileSystem.Primitives": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Handles": "4.0.1",
+ "System.Text.Encoding": "4.0.11",
+ "System.Threading.Tasks": "4.0.11"
+ }
+ },
+ "System.IO.FileSystem.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
+ "dependencies": {
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Linq": {
+ "type": "Transitive",
+ "resolved": "4.1.0",
+ "contentHash": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0"
+ }
+ },
+ "System.Linq.Expressions": {
+ "type": "Transitive",
+ "resolved": "4.1.0",
+ "contentHash": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Globalization": "4.0.11",
+ "System.IO": "4.1.0",
+ "System.Linq": "4.1.0",
+ "System.ObjectModel": "4.0.12",
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Emit": "4.0.1",
+ "System.Reflection.Emit.ILGeneration": "4.0.1",
+ "System.Reflection.Emit.Lightweight": "4.0.1",
+ "System.Reflection.Extensions": "4.0.1",
+ "System.Reflection.Primitives": "4.0.1",
+ "System.Reflection.TypeExtensions": "4.1.0",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Threading": "4.0.11"
+ }
+ },
+ "System.Memory": {
+ "type": "Transitive",
+ "resolved": "4.5.4",
+ "contentHash": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
+ "dependencies": {
+ "System.Buffers": "4.5.1",
+ "System.Numerics.Vectors": "4.4.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.5.3"
+ }
+ },
+ "System.Numerics.Vectors": {
+ "type": "Transitive",
+ "resolved": "4.4.0",
+ "contentHash": "UiLzLW+Lw6HLed1Hcg+8jSRttrbuXv7DANVj0DkL9g6EnnzbL75EB7EWsw5uRbhxd/4YdG8li5XizGWepmG3PQ=="
+ },
+ "System.ObjectModel": {
+ "type": "Transitive",
+ "resolved": "4.0.12",
+ "contentHash": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Threading": "4.0.11"
+ }
+ },
+ "System.Reflection": {
+ "type": "Transitive",
+ "resolved": "4.1.0",
+ "contentHash": "JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.IO": "4.1.0",
+ "System.Reflection.Primitives": "4.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Reflection.Emit": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==",
+ "dependencies": {
+ "System.IO": "4.1.0",
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Emit.ILGeneration": "4.0.1",
+ "System.Reflection.Primitives": "4.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Reflection.Emit.ILGeneration": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==",
+ "dependencies": {
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Primitives": "4.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Reflection.Emit.Lightweight": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
+ "dependencies": {
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Emit.ILGeneration": "4.0.1",
+ "System.Reflection.Primitives": "4.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Reflection.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Reflection": "4.1.0",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Reflection.Metadata": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==",
+ "dependencies": {
+ "System.Collections.Immutable": "5.0.0"
+ }
+ },
+ "System.Reflection.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Reflection.TypeExtensions": {
+ "type": "Transitive",
+ "resolved": "4.1.0",
+ "contentHash": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==",
+ "dependencies": {
+ "System.Reflection": "4.1.0",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Resources.ResourceManager": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Globalization": "4.0.11",
+ "System.Reflection": "4.1.0",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Runtime": {
+ "type": "Transitive",
+ "resolved": "4.1.0",
+ "contentHash": "v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1"
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe": {
+ "type": "Transitive",
+ "resolved": "4.5.3",
+ "contentHash": "3TIsJhD1EiiT0w2CcDMN/iSSwnNnsrnbzeVHSKkaEgV85txMprmuO+Yq2AdSbeVGcg28pdNDTPK87tJhX7VFHw=="
+ },
+ "System.Runtime.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.1.0",
+ "contentHash": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Runtime.Handles": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Runtime.InteropServices": {
+ "type": "Transitive",
+ "resolved": "4.1.0",
+ "contentHash": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Primitives": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Handles": "4.0.1"
+ }
+ },
+ "System.Runtime.Serialization.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.1.1",
+ "contentHash": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==",
+ "dependencies": {
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Security.AccessControl": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==",
+ "dependencies": {
+ "System.Security.Principal.Windows": "4.5.0"
+ }
+ },
+ "System.Security.Principal.Windows": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ=="
+ },
+ "System.Text.Encoding": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Text.Encoding.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Text.Encoding": "4.0.11"
+ }
+ },
+ "System.Text.RegularExpressions": {
+ "type": "Transitive",
+ "resolved": "4.1.0",
+ "contentHash": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Globalization": "4.0.11",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Threading": "4.0.11"
+ }
+ },
+ "System.Threading": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==",
+ "dependencies": {
+ "System.Runtime": "4.1.0",
+ "System.Threading.Tasks": "4.0.11"
+ }
+ },
+ "System.Threading.Tasks": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Threading.Tasks.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.0.0",
+ "contentHash": "pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Runtime": "4.1.0",
+ "System.Threading.Tasks": "4.0.11"
+ }
+ },
+ "System.Xml.ReaderWriter": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Globalization": "4.0.11",
+ "System.IO": "4.1.0",
+ "System.IO.FileSystem": "4.0.1",
+ "System.IO.FileSystem.Primitives": "4.0.1",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Runtime.InteropServices": "4.1.0",
+ "System.Text.Encoding": "4.0.11",
+ "System.Text.Encoding.Extensions": "4.0.11",
+ "System.Text.RegularExpressions": "4.1.0",
+ "System.Threading.Tasks": "4.0.11",
+ "System.Threading.Tasks.Extensions": "4.0.0"
+ }
+ },
+ "System.Xml.XDocument": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Diagnostics.Tools": "4.0.1",
+ "System.Globalization": "4.0.11",
+ "System.IO": "4.1.0",
+ "System.Reflection": "4.1.0",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Text.Encoding": "4.0.11",
+ "System.Threading": "4.0.11",
+ "System.Xml.ReaderWriter": "4.0.11"
+ }
+ },
+ "formdesigner.generator": {
+ "type": "Project",
+ "dependencies": {
+ "PowerShellStandard.Library": "[5.1.0, )"
+ }
+ },
+ "PowerShellProTools.VSCode": {
+ "type": "Project",
+ "dependencies": {
+ "FormDesigner.Generator": "[1.0.0, )",
+ "ICSharpCode.Decompiler": "[7.0.0.6488, )",
+ "Newtonsoft.Json": "[9.0.1, )",
+ "PowerShellStandard.Library": "[5.1.0, )"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/FormDesigner.Generator/FormDesigner.Generator.csproj b/FormDesigner.Generator/FormDesigner.Generator.csproj
index fd32404..a27637c 100644
--- a/FormDesigner.Generator/FormDesigner.Generator.csproj
+++ b/FormDesigner.Generator/FormDesigner.Generator.csproj
@@ -5,6 +5,7 @@
true
..\Build\FinalPublicKey.snk
false
+ true
diff --git a/FormDesigner.Generator/packages.lock.json b/FormDesigner.Generator/packages.lock.json
new file mode 100644
index 0000000..81632ed
--- /dev/null
+++ b/FormDesigner.Generator/packages.lock.json
@@ -0,0 +1,27 @@
+{
+ "version": 1,
+ "dependencies": {
+ ".NETStandard,Version=v2.0": {
+ "NETStandard.Library": {
+ "type": "Direct",
+ "requested": "[2.0.3, )",
+ "resolved": "2.0.3",
+ "contentHash": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0"
+ }
+ },
+ "PowerShellStandard.Library": {
+ "type": "Direct",
+ "requested": "[5.1.0, )",
+ "resolved": "5.1.0",
+ "contentHash": "iYaRvQsM1fow9h3uEmio+2m2VXfulgI16AYHaTZ8Sf7erGe27Qc8w/h6QL5UPuwv1aXR40QfzMEwcCeiYJp2cw=="
+ },
+ "Microsoft.NETCore.Platforms": {
+ "type": "Transitive",
+ "resolved": "1.1.0",
+ "contentHash": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A=="
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/FormDesigner.Test/FormDesigner.Test.csproj b/FormDesigner.Test/FormDesigner.Test.csproj
index ad1fd8d..298d8fe 100644
--- a/FormDesigner.Test/FormDesigner.Test.csproj
+++ b/FormDesigner.Test/FormDesigner.Test.csproj
@@ -2,6 +2,7 @@
net472
+ true
diff --git a/FormDesigner.Test/packages.lock.json b/FormDesigner.Test/packages.lock.json
new file mode 100644
index 0000000..ce9b695
--- /dev/null
+++ b/FormDesigner.Test/packages.lock.json
@@ -0,0 +1,161 @@
+{
+ "version": 1,
+ "dependencies": {
+ ".NETFramework,Version=v4.7.2": {
+ "Microsoft.CodeAnalysis.CSharp": {
+ "type": "Direct",
+ "requested": "[3.3.1, )",
+ "resolved": "3.3.1",
+ "contentHash": "WDUIhTHem38H6VJ98x2Ssq0fweakJHnHYl7vbG8ARnsAwLoJKCQCy78EeY1oRrCKG42j0v6JVljKkeqSDA28UA==",
+ "dependencies": {
+ "Microsoft.CodeAnalysis.Common": "[3.3.1]"
+ }
+ },
+ "PowerShellStandard.Library": {
+ "type": "Direct",
+ "requested": "[5.1.0, )",
+ "resolved": "5.1.0",
+ "contentHash": "iYaRvQsM1fow9h3uEmio+2m2VXfulgI16AYHaTZ8Sf7erGe27Qc8w/h6QL5UPuwv1aXR40QfzMEwcCeiYJp2cw=="
+ },
+ "xunit": {
+ "type": "Direct",
+ "requested": "[2.4.1, )",
+ "resolved": "2.4.1",
+ "contentHash": "XNR3Yz9QTtec16O0aKcO6+baVNpXmOnPUxDkCY97J+8krUYxPvXT1szYYEUdKk4sB8GOI2YbAjRIOm8ZnXRfzQ==",
+ "dependencies": {
+ "xunit.analyzers": "0.10.0",
+ "xunit.assert": "[2.4.1]",
+ "xunit.core": "[2.4.1]"
+ }
+ },
+ "xunit.runner.visualstudio": {
+ "type": "Direct",
+ "requested": "[2.4.1, )",
+ "resolved": "2.4.1",
+ "contentHash": "mBXd1lp1TQr4to2nFv+c4Tf+RnPoQPKglzwLdbdirOUxRaJsCUNDUx2y7E6j9ajgISlTTp1CydFBZCRCUIrwDg=="
+ },
+ "Microsoft.CodeAnalysis.Analyzers": {
+ "type": "Transitive",
+ "resolved": "2.9.4",
+ "contentHash": "alIJhS0VUg/7x5AsHEoovh/wRZ0RfCSS7k5pDSqpRLTyuMTtRgj6OJJPRApRhJHOGYYsLakf1hKeXFoDwKwNkg=="
+ },
+ "Microsoft.CodeAnalysis.Common": {
+ "type": "Transitive",
+ "resolved": "3.3.1",
+ "contentHash": "N5yQdGy+M4kimVG7hwCeGTCfgYjK2o5b/Shumkb/rCC+/SAkvP1HUAYK+vxPFS7dLJNtXLRsmPHKj3fnyNWnrw==",
+ "dependencies": {
+ "Microsoft.CodeAnalysis.Analyzers": "2.9.4",
+ "System.Collections.Immutable": "1.5.0",
+ "System.Memory": "4.5.3",
+ "System.Reflection.Metadata": "1.6.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.5.2",
+ "System.Text.Encoding.CodePages": "4.5.1",
+ "System.Threading.Tasks.Extensions": "4.5.3"
+ }
+ },
+ "System.Buffers": {
+ "type": "Transitive",
+ "resolved": "4.4.0",
+ "contentHash": "AwarXzzoDwX6BgrhjoJsk6tUezZEozOT5Y9QKF94Gl4JK91I4PIIBkBco9068Y9/Dra8Dkbie99kXB8+1BaYKw=="
+ },
+ "System.Collections.Immutable": {
+ "type": "Transitive",
+ "resolved": "1.5.0",
+ "contentHash": "EXKiDFsChZW0RjrZ4FYHu9aW6+P4MCgEDCklsVseRfhoO0F+dXeMSsMRAlVXIo06kGJ/zv+2w1a2uc2+kxxSaQ=="
+ },
+ "System.Memory": {
+ "type": "Transitive",
+ "resolved": "4.5.3",
+ "contentHash": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
+ "dependencies": {
+ "System.Buffers": "4.4.0",
+ "System.Numerics.Vectors": "4.4.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.5.2"
+ }
+ },
+ "System.Numerics.Vectors": {
+ "type": "Transitive",
+ "resolved": "4.4.0",
+ "contentHash": "UiLzLW+Lw6HLed1Hcg+8jSRttrbuXv7DANVj0DkL9g6EnnzbL75EB7EWsw5uRbhxd/4YdG8li5XizGWepmG3PQ=="
+ },
+ "System.Reflection.Metadata": {
+ "type": "Transitive",
+ "resolved": "1.6.0",
+ "contentHash": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
+ "dependencies": {
+ "System.Collections.Immutable": "1.5.0"
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe": {
+ "type": "Transitive",
+ "resolved": "4.5.2",
+ "contentHash": "wprSFgext8cwqymChhrBLu62LMg/1u92bU+VOwyfBimSPVFXtsNqEWC92Pf9ofzJFlk4IHmJA75EDJn1b2goAQ=="
+ },
+ "System.Text.Encoding.CodePages": {
+ "type": "Transitive",
+ "resolved": "4.5.1",
+ "contentHash": "4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "4.5.2"
+ }
+ },
+ "System.Threading.Tasks.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.5.3",
+ "contentHash": "+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "4.5.2"
+ }
+ },
+ "xunit.abstractions": {
+ "type": "Transitive",
+ "resolved": "2.0.3",
+ "contentHash": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg=="
+ },
+ "xunit.analyzers": {
+ "type": "Transitive",
+ "resolved": "0.10.0",
+ "contentHash": "4/IDFCJfIeg6bix9apmUtIMwvOsiwqdEexeO/R2D4GReIGPLIRODTpId/l4LRSrAJk9lEO3Zx1H0Zx6uohJDNg=="
+ },
+ "xunit.assert": {
+ "type": "Transitive",
+ "resolved": "2.4.1",
+ "contentHash": "O/Oe0BS5RmSsM+LQOb041TzuPo5MdH2Rov+qXGS37X+KFG1Hxz7kopYklM5+1Y+tRGeXrOx5+Xne1RuqLFQoyQ=="
+ },
+ "xunit.core": {
+ "type": "Transitive",
+ "resolved": "2.4.1",
+ "contentHash": "Zsj5OMU6JasNGERXZy8s72+pcheG6Q15atS5XpZXqAtULuyQiQ6XNnUsp1gyfC6WgqScqMvySiEHmHcOG6Eg0Q==",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.4.1]",
+ "xunit.extensibility.execution": "[2.4.1]"
+ }
+ },
+ "xunit.extensibility.core": {
+ "type": "Transitive",
+ "resolved": "2.4.1",
+ "contentHash": "yKZKm/8QNZnBnGZFD9SewkllHBiK0DThybQD/G4PiAmQjKtEZyHi6ET70QPU9KtSMJGRYS6Syk7EyR2EVDU4Kg==",
+ "dependencies": {
+ "xunit.abstractions": "2.0.3"
+ }
+ },
+ "xunit.extensibility.execution": {
+ "type": "Transitive",
+ "resolved": "2.4.1",
+ "contentHash": "7e/1jqBpcb7frLkB6XDrHCGXAbKN4Rtdb88epYxCSRQuZDRW8UtTfdTEVpdTl8s4T56e07hOBVd4G0OdCxIY2A==",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.4.1]"
+ }
+ },
+ "formdesigner.common": {
+ "type": "Project"
+ },
+ "formdesigner.generator": {
+ "type": "Project",
+ "dependencies": {
+ "PowerShellStandard.Library": "[5.1.0, )"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/FormDesigner/FormDesigner.Common.csproj b/FormDesigner/FormDesigner.Common.csproj
index aa769a5..d8e8342 100644
--- a/FormDesigner/FormDesigner.Common.csproj
+++ b/FormDesigner/FormDesigner.Common.csproj
@@ -1,5 +1,6 @@
-
+
Local
diff --git a/HostInjection/PowerShellProTools.Common.csproj b/HostInjection/PowerShellProTools.Common.csproj
index 2d60f8c..7874b68 100644
--- a/HostInjection/PowerShellProTools.Common.csproj
+++ b/HostInjection/PowerShellProTools.Common.csproj
@@ -6,6 +6,7 @@
false
true
PowerShellProTools.VSCode
+ true
@@ -22,11 +23,11 @@
-
+
-
-
+
+
diff --git a/HostInjection/packages.lock.json b/HostInjection/packages.lock.json
new file mode 100644
index 0000000..202efb2
--- /dev/null
+++ b/HostInjection/packages.lock.json
@@ -0,0 +1,529 @@
+{
+ "version": 1,
+ "dependencies": {
+ ".NETStandard,Version=v2.0": {
+ "ICSharpCode.Decompiler": {
+ "type": "Direct",
+ "requested": "[7.0.0.6488, )",
+ "resolved": "7.0.0.6488",
+ "contentHash": "1enxZGgiZgnka6VcHpBxkcuuNo462+YVPzRYUfe2/eF3tcDuLk9/yKEfQnXC265sRKnDhks+2Xhk0PlyagM5EA==",
+ "dependencies": {
+ "System.Collections.Immutable": "5.0.0",
+ "System.Reflection.Metadata": "5.0.0"
+ }
+ },
+ "NETStandard.Library": {
+ "type": "Direct",
+ "requested": "[2.0.3, )",
+ "resolved": "2.0.3",
+ "contentHash": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0"
+ }
+ },
+ "Newtonsoft.Json": {
+ "type": "Direct",
+ "requested": "[9.0.1, )",
+ "resolved": "9.0.1",
+ "contentHash": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==",
+ "dependencies": {
+ "Microsoft.CSharp": "4.0.1",
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Dynamic.Runtime": "4.0.11",
+ "System.Globalization": "4.0.11",
+ "System.IO": "4.1.0",
+ "System.Linq": "4.1.0",
+ "System.Linq.Expressions": "4.1.0",
+ "System.ObjectModel": "4.0.12",
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Extensions": "4.0.1",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Runtime.Serialization.Primitives": "4.1.1",
+ "System.Text.Encoding": "4.0.11",
+ "System.Text.Encoding.Extensions": "4.0.11",
+ "System.Text.RegularExpressions": "4.1.0",
+ "System.Threading": "4.0.11",
+ "System.Threading.Tasks": "4.0.11",
+ "System.Xml.ReaderWriter": "4.0.11",
+ "System.Xml.XDocument": "4.0.11"
+ }
+ },
+ "PowerShellStandard.Library": {
+ "type": "Direct",
+ "requested": "[5.1.0, )",
+ "resolved": "5.1.0",
+ "contentHash": "iYaRvQsM1fow9h3uEmio+2m2VXfulgI16AYHaTZ8Sf7erGe27Qc8w/h6QL5UPuwv1aXR40QfzMEwcCeiYJp2cw=="
+ },
+ "Microsoft.CSharp": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Dynamic.Runtime": "4.0.11",
+ "System.Globalization": "4.0.11",
+ "System.Linq": "4.1.0",
+ "System.Linq.Expressions": "4.1.0",
+ "System.ObjectModel": "4.0.12",
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Extensions": "4.0.1",
+ "System.Reflection.Primitives": "4.0.1",
+ "System.Reflection.TypeExtensions": "4.1.0",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Runtime.InteropServices": "4.1.0",
+ "System.Threading": "4.0.11"
+ }
+ },
+ "Microsoft.NETCore.Platforms": {
+ "type": "Transitive",
+ "resolved": "1.1.0",
+ "contentHash": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A=="
+ },
+ "Microsoft.NETCore.Targets": {
+ "type": "Transitive",
+ "resolved": "1.0.1",
+ "contentHash": "rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw=="
+ },
+ "System.Buffers": {
+ "type": "Transitive",
+ "resolved": "4.5.1",
+ "contentHash": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg=="
+ },
+ "System.Collections": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Collections.Immutable": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
+ "dependencies": {
+ "System.Memory": "4.5.4"
+ }
+ },
+ "System.Diagnostics.Debug": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Diagnostics.Tools": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Dynamic.Runtime": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Globalization": "4.0.11",
+ "System.Linq": "4.1.0",
+ "System.Linq.Expressions": "4.1.0",
+ "System.ObjectModel": "4.0.12",
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Emit": "4.0.1",
+ "System.Reflection.Emit.ILGeneration": "4.0.1",
+ "System.Reflection.Primitives": "4.0.1",
+ "System.Reflection.TypeExtensions": "4.1.0",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Threading": "4.0.11"
+ }
+ },
+ "System.Globalization": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.IO": {
+ "type": "Transitive",
+ "resolved": "4.1.0",
+ "contentHash": "3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Text.Encoding": "4.0.11",
+ "System.Threading.Tasks": "4.0.11"
+ }
+ },
+ "System.IO.FileSystem": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.IO": "4.1.0",
+ "System.IO.FileSystem.Primitives": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Handles": "4.0.1",
+ "System.Text.Encoding": "4.0.11",
+ "System.Threading.Tasks": "4.0.11"
+ }
+ },
+ "System.IO.FileSystem.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
+ "dependencies": {
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Linq": {
+ "type": "Transitive",
+ "resolved": "4.1.0",
+ "contentHash": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0"
+ }
+ },
+ "System.Linq.Expressions": {
+ "type": "Transitive",
+ "resolved": "4.1.0",
+ "contentHash": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Globalization": "4.0.11",
+ "System.IO": "4.1.0",
+ "System.Linq": "4.1.0",
+ "System.ObjectModel": "4.0.12",
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Emit": "4.0.1",
+ "System.Reflection.Emit.ILGeneration": "4.0.1",
+ "System.Reflection.Emit.Lightweight": "4.0.1",
+ "System.Reflection.Extensions": "4.0.1",
+ "System.Reflection.Primitives": "4.0.1",
+ "System.Reflection.TypeExtensions": "4.1.0",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Threading": "4.0.11"
+ }
+ },
+ "System.Memory": {
+ "type": "Transitive",
+ "resolved": "4.5.4",
+ "contentHash": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
+ "dependencies": {
+ "System.Buffers": "4.5.1",
+ "System.Numerics.Vectors": "4.4.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.5.3"
+ }
+ },
+ "System.Numerics.Vectors": {
+ "type": "Transitive",
+ "resolved": "4.4.0",
+ "contentHash": "UiLzLW+Lw6HLed1Hcg+8jSRttrbuXv7DANVj0DkL9g6EnnzbL75EB7EWsw5uRbhxd/4YdG8li5XizGWepmG3PQ=="
+ },
+ "System.ObjectModel": {
+ "type": "Transitive",
+ "resolved": "4.0.12",
+ "contentHash": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Threading": "4.0.11"
+ }
+ },
+ "System.Reflection": {
+ "type": "Transitive",
+ "resolved": "4.1.0",
+ "contentHash": "JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.IO": "4.1.0",
+ "System.Reflection.Primitives": "4.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Reflection.Emit": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==",
+ "dependencies": {
+ "System.IO": "4.1.0",
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Emit.ILGeneration": "4.0.1",
+ "System.Reflection.Primitives": "4.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Reflection.Emit.ILGeneration": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==",
+ "dependencies": {
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Primitives": "4.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Reflection.Emit.Lightweight": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
+ "dependencies": {
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Emit.ILGeneration": "4.0.1",
+ "System.Reflection.Primitives": "4.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Reflection.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Reflection": "4.1.0",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Reflection.Metadata": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==",
+ "dependencies": {
+ "System.Collections.Immutable": "5.0.0"
+ }
+ },
+ "System.Reflection.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Reflection.TypeExtensions": {
+ "type": "Transitive",
+ "resolved": "4.1.0",
+ "contentHash": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==",
+ "dependencies": {
+ "System.Reflection": "4.1.0",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Resources.ResourceManager": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Globalization": "4.0.11",
+ "System.Reflection": "4.1.0",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Runtime": {
+ "type": "Transitive",
+ "resolved": "4.1.0",
+ "contentHash": "v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1"
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe": {
+ "type": "Transitive",
+ "resolved": "4.5.3",
+ "contentHash": "3TIsJhD1EiiT0w2CcDMN/iSSwnNnsrnbzeVHSKkaEgV85txMprmuO+Yq2AdSbeVGcg28pdNDTPK87tJhX7VFHw=="
+ },
+ "System.Runtime.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.1.0",
+ "contentHash": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Runtime.Handles": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Runtime.InteropServices": {
+ "type": "Transitive",
+ "resolved": "4.1.0",
+ "contentHash": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Primitives": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Handles": "4.0.1"
+ }
+ },
+ "System.Runtime.Serialization.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.1.1",
+ "contentHash": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==",
+ "dependencies": {
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Text.Encoding": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Text.Encoding.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Text.Encoding": "4.0.11"
+ }
+ },
+ "System.Text.RegularExpressions": {
+ "type": "Transitive",
+ "resolved": "4.1.0",
+ "contentHash": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Globalization": "4.0.11",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Threading": "4.0.11"
+ }
+ },
+ "System.Threading": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==",
+ "dependencies": {
+ "System.Runtime": "4.1.0",
+ "System.Threading.Tasks": "4.0.11"
+ }
+ },
+ "System.Threading.Tasks": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Threading.Tasks.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.0.0",
+ "contentHash": "pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Runtime": "4.1.0",
+ "System.Threading.Tasks": "4.0.11"
+ }
+ },
+ "System.Xml.ReaderWriter": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Globalization": "4.0.11",
+ "System.IO": "4.1.0",
+ "System.IO.FileSystem": "4.0.1",
+ "System.IO.FileSystem.Primitives": "4.0.1",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Runtime.InteropServices": "4.1.0",
+ "System.Text.Encoding": "4.0.11",
+ "System.Text.Encoding.Extensions": "4.0.11",
+ "System.Text.RegularExpressions": "4.1.0",
+ "System.Threading.Tasks": "4.0.11",
+ "System.Threading.Tasks.Extensions": "4.0.0"
+ }
+ },
+ "System.Xml.XDocument": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Diagnostics.Tools": "4.0.1",
+ "System.Globalization": "4.0.11",
+ "System.IO": "4.1.0",
+ "System.Reflection": "4.1.0",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Text.Encoding": "4.0.11",
+ "System.Threading": "4.0.11",
+ "System.Xml.ReaderWriter": "4.0.11"
+ }
+ },
+ "formdesigner.generator": {
+ "type": "Project",
+ "dependencies": {
+ "PowerShellStandard.Library": "[5.1.0, )"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/IronmanPowerShellHost/IronmanPowerShellHost.csproj b/IronmanPowerShellHost/IronmanPowerShellHost.csproj
index f40cc58..fe74486 100644
--- a/IronmanPowerShellHost/IronmanPowerShellHost.csproj
+++ b/IronmanPowerShellHost/IronmanPowerShellHost.csproj
@@ -10,7 +10,8 @@
Debug;Release;NoPowerShell
$(NoWarn);IL3000;IL3002;SYSLIB0012
7.2.7
-
+ true
+
@@ -56,6 +57,10 @@
-
+
+
+
+
+
diff --git a/IronmanPowerShellHost/packages.lock.json b/IronmanPowerShellHost/packages.lock.json
new file mode 100644
index 0000000..9d2fe10
--- /dev/null
+++ b/IronmanPowerShellHost/packages.lock.json
@@ -0,0 +1,3309 @@
+{
+ "version": 1,
+ "dependencies": {
+ ".NETFramework,Version=v4.7.2": {},
+ ".NETFramework,Version=v4.7.2/win7-x86": {},
+ "net6.0": {
+ "Microsoft.PowerShell.ConsoleHost": {
+ "type": "Direct",
+ "requested": "[7.2.7, )",
+ "resolved": "7.2.7",
+ "contentHash": "d+yiY24DBJiMjk7X+Jm1U4gNa+Fpva6Ss3kCIczj/a9GoJ9RzMUv04DxkkH8EIN41ugNbUu4pv58IZemHzwM4w==",
+ "dependencies": {
+ "System.Management.Automation": "7.2.7"
+ }
+ },
+ "Microsoft.PowerShell.SDK": {
+ "type": "Direct",
+ "requested": "[7.2.7, )",
+ "resolved": "7.2.7",
+ "contentHash": "UNhqFXOs9cDelNMqAE3AKfSUwZKOPBm28LB596dey22BuGif2otZTr//YpXaI5vm029AlKXNAIqkbdNJUM5eOA==",
+ "dependencies": {
+ "Microsoft.Management.Infrastructure.CimCmdlets": "7.2.7",
+ "Microsoft.NETCore.Windows.ApiSets": "1.0.1",
+ "Microsoft.PowerShell.Commands.Diagnostics": "7.2.7",
+ "Microsoft.PowerShell.Commands.Management": "7.2.7",
+ "Microsoft.PowerShell.Commands.Utility": "7.2.7",
+ "Microsoft.PowerShell.ConsoleHost": "7.2.7",
+ "Microsoft.PowerShell.Security": "7.2.7",
+ "Microsoft.WSMan.Management": "7.2.7",
+ "Microsoft.Windows.Compatibility": "6.0.0",
+ "System.Data.SqlClient": "4.8.3",
+ "System.IO.Packaging": "6.0.0",
+ "System.Management.Automation": "7.2.7",
+ "System.Net.Http.WinHttpHandler": "6.0.1",
+ "System.Private.ServiceModel": "4.9.0",
+ "System.ServiceModel.Duplex": "4.9.0",
+ "System.ServiceModel.Http": "4.9.0",
+ "System.ServiceModel.NetTcp": "4.9.0",
+ "System.ServiceModel.Primitives": "4.9.0",
+ "System.ServiceModel.Security": "4.9.0",
+ "System.Text.Encodings.Web": "6.0.0"
+ }
+ },
+ "Markdig.Signed": {
+ "type": "Transitive",
+ "resolved": "0.22.0",
+ "contentHash": "7x3FqS3wk8DXyQLuflD47tBs6+ly6k4VtoDCzlDWfy7XHVsBIi7eGYEM15sPAcwSCQjOksNWE8U5r2v0Sk5FzQ=="
+ },
+ "Microsoft.ApplicationInsights": {
+ "type": "Transitive",
+ "resolved": "2.21.0",
+ "contentHash": "btZEDWAFNo9CoYliMCriSMTX3ruRGZTtYw4mo2XyyfLlowFicYVM2Xszi5evDG95QRYV7MbbH3D2RqVwfZlJHw==",
+ "dependencies": {
+ "System.Diagnostics.DiagnosticSource": "5.0.0"
+ }
+ },
+ "Microsoft.Bcl.AsyncInterfaces": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ=="
+ },
+ "Microsoft.CodeAnalysis.Analyzers": {
+ "type": "Transitive",
+ "resolved": "3.3.2",
+ "contentHash": "7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA=="
+ },
+ "Microsoft.CodeAnalysis.Common": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "SMREwaVD5SzatlWhh9aahQAtSWdb63NcE//f+bQzgHSECU6xtDtaxk0kwV+asdFfr6HtW38UeO6jvqdfzudg3w==",
+ "dependencies": {
+ "Microsoft.CodeAnalysis.Analyzers": "3.3.2",
+ "System.Collections.Immutable": "5.0.0",
+ "System.Memory": "4.5.4",
+ "System.Reflection.Metadata": "5.0.0",
+ "System.Runtime.CompilerServices.Unsafe": "5.0.0",
+ "System.Text.Encoding.CodePages": "4.5.1",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ }
+ },
+ "Microsoft.CodeAnalysis.CSharp": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "Q9RxxydPpUElj/x1/qykDTUGsRoKbJG8H5XUSeMGmMu54fBiuX1xyanom9caa1oQfh5JIW1BgLxobSaWs4WyHQ==",
+ "dependencies": {
+ "Microsoft.CodeAnalysis.Common": "[4.0.1]"
+ }
+ },
+ "Microsoft.CSharp": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Dynamic.Runtime": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "Microsoft.Extensions.ObjectPool": {
+ "type": "Transitive",
+ "resolved": "5.0.10",
+ "contentHash": "pp9tbGqIhdEXL6Q1yJl+zevAJSq4BsxqhS1GXzBvEsEz9DDNu9GLNzgUy2xyFc4YjB4m4Ff2YEWTnvQvVYdkvQ=="
+ },
+ "Microsoft.Management.Infrastructure": {
+ "type": "Transitive",
+ "resolved": "2.0.0",
+ "contentHash": "IaKZRNBBv3sdrmBWd+aqwHq8cVHk/3WgWFAN/dt40MRY9rbtHiDfTTmaEN0tGTmQqGCGDo/ncntA8MvFMvcsRw==",
+ "dependencies": {
+ "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0",
+ "Microsoft.Management.Infrastructure.Runtime.Win": "2.0.0"
+ }
+ },
+ "Microsoft.Management.Infrastructure.CimCmdlets": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "5gXjpxrKUjNH8C8xSCwglya6VgajQjAZTB4zk7I9gXr6C8eaOkmver9DKEI7SP1nUS3X8NSYNilx+c1owG7xBw==",
+ "dependencies": {
+ "System.Management.Automation": "7.2.7"
+ }
+ },
+ "Microsoft.Management.Infrastructure.Runtime.Unix": {
+ "type": "Transitive",
+ "resolved": "2.0.0",
+ "contentHash": "p0lslMX5bdWLxO2P7ao+rjAMOB0LEwPYpzvdCQ2OEYgX2NxFpQ8ILvqPGnYlTAb53rT8gu5DyIol1HboHFYfxQ=="
+ },
+ "Microsoft.Management.Infrastructure.Runtime.Win": {
+ "type": "Transitive",
+ "resolved": "2.0.0",
+ "contentHash": "vjBWQeDOjgernkrOdbEgn7M70SF7hof7ORdKPSlL06Uc15+oYdth5dZju9KsgUoti/cwnkZTiwtDx/lRtay0sA=="
+ },
+ "Microsoft.NETCore.Platforms": {
+ "type": "Transitive",
+ "resolved": "1.1.0",
+ "contentHash": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A=="
+ },
+ "Microsoft.NETCore.Targets": {
+ "type": "Transitive",
+ "resolved": "1.1.0",
+ "contentHash": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg=="
+ },
+ "Microsoft.NETCore.Windows.ApiSets": {
+ "type": "Transitive",
+ "resolved": "1.0.1",
+ "contentHash": "SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw=="
+ },
+ "Microsoft.PowerShell.Commands.Diagnostics": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "3GKSwP46z06WnLPBzvJO/tMNCLPRWCfQReM/JqnCKk0fQScp53Il3SUppshKm6KcjkPxFsdtdqxl3kOKEAMn3w==",
+ "dependencies": {
+ "System.Management.Automation": "7.2.7"
+ }
+ },
+ "Microsoft.PowerShell.Commands.Management": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "TmM5pg+pjsYTFT4pQGrY4RSn+oTWGdol+eVxC1PpOBtJ/JvhOMTESX7FoNdzoc9XJ5JG9lQ4fBviz5U+SnBRAA==",
+ "dependencies": {
+ "Microsoft.PowerShell.Security": "7.2.7",
+ "System.ServiceProcess.ServiceController": "6.0.0"
+ }
+ },
+ "Microsoft.PowerShell.Commands.Utility": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "DWtzeEYkbHA49Huq0NFJi07PCA1K3Qyoi75O9QuCUrjHmYlDeOUhwqT7aaS2HuzURsvB3ysaOeIk6WSDX8rmig==",
+ "dependencies": {
+ "Microsoft.CodeAnalysis.CSharp": "4.0.1",
+ "Microsoft.PowerShell.MarkdownRender": "7.2.0",
+ "NJsonSchema": "10.5.2",
+ "System.Drawing.Common": "6.0.0",
+ "System.Management.Automation": "7.2.7",
+ "System.Threading.AccessControl": "6.0.0"
+ }
+ },
+ "Microsoft.PowerShell.CoreCLR.Eventing": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "iORTnoIVvFPulA69l3ElLCLxPevYDlJgw/W8z9n8J7ykCl6CSf8toZ4jiuPVdhEiAwzei7jnXecEGr22HcQbig==",
+ "dependencies": {
+ "System.Diagnostics.EventLog": "6.0.0"
+ }
+ },
+ "Microsoft.PowerShell.MarkdownRender": {
+ "type": "Transitive",
+ "resolved": "7.2.0",
+ "contentHash": "1vqDtdX9RCGsMWCbzp0CIxZW3slWgq8mYHDfUlUKzmkV57fMAn4m0Gy2OtsqopZzrOiVJci+QCWx5FB7BVpMlw==",
+ "dependencies": {
+ "Markdig.Signed": "0.22.0"
+ }
+ },
+ "Microsoft.PowerShell.Native": {
+ "type": "Transitive",
+ "resolved": "7.2.0",
+ "contentHash": "TauOu3bYr4DRh9HpH3+fgaL+y2GY47KLsgU6qX1NDLqHshdEaCCjiF0N5sDEgCEhSb38FwWhpdFTIQvoOcYCXQ=="
+ },
+ "Microsoft.PowerShell.Security": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "fA+ASU38pSRbCE1+pCtzLIjLJCW9Lna/Bg5Z8hBWV1Nl7tFwPbF6og4wgNmrMxCT0Hc1cZat2Q5WLJR/wTdYzg==",
+ "dependencies": {
+ "System.Management.Automation": "7.2.7"
+ }
+ },
+ "Microsoft.Win32.Registry": {
+ "type": "Transitive",
+ "resolved": "4.7.0",
+ "contentHash": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
+ "dependencies": {
+ "System.Security.AccessControl": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ }
+ },
+ "Microsoft.Win32.Registry.AccessControl": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "UoE+eeuBKL+GFHxHV3FjHlY5K8Wr/IR7Ee/a2oDNqFodF1iMqyt5hIs0U9Z217AbWrHrNle4750kD03hv1IMZw==",
+ "dependencies": {
+ "System.Security.AccessControl": "6.0.0"
+ }
+ },
+ "Microsoft.Win32.SystemEvents": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A=="
+ },
+ "Microsoft.Windows.Compatibility": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "9esuK5JqnjkDgO9/AHesyJSG0aKwpfLVzTw6nIGYhqE91VLxZyv3HKulNoPVy/NOuyAaf1kE4FKtdZDzdd/SLw==",
+ "dependencies": {
+ "Microsoft.Win32.Registry.AccessControl": "6.0.0",
+ "Microsoft.Win32.SystemEvents": "6.0.0",
+ "System.CodeDom": "6.0.0",
+ "System.ComponentModel.Composition": "6.0.0",
+ "System.ComponentModel.Composition.Registration": "6.0.0",
+ "System.Configuration.ConfigurationManager": "6.0.0",
+ "System.Data.Odbc": "6.0.0",
+ "System.Data.OleDb": "6.0.0",
+ "System.Data.SqlClient": "4.8.3",
+ "System.Diagnostics.EventLog": "6.0.0",
+ "System.Diagnostics.PerformanceCounter": "6.0.0",
+ "System.DirectoryServices": "6.0.0",
+ "System.DirectoryServices.AccountManagement": "6.0.0",
+ "System.DirectoryServices.Protocols": "6.0.0",
+ "System.Drawing.Common": "6.0.0",
+ "System.IO.Packaging": "6.0.0",
+ "System.IO.Ports": "6.0.0",
+ "System.Management": "6.0.0",
+ "System.Reflection.Context": "6.0.0",
+ "System.Runtime.Caching": "6.0.0",
+ "System.Security.AccessControl": "6.0.0",
+ "System.Security.Cryptography.Pkcs": "6.0.0",
+ "System.Security.Cryptography.ProtectedData": "6.0.0",
+ "System.Security.Cryptography.Xml": "6.0.0",
+ "System.Security.Permissions": "6.0.0",
+ "System.ServiceModel.Duplex": "4.9.0",
+ "System.ServiceModel.Http": "4.9.0",
+ "System.ServiceModel.NetTcp": "4.9.0",
+ "System.ServiceModel.Primitives": "4.9.0",
+ "System.ServiceModel.Security": "4.9.0",
+ "System.ServiceModel.Syndication": "6.0.0",
+ "System.ServiceProcess.ServiceController": "6.0.0",
+ "System.Speech": "6.0.0",
+ "System.Text.Encoding.CodePages": "6.0.0",
+ "System.Threading.AccessControl": "6.0.0",
+ "System.Web.Services.Description": "4.9.0"
+ }
+ },
+ "Microsoft.WSMan.Management": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "rdnIbdG+YZKkEQy6LfGv+KxQnrP2dh8HNVQmjVVVvawx9cxy/v52wPTCpU138G7XmIESEyDBemyPtR618sKpQQ==",
+ "dependencies": {
+ "Microsoft.WSMan.Runtime": "7.2.7",
+ "System.Management.Automation": "7.2.7",
+ "System.ServiceProcess.ServiceController": "6.0.0"
+ }
+ },
+ "Microsoft.WSMan.Runtime": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "14HSQ6AIzsbZ7+tK2J4NX+5/Ti8ONxPLoq7yA4VhhutP//bQLLk+Hq5SvrbvHxOm5l5a+MT16DDzockqZzVpIQ=="
+ },
+ "Namotion.Reflection": {
+ "type": "Transitive",
+ "resolved": "2.0.3",
+ "contentHash": "tZCe/UrSBAMW8A4TjD/SlpRHaWjnHlSWdyRuOXhf3yrE0OX+4fXg0uzj7mwFDclXznfCGRAZbP+akPt4G/mclw==",
+ "dependencies": {
+ "Microsoft.CSharp": "4.3.0"
+ }
+ },
+ "Newtonsoft.Json": {
+ "type": "Transitive",
+ "resolved": "13.0.1",
+ "contentHash": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A=="
+ },
+ "NJsonSchema": {
+ "type": "Transitive",
+ "resolved": "10.5.2",
+ "contentHash": "Vr2CbySuXh74TQFU0rGJYZOS492xOE64cPXdB7a0cfXJb/N45Bf4v7sd4LOla0jNhgc5V/B61Ko3qecriL195w==",
+ "dependencies": {
+ "Namotion.Reflection": "2.0.3",
+ "Newtonsoft.Json": "9.0.1"
+ }
+ },
+ "runtime.linux-arm.runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "75q52H7CSpgIoIDwXb9o833EvBZIXJ0mdPhz1E6jSisEXUBlSCPalC29cj3EXsjpuDwr0dj1LRXZepIQH/oL4Q=="
+ },
+ "runtime.linux-arm64.runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "xn2bMThmXr3CsvOYmS8ex2Yz1xo+kcnhVg2iVhS9PlmqjZPAkrEo/I40wjrBZH/tU4kvH0s1AE8opAvQ3KIS8g=="
+ },
+ "runtime.linux-x64.runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "16nbNXwv0sC+gLGIuecri0skjuh6R1maIJggsaNP7MQBcbVcEfWFUOkEnsnvoLEjy0XerfibuRptfQ8AmdIcWA=="
+ },
+ "runtime.native.System.Data.SqlClient.sni": {
+ "type": "Transitive",
+ "resolved": "4.7.0",
+ "contentHash": "9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==",
+ "dependencies": {
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
+ }
+ },
+ "runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "KaaXlpOcuZjMdmyF5wzzx3b+PRKIzt6A5Ax9dKenPDQbVJAFpev+casD0BIig1pBcbs3zx7CqWemzUJKAeHdSQ==",
+ "dependencies": {
+ "runtime.linux-arm.runtime.native.System.IO.Ports": "6.0.0",
+ "runtime.linux-arm64.runtime.native.System.IO.Ports": "6.0.0",
+ "runtime.linux-x64.runtime.native.System.IO.Ports": "6.0.0",
+ "runtime.osx-arm64.runtime.native.System.IO.Ports": "6.0.0",
+ "runtime.osx-x64.runtime.native.System.IO.Ports": "6.0.0"
+ }
+ },
+ "runtime.osx-arm64.runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "fXG12NodG1QrCdoaeSQ1gVnk/koi4WYY4jZtarMkZeQMyReBm1nZlSRoPnUjLr2ZR36TiMjpcGnQfxymieUe7w=="
+ },
+ "runtime.osx-x64.runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "/As+zPY49+dSUXkh+fTUbyPhqrdGN//evLxo4Vue88pfh1BHZgF7q4kMblTkxYvwR6Vi03zSYxysSFktO8/SDQ=="
+ },
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": {
+ "type": "Transitive",
+ "resolved": "4.4.0",
+ "contentHash": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg=="
+ },
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": {
+ "type": "Transitive",
+ "resolved": "4.4.0",
+ "contentHash": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ=="
+ },
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": {
+ "type": "Transitive",
+ "resolved": "4.4.0",
+ "contentHash": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA=="
+ },
+ "System.CodeDom": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA=="
+ },
+ "System.Collections": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Collections.Immutable": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g=="
+ },
+ "System.ComponentModel.Composition": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "60Qv+F7oxomOjJeTDA5Z4iCyFbQ0B/2Mi5HT+13pxxq0lVnu2ipbWMzFB+RWKr3wWKA8BSncXr9PH/fECwMX5Q=="
+ },
+ "System.ComponentModel.Composition.Registration": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "+i3RLlOgTsf15VeADBPpzPyRiXq71aLSuzdHeNtmq9f6BwpF3OWhB76p0WDUNCa3Z+SLD4dJbBM9yAep7kQCGA==",
+ "dependencies": {
+ "System.ComponentModel.Composition": "6.0.0",
+ "System.Reflection.Context": "6.0.0"
+ }
+ },
+ "System.Configuration.ConfigurationManager": {
+ "type": "Transitive",
+ "resolved": "6.0.1",
+ "contentHash": "jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==",
+ "dependencies": {
+ "System.Security.Cryptography.ProtectedData": "6.0.0",
+ "System.Security.Permissions": "6.0.0"
+ }
+ },
+ "System.Data.Odbc": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "pnZjwe0Qwr1Rnp7NExd5zz4YwXJrYuAbWNKjEQpTzCEg6f/L5DYJS7w3hG3vgSj1t/r79UL390YzXIklf1VuQQ==",
+ "dependencies": {
+ "System.Text.Encoding.CodePages": "6.0.0"
+ }
+ },
+ "System.Data.OleDb": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "LQ8PjTIF1LtrrlGiyiTVjAkQtTWKm9GSNnygIlWjhN9y88s7xhy6DUNDDkmQQ9f6ex7mA4k0Tl97lz/CklaiLg==",
+ "dependencies": {
+ "System.Configuration.ConfigurationManager": "6.0.0",
+ "System.Diagnostics.PerformanceCounter": "6.0.0"
+ }
+ },
+ "System.Data.SqlClient": {
+ "type": "Transitive",
+ "resolved": "4.8.3",
+ "contentHash": "yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==",
+ "dependencies": {
+ "Microsoft.Win32.Registry": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0",
+ "runtime.native.System.Data.SqlClient.sni": "4.7.0"
+ }
+ },
+ "System.Diagnostics.Debug": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Diagnostics.DiagnosticSource": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA=="
+ },
+ "System.Diagnostics.EventLog": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw=="
+ },
+ "System.Diagnostics.PerformanceCounter": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "gbeE5tNp/oB7O8kTTLh3wPPJCxpNOphXPTWVs1BsYuFOYapFijWuh0LYw1qnDo4gwDUYPXOmpTIhvtxisGsYOQ==",
+ "dependencies": {
+ "System.Configuration.ConfigurationManager": "6.0.0"
+ }
+ },
+ "System.DirectoryServices": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "kp/Op0nxDVGlElDKh8TsXO0GKXftQgAB6sJk0wUetZK1Rr0Pbd86Tn7AllLLlROFZa4BTl/LVHakljtGELFzCg==",
+ "dependencies": {
+ "System.Security.AccessControl": "6.0.0",
+ "System.Security.Permissions": "6.0.0"
+ }
+ },
+ "System.DirectoryServices.AccountManagement": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "2iKkY6VC4WX6H13N8WhH2SRUfWCwg2KZR5w9JIS9cw9N8cZhT7VXxHX0L6OX6Po419aSu2LWrJE9tu6b+cUnPA==",
+ "dependencies": {
+ "System.Configuration.ConfigurationManager": "6.0.0",
+ "System.DirectoryServices": "6.0.0",
+ "System.DirectoryServices.Protocols": "6.0.0",
+ "System.Security.AccessControl": "6.0.0"
+ }
+ },
+ "System.DirectoryServices.Protocols": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "++WKU7HQPo/FJdhywWw+q2lLjcVAGVw5XLH9kRCV+4DvkhVAcHCksh0ezIqwNROmaU9LMJN0d/LAdeWXu3pi6Q=="
+ },
+ "System.Drawing.Common": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
+ "dependencies": {
+ "Microsoft.Win32.SystemEvents": "6.0.0"
+ }
+ },
+ "System.Dynamic.Runtime": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Formats.Asn1": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA=="
+ },
+ "System.Globalization": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.IO": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.IO.Packaging": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "C7OkTRIjqIjAKu6ef/fuj8ynCZTPcTYZnvHaq48bniACgXXJogmEoIc56YCDNTc14xhsbLmgpS3KP+evbsUa2g=="
+ },
+ "System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "dRyGI7fUESar5ZLIpiBOaaNLW7YyOBGftjj5Of+xcduC/Rjl7RjhEnWDvvNBmHuF3d0tdXoqdVI/yrVA8f00XA==",
+ "dependencies": {
+ "runtime.native.System.IO.Ports": "6.0.0"
+ }
+ },
+ "System.Linq": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ }
+ },
+ "System.Linq.Expressions": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Emit.Lightweight": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Management": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "sHsESYMmPDhQuOC66h6AEOs/XowzKsbT9srMbX71TCXP58hkpn1BqBjdmKj1+DCA/WlBETX1K5WjQHwmV0Txrg==",
+ "dependencies": {
+ "System.CodeDom": "6.0.0"
+ }
+ },
+ "System.Management.Automation": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "7UOl6eNIjWbZinKxkbtIY6s2joCCbN+2uO114SZpt1k8rEUUyX8tSsC5W9EVizYuSJiGpyyxw30l3wiJoJvKmA==",
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "2.21.0",
+ "Microsoft.Management.Infrastructure": "2.0.0",
+ "Microsoft.PowerShell.CoreCLR.Eventing": "7.2.7",
+ "Microsoft.PowerShell.Native": "7.2.0",
+ "Microsoft.Win32.Registry.AccessControl": "6.0.0",
+ "Newtonsoft.Json": "13.0.1",
+ "System.Configuration.ConfigurationManager": "6.0.1",
+ "System.DirectoryServices": "6.0.0",
+ "System.Management": "6.0.0",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.Security.AccessControl": "6.0.0",
+ "System.Security.Cryptography.Pkcs": "6.0.1",
+ "System.Security.Permissions": "6.0.0",
+ "System.Text.Encoding.CodePages": "6.0.0"
+ }
+ },
+ "System.Memory": {
+ "type": "Transitive",
+ "resolved": "4.5.4",
+ "contentHash": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw=="
+ },
+ "System.Net.Http.WinHttpHandler": {
+ "type": "Transitive",
+ "resolved": "6.0.1",
+ "contentHash": "zdSpn2+EPBEXmsopvUjkpvbXNN53dqL7BifCKBJ5M+A/P3JEiCL/guuPwuiazu+RzCuEX/NJLnoXhllaf3vBxg=="
+ },
+ "System.Numerics.Vectors": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ=="
+ },
+ "System.ObjectModel": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Private.ServiceModel": {
+ "type": "Transitive",
+ "resolved": "4.9.0",
+ "contentHash": "d3RjkrtpjUQ63PzFmm/SZ4aOXeJNP+8YW5QeP0lCJy8iX4xlHdlNLWTF9sRn9SmrFTK757kQXT9Op/R4l858uw==",
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "5.0.0",
+ "Microsoft.Extensions.ObjectPool": "5.0.10",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Reflection.DispatchProxy": "4.7.1",
+ "System.Security.Cryptography.Xml": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ }
+ },
+ "System.Reflection": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Context": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "Vi+Gb41oyOYie7uLSsjRmfRg3bryUg5DssJvj3gDUl0D8z6ipSm6/yi/XNx2rcS5iVMvHcwRUHjcx7ixv0K3/w=="
+ },
+ "System.Reflection.DispatchProxy": {
+ "type": "Transitive",
+ "resolved": "4.7.1",
+ "contentHash": "C1sMLwIG6ILQ2bmOT4gh62V6oJlyF4BlHcVMrOoor49p0Ji2tA8QAoqyMcIhAdH6OHKJ8m7BU+r4LK2CUEOKqw=="
+ },
+ "System.Reflection.Emit": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Emit.ILGeneration": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Emit.Lightweight": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Metadata": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ=="
+ },
+ "System.Reflection.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.TypeExtensions": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Resources.ResourceManager": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "System.Runtime.Caching": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==",
+ "dependencies": {
+ "System.Configuration.ConfigurationManager": "6.0.0"
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg=="
+ },
+ "System.Runtime.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.Handles": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.InteropServices": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ }
+ },
+ "System.Security.AccessControl": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ=="
+ },
+ "System.Security.Cryptography.Pkcs": {
+ "type": "Transitive",
+ "resolved": "6.0.1",
+ "contentHash": "ynmbW2GjIGg9K1wXmVIRs4IlyDolf0JXNpzFQ8JCVgwM+myUC2JeUggl2PwQig2PNVMegKmN1aAx7WPQ8tI3vA==",
+ "dependencies": {
+ "System.Formats.Asn1": "6.0.0"
+ }
+ },
+ "System.Security.Cryptography.ProtectedData": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ=="
+ },
+ "System.Security.Cryptography.Xml": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "puJ4UCh9JVRwOCyCIcq71JY6Axr8Sp8E2GjTIU1Fj8hm4+oX6NEoyGFGa/+pBG8SrVxbQPSj7hvtaREyTHHsmw==",
+ "dependencies": {
+ "System.Security.AccessControl": "6.0.0",
+ "System.Security.Cryptography.Pkcs": "6.0.0"
+ }
+ },
+ "System.Security.Permissions": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",
+ "dependencies": {
+ "System.Security.AccessControl": "6.0.0",
+ "System.Windows.Extensions": "6.0.0"
+ }
+ },
+ "System.Security.Principal.Windows": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA=="
+ },
+ "System.ServiceModel.Duplex": {
+ "type": "Transitive",
+ "resolved": "4.9.0",
+ "contentHash": "Yb8MFiJxBBtm2JnfS/5SxYzm2HqkEmHu5xeaVIHXy83sNpty9wc30JifH2xgda821D6nr1UctbwbdZqN4LBUKQ==",
+ "dependencies": {
+ "System.Private.ServiceModel": "4.9.0",
+ "System.ServiceModel.Primitives": "4.9.0"
+ }
+ },
+ "System.ServiceModel.Http": {
+ "type": "Transitive",
+ "resolved": "4.9.0",
+ "contentHash": "Z+s3RkLNzJ31fDXAjqXdXp67FqsNG4V3Md3r7FOrzMkHmg61gY8faEfTFPBLxU9tax1HPWt6IHVAquXBKySJaw==",
+ "dependencies": {
+ "System.Private.ServiceModel": "4.9.0",
+ "System.ServiceModel.Primitives": "4.9.0"
+ }
+ },
+ "System.ServiceModel.NetTcp": {
+ "type": "Transitive",
+ "resolved": "4.9.0",
+ "contentHash": "nXgnnkrZERUF/KwmoLwZPkc7fqgiq94DXkmUZBvDNh/LdZquDvjy2NbhJLElpApOa5x8zEoQoBZyJ2PqNC39qg==",
+ "dependencies": {
+ "System.Private.ServiceModel": "4.9.0",
+ "System.ServiceModel.Primitives": "4.9.0"
+ }
+ },
+ "System.ServiceModel.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.9.0",
+ "contentHash": "LTFPVdS8Nf76xg/wRZkDa+2Q+GnjTOmwkTlwuoetwX37mAfYnGkf7p8ydhpDwVmomNljpUOhUUGxfjQyd5YcOg==",
+ "dependencies": {
+ "System.Private.ServiceModel": "4.9.0"
+ }
+ },
+ "System.ServiceModel.Security": {
+ "type": "Transitive",
+ "resolved": "4.9.0",
+ "contentHash": "iurpbSmPgotHps94VQ6acvL6hU2gjiuBmQI7PwLLN76jsbSpUcahT0PglccKIAwoMujATk/LWtAapBHpwCFn2g==",
+ "dependencies": {
+ "System.Private.ServiceModel": "4.9.0",
+ "System.ServiceModel.Primitives": "4.9.0"
+ }
+ },
+ "System.ServiceModel.Syndication": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "cp1mMNG87iJtE0oHXFtfWT6cfski2JNo5iU0siTPi/uN2k1CIJI6FE4jr4v3got2dzt7wBq17fSy44btun9GiA=="
+ },
+ "System.ServiceProcess.ServiceController": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "qMBvG8ZFbkXoe0Z5/D7FAAadfPkH2v7vSuh2xsLf3U6jNoejpIdeV18A0htiASsLK1CCAc/p59kaLXlt2yB1gw==",
+ "dependencies": {
+ "System.Diagnostics.EventLog": "6.0.0"
+ }
+ },
+ "System.Speech": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "GQovERMrNP0Vbtgk8LzH4PlFS6lqHgsL9WkUmv8Kkxa0m0vNakitytpHZlfJ9WR7n9WKLXh68nn2kyL9mflnLg=="
+ },
+ "System.Text.Encoding": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Text.Encoding.CodePages": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "System.Text.Encodings.Web": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "System.Threading": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Threading.AccessControl": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "2258mqWesMch/xCpcnjJBgJP33yhpZLGLbEOm01qwq0efG4b+NG8c9sxYOWNxmDQ82swXrnQRl1Yp2wC1NrfZA==",
+ "dependencies": {
+ "System.Security.AccessControl": "6.0.0"
+ }
+ },
+ "System.Threading.Tasks": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Threading.Tasks.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.5.4",
+ "contentHash": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg=="
+ },
+ "System.Web.Services.Description": {
+ "type": "Transitive",
+ "resolved": "4.9.0",
+ "contentHash": "d20B3upsWddwSG5xF3eQLs0cAV3tXDsBNqP4kh02ylfgZwqfpf4f/9KiZVIGIoxULt2cKqxWs+U4AdNAJ7L8cQ=="
+ },
+ "System.Windows.Extensions": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
+ "dependencies": {
+ "System.Drawing.Common": "6.0.0"
+ }
+ }
+ },
+ "net6.0/win7-x86": {
+ "Microsoft.PowerShell.ConsoleHost": {
+ "type": "Direct",
+ "requested": "[7.2.7, )",
+ "resolved": "7.2.7",
+ "contentHash": "d+yiY24DBJiMjk7X+Jm1U4gNa+Fpva6Ss3kCIczj/a9GoJ9RzMUv04DxkkH8EIN41ugNbUu4pv58IZemHzwM4w==",
+ "dependencies": {
+ "System.Management.Automation": "7.2.7"
+ }
+ },
+ "Microsoft.PowerShell.SDK": {
+ "type": "Direct",
+ "requested": "[7.2.7, )",
+ "resolved": "7.2.7",
+ "contentHash": "UNhqFXOs9cDelNMqAE3AKfSUwZKOPBm28LB596dey22BuGif2otZTr//YpXaI5vm029AlKXNAIqkbdNJUM5eOA==",
+ "dependencies": {
+ "Microsoft.Management.Infrastructure.CimCmdlets": "7.2.7",
+ "Microsoft.NETCore.Windows.ApiSets": "1.0.1",
+ "Microsoft.PowerShell.Commands.Diagnostics": "7.2.7",
+ "Microsoft.PowerShell.Commands.Management": "7.2.7",
+ "Microsoft.PowerShell.Commands.Utility": "7.2.7",
+ "Microsoft.PowerShell.ConsoleHost": "7.2.7",
+ "Microsoft.PowerShell.Security": "7.2.7",
+ "Microsoft.WSMan.Management": "7.2.7",
+ "Microsoft.Windows.Compatibility": "6.0.0",
+ "System.Data.SqlClient": "4.8.3",
+ "System.IO.Packaging": "6.0.0",
+ "System.Management.Automation": "7.2.7",
+ "System.Net.Http.WinHttpHandler": "6.0.1",
+ "System.Private.ServiceModel": "4.9.0",
+ "System.ServiceModel.Duplex": "4.9.0",
+ "System.ServiceModel.Http": "4.9.0",
+ "System.ServiceModel.NetTcp": "4.9.0",
+ "System.ServiceModel.Primitives": "4.9.0",
+ "System.ServiceModel.Security": "4.9.0",
+ "System.Text.Encodings.Web": "6.0.0"
+ }
+ },
+ "Microsoft.Management.Infrastructure.CimCmdlets": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "5gXjpxrKUjNH8C8xSCwglya6VgajQjAZTB4zk7I9gXr6C8eaOkmver9DKEI7SP1nUS3X8NSYNilx+c1owG7xBw==",
+ "dependencies": {
+ "System.Management.Automation": "7.2.7"
+ }
+ },
+ "Microsoft.Management.Infrastructure.Runtime.Unix": {
+ "type": "Transitive",
+ "resolved": "2.0.0",
+ "contentHash": "p0lslMX5bdWLxO2P7ao+rjAMOB0LEwPYpzvdCQ2OEYgX2NxFpQ8ILvqPGnYlTAb53rT8gu5DyIol1HboHFYfxQ=="
+ },
+ "Microsoft.Management.Infrastructure.Runtime.Win": {
+ "type": "Transitive",
+ "resolved": "2.0.0",
+ "contentHash": "vjBWQeDOjgernkrOdbEgn7M70SF7hof7ORdKPSlL06Uc15+oYdth5dZju9KsgUoti/cwnkZTiwtDx/lRtay0sA=="
+ },
+ "Microsoft.NETCore.Windows.ApiSets": {
+ "type": "Transitive",
+ "resolved": "1.0.1",
+ "contentHash": "SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==",
+ "dependencies": {
+ "runtime.win7-x86.Microsoft.NETCore.Windows.ApiSets": "1.0.1"
+ }
+ },
+ "Microsoft.PowerShell.Commands.Diagnostics": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "3GKSwP46z06WnLPBzvJO/tMNCLPRWCfQReM/JqnCKk0fQScp53Il3SUppshKm6KcjkPxFsdtdqxl3kOKEAMn3w==",
+ "dependencies": {
+ "System.Management.Automation": "7.2.7"
+ }
+ },
+ "Microsoft.PowerShell.Commands.Management": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "TmM5pg+pjsYTFT4pQGrY4RSn+oTWGdol+eVxC1PpOBtJ/JvhOMTESX7FoNdzoc9XJ5JG9lQ4fBviz5U+SnBRAA==",
+ "dependencies": {
+ "Microsoft.PowerShell.Security": "7.2.7",
+ "System.ServiceProcess.ServiceController": "6.0.0"
+ }
+ },
+ "Microsoft.PowerShell.Commands.Utility": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "DWtzeEYkbHA49Huq0NFJi07PCA1K3Qyoi75O9QuCUrjHmYlDeOUhwqT7aaS2HuzURsvB3ysaOeIk6WSDX8rmig==",
+ "dependencies": {
+ "Microsoft.CodeAnalysis.CSharp": "4.0.1",
+ "Microsoft.PowerShell.MarkdownRender": "7.2.0",
+ "NJsonSchema": "10.5.2",
+ "System.Drawing.Common": "6.0.0",
+ "System.Management.Automation": "7.2.7",
+ "System.Threading.AccessControl": "6.0.0"
+ }
+ },
+ "Microsoft.PowerShell.CoreCLR.Eventing": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "iORTnoIVvFPulA69l3ElLCLxPevYDlJgw/W8z9n8J7ykCl6CSf8toZ4jiuPVdhEiAwzei7jnXecEGr22HcQbig==",
+ "dependencies": {
+ "System.Diagnostics.EventLog": "6.0.0"
+ }
+ },
+ "Microsoft.PowerShell.Native": {
+ "type": "Transitive",
+ "resolved": "7.2.0",
+ "contentHash": "TauOu3bYr4DRh9HpH3+fgaL+y2GY47KLsgU6qX1NDLqHshdEaCCjiF0N5sDEgCEhSb38FwWhpdFTIQvoOcYCXQ=="
+ },
+ "Microsoft.PowerShell.Security": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "fA+ASU38pSRbCE1+pCtzLIjLJCW9Lna/Bg5Z8hBWV1Nl7tFwPbF6og4wgNmrMxCT0Hc1cZat2Q5WLJR/wTdYzg==",
+ "dependencies": {
+ "System.Management.Automation": "7.2.7"
+ }
+ },
+ "Microsoft.Win32.Registry": {
+ "type": "Transitive",
+ "resolved": "4.7.0",
+ "contentHash": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
+ "dependencies": {
+ "System.Security.AccessControl": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ }
+ },
+ "Microsoft.Win32.Registry.AccessControl": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "UoE+eeuBKL+GFHxHV3FjHlY5K8Wr/IR7Ee/a2oDNqFodF1iMqyt5hIs0U9Z217AbWrHrNle4750kD03hv1IMZw==",
+ "dependencies": {
+ "System.Security.AccessControl": "6.0.0"
+ }
+ },
+ "Microsoft.Win32.SystemEvents": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A=="
+ },
+ "Microsoft.WSMan.Management": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "rdnIbdG+YZKkEQy6LfGv+KxQnrP2dh8HNVQmjVVVvawx9cxy/v52wPTCpU138G7XmIESEyDBemyPtR618sKpQQ==",
+ "dependencies": {
+ "Microsoft.WSMan.Runtime": "7.2.7",
+ "System.Management.Automation": "7.2.7",
+ "System.ServiceProcess.ServiceController": "6.0.0"
+ }
+ },
+ "Microsoft.WSMan.Runtime": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "14HSQ6AIzsbZ7+tK2J4NX+5/Ti8ONxPLoq7yA4VhhutP//bQLLk+Hq5SvrbvHxOm5l5a+MT16DDzockqZzVpIQ=="
+ },
+ "runtime.any.System.Collections": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==",
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "runtime.any.System.Globalization": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw=="
+ },
+ "runtime.any.System.IO": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ=="
+ },
+ "runtime.any.System.Reflection": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ=="
+ },
+ "runtime.any.System.Reflection.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "cPhT+Vqu52+cQQrDai/V91gubXUnDKNRvlBnH+hOgtGyHdC17aQIU64EaehwAQymd7kJA5rSrVRNfDYrbhnzyA=="
+ },
+ "runtime.any.System.Reflection.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg=="
+ },
+ "runtime.any.System.Resources.ResourceManager": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ=="
+ },
+ "runtime.any.System.Runtime": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==",
+ "dependencies": {
+ "System.Private.Uri": "4.3.0"
+ }
+ },
+ "runtime.any.System.Runtime.Handles": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ=="
+ },
+ "runtime.any.System.Runtime.InteropServices": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw=="
+ },
+ "runtime.any.System.Text.Encoding": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ=="
+ },
+ "runtime.any.System.Threading.Tasks": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w=="
+ },
+ "runtime.linux-arm.runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "75q52H7CSpgIoIDwXb9o833EvBZIXJ0mdPhz1E6jSisEXUBlSCPalC29cj3EXsjpuDwr0dj1LRXZepIQH/oL4Q=="
+ },
+ "runtime.linux-arm64.runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "xn2bMThmXr3CsvOYmS8ex2Yz1xo+kcnhVg2iVhS9PlmqjZPAkrEo/I40wjrBZH/tU4kvH0s1AE8opAvQ3KIS8g=="
+ },
+ "runtime.linux-x64.runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "16nbNXwv0sC+gLGIuecri0skjuh6R1maIJggsaNP7MQBcbVcEfWFUOkEnsnvoLEjy0XerfibuRptfQ8AmdIcWA=="
+ },
+ "runtime.osx-arm64.runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "fXG12NodG1QrCdoaeSQ1gVnk/koi4WYY4jZtarMkZeQMyReBm1nZlSRoPnUjLr2ZR36TiMjpcGnQfxymieUe7w=="
+ },
+ "runtime.osx-x64.runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "/As+zPY49+dSUXkh+fTUbyPhqrdGN//evLxo4Vue88pfh1BHZgF7q4kMblTkxYvwR6Vi03zSYxysSFktO8/SDQ=="
+ },
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": {
+ "type": "Transitive",
+ "resolved": "4.4.0",
+ "contentHash": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg=="
+ },
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": {
+ "type": "Transitive",
+ "resolved": "4.4.0",
+ "contentHash": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ=="
+ },
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": {
+ "type": "Transitive",
+ "resolved": "4.4.0",
+ "contentHash": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA=="
+ },
+ "runtime.win.System.Diagnostics.Debug": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "hHHP0WCStene2jjeYcuDkETozUYF/3sHVRHAEOgS3L15hlip24ssqCTnJC28Z03Wpo078oMcJd0H4egD2aJI8g=="
+ },
+ "runtime.win.System.Runtime.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "RkgHVhUPvzZxuUubiZe8yr/6CypRVXj0VBzaR8hsqQ8f+rUo7e4PWrHTLOCjd8fBMGWCrY//fi7Ku3qXD7oHRw==",
+ "dependencies": {
+ "System.Private.Uri": "4.3.0"
+ }
+ },
+ "runtime.win7-x86.Microsoft.NETCore.Windows.ApiSets": {
+ "type": "Transitive",
+ "resolved": "1.0.1",
+ "contentHash": "bPLbJzMJpczV+EMU4CK2Hb+DJrX3C93dXPMe+JsArqFTnJ9ou+xAa3lHt2qbWvzVVR1OMpgQUpB7aug6PcRPbA=="
+ },
+ "runtime.win7.System.Private.Uri": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "Q+IBgaPYicSQs2tBlmXqbS25c/JLIthWrgrpMwxKSOobW/OqIMVFruUGfuaz4QABVzV8iKdCAbN7APY7Tclbnw=="
+ },
+ "System.Collections": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Collections": "4.3.0"
+ }
+ },
+ "System.Data.Odbc": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "pnZjwe0Qwr1Rnp7NExd5zz4YwXJrYuAbWNKjEQpTzCEg6f/L5DYJS7w3hG3vgSj1t/r79UL390YzXIklf1VuQQ==",
+ "dependencies": {
+ "System.Text.Encoding.CodePages": "6.0.0"
+ }
+ },
+ "System.Data.OleDb": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "LQ8PjTIF1LtrrlGiyiTVjAkQtTWKm9GSNnygIlWjhN9y88s7xhy6DUNDDkmQQ9f6ex7mA4k0Tl97lz/CklaiLg==",
+ "dependencies": {
+ "System.Configuration.ConfigurationManager": "6.0.0",
+ "System.Diagnostics.PerformanceCounter": "6.0.0"
+ }
+ },
+ "System.Data.SqlClient": {
+ "type": "Transitive",
+ "resolved": "4.8.3",
+ "contentHash": "yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==",
+ "dependencies": {
+ "Microsoft.Win32.Registry": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0",
+ "runtime.native.System.Data.SqlClient.sni": "4.7.0"
+ }
+ },
+ "System.Diagnostics.Debug": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.win.System.Diagnostics.Debug": "4.3.0"
+ }
+ },
+ "System.Diagnostics.EventLog": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw=="
+ },
+ "System.Diagnostics.PerformanceCounter": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "gbeE5tNp/oB7O8kTTLh3wPPJCxpNOphXPTWVs1BsYuFOYapFijWuh0LYw1qnDo4gwDUYPXOmpTIhvtxisGsYOQ==",
+ "dependencies": {
+ "System.Configuration.ConfigurationManager": "6.0.0"
+ }
+ },
+ "System.DirectoryServices": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "kp/Op0nxDVGlElDKh8TsXO0GKXftQgAB6sJk0wUetZK1Rr0Pbd86Tn7AllLLlROFZa4BTl/LVHakljtGELFzCg==",
+ "dependencies": {
+ "System.Security.AccessControl": "6.0.0",
+ "System.Security.Permissions": "6.0.0"
+ }
+ },
+ "System.DirectoryServices.AccountManagement": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "2iKkY6VC4WX6H13N8WhH2SRUfWCwg2KZR5w9JIS9cw9N8cZhT7VXxHX0L6OX6Po419aSu2LWrJE9tu6b+cUnPA==",
+ "dependencies": {
+ "System.Configuration.ConfigurationManager": "6.0.0",
+ "System.DirectoryServices": "6.0.0",
+ "System.DirectoryServices.Protocols": "6.0.0",
+ "System.Security.AccessControl": "6.0.0"
+ }
+ },
+ "System.DirectoryServices.Protocols": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "++WKU7HQPo/FJdhywWw+q2lLjcVAGVw5XLH9kRCV+4DvkhVAcHCksh0ezIqwNROmaU9LMJN0d/LAdeWXu3pi6Q=="
+ },
+ "System.Drawing.Common": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
+ "dependencies": {
+ "Microsoft.Win32.SystemEvents": "6.0.0"
+ }
+ },
+ "System.Globalization": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Globalization": "4.3.0"
+ }
+ },
+ "System.IO": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.any.System.IO": "4.3.0"
+ }
+ },
+ "System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "dRyGI7fUESar5ZLIpiBOaaNLW7YyOBGftjj5Of+xcduC/Rjl7RjhEnWDvvNBmHuF3d0tdXoqdVI/yrVA8f00XA==",
+ "dependencies": {
+ "runtime.native.System.IO.Ports": "6.0.0"
+ }
+ },
+ "System.Management": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "sHsESYMmPDhQuOC66h6AEOs/XowzKsbT9srMbX71TCXP58hkpn1BqBjdmKj1+DCA/WlBETX1K5WjQHwmV0Txrg==",
+ "dependencies": {
+ "System.CodeDom": "6.0.0"
+ }
+ },
+ "System.Management.Automation": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "7UOl6eNIjWbZinKxkbtIY6s2joCCbN+2uO114SZpt1k8rEUUyX8tSsC5W9EVizYuSJiGpyyxw30l3wiJoJvKmA==",
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "2.21.0",
+ "Microsoft.Management.Infrastructure": "2.0.0",
+ "Microsoft.PowerShell.CoreCLR.Eventing": "7.2.7",
+ "Microsoft.PowerShell.Native": "7.2.0",
+ "Microsoft.Win32.Registry.AccessControl": "6.0.0",
+ "Newtonsoft.Json": "13.0.1",
+ "System.Configuration.ConfigurationManager": "6.0.1",
+ "System.DirectoryServices": "6.0.0",
+ "System.Management": "6.0.0",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.Security.AccessControl": "6.0.0",
+ "System.Security.Cryptography.Pkcs": "6.0.1",
+ "System.Security.Permissions": "6.0.0",
+ "System.Text.Encoding.CodePages": "6.0.0"
+ }
+ },
+ "System.Net.Http.WinHttpHandler": {
+ "type": "Transitive",
+ "resolved": "6.0.1",
+ "contentHash": "zdSpn2+EPBEXmsopvUjkpvbXNN53dqL7BifCKBJ5M+A/P3JEiCL/guuPwuiazu+RzCuEX/NJLnoXhllaf3vBxg=="
+ },
+ "System.Private.Uri": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "runtime.win7.System.Private.Uri": "4.3.0"
+ }
+ },
+ "System.Reflection": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Reflection": "4.3.0"
+ }
+ },
+ "System.Reflection.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Reflection.Extensions": "4.3.0"
+ }
+ },
+ "System.Reflection.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Reflection.Primitives": "4.3.0"
+ }
+ },
+ "System.Resources.ResourceManager": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Resources.ResourceManager": "4.3.0"
+ }
+ },
+ "System.Runtime": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "runtime.any.System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.Caching": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==",
+ "dependencies": {
+ "System.Configuration.ConfigurationManager": "6.0.0"
+ }
+ },
+ "System.Runtime.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.win.System.Runtime.Extensions": "4.3.0"
+ }
+ },
+ "System.Runtime.Handles": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Runtime.Handles": "4.3.0"
+ }
+ },
+ "System.Runtime.InteropServices": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "runtime.any.System.Runtime.InteropServices": "4.3.0"
+ }
+ },
+ "System.Security.AccessControl": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ=="
+ },
+ "System.Security.Cryptography.Pkcs": {
+ "type": "Transitive",
+ "resolved": "6.0.1",
+ "contentHash": "ynmbW2GjIGg9K1wXmVIRs4IlyDolf0JXNpzFQ8JCVgwM+myUC2JeUggl2PwQig2PNVMegKmN1aAx7WPQ8tI3vA==",
+ "dependencies": {
+ "System.Formats.Asn1": "6.0.0"
+ }
+ },
+ "System.Security.Cryptography.ProtectedData": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ=="
+ },
+ "System.Security.Principal.Windows": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA=="
+ },
+ "System.ServiceProcess.ServiceController": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "qMBvG8ZFbkXoe0Z5/D7FAAadfPkH2v7vSuh2xsLf3U6jNoejpIdeV18A0htiASsLK1CCAc/p59kaLXlt2yB1gw==",
+ "dependencies": {
+ "System.Diagnostics.EventLog": "6.0.0"
+ }
+ },
+ "System.Speech": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "GQovERMrNP0Vbtgk8LzH4PlFS6lqHgsL9WkUmv8Kkxa0m0vNakitytpHZlfJ9WR7n9WKLXh68nn2kyL9mflnLg=="
+ },
+ "System.Text.Encoding": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.Text.Encoding.CodePages": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "System.Text.Encodings.Web": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "System.Threading.AccessControl": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "2258mqWesMch/xCpcnjJBgJP33yhpZLGLbEOm01qwq0efG4b+NG8c9sxYOWNxmDQ82swXrnQRl1Yp2wC1NrfZA==",
+ "dependencies": {
+ "System.Security.AccessControl": "6.0.0"
+ }
+ },
+ "System.Threading.Tasks": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Windows.Extensions": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
+ "dependencies": {
+ "System.Drawing.Common": "6.0.0"
+ }
+ }
+ },
+ "net6.0-windows7.0": {
+ "Microsoft.PowerShell.ConsoleHost": {
+ "type": "Direct",
+ "requested": "[7.2.7, )",
+ "resolved": "7.2.7",
+ "contentHash": "d+yiY24DBJiMjk7X+Jm1U4gNa+Fpva6Ss3kCIczj/a9GoJ9RzMUv04DxkkH8EIN41ugNbUu4pv58IZemHzwM4w==",
+ "dependencies": {
+ "System.Management.Automation": "7.2.7"
+ }
+ },
+ "Microsoft.PowerShell.SDK": {
+ "type": "Direct",
+ "requested": "[7.2.7, )",
+ "resolved": "7.2.7",
+ "contentHash": "UNhqFXOs9cDelNMqAE3AKfSUwZKOPBm28LB596dey22BuGif2otZTr//YpXaI5vm029AlKXNAIqkbdNJUM5eOA==",
+ "dependencies": {
+ "Microsoft.Management.Infrastructure.CimCmdlets": "7.2.7",
+ "Microsoft.NETCore.Windows.ApiSets": "1.0.1",
+ "Microsoft.PowerShell.Commands.Diagnostics": "7.2.7",
+ "Microsoft.PowerShell.Commands.Management": "7.2.7",
+ "Microsoft.PowerShell.Commands.Utility": "7.2.7",
+ "Microsoft.PowerShell.ConsoleHost": "7.2.7",
+ "Microsoft.PowerShell.Security": "7.2.7",
+ "Microsoft.WSMan.Management": "7.2.7",
+ "Microsoft.Windows.Compatibility": "6.0.0",
+ "System.Data.SqlClient": "4.8.3",
+ "System.IO.Packaging": "6.0.0",
+ "System.Management.Automation": "7.2.7",
+ "System.Net.Http.WinHttpHandler": "6.0.1",
+ "System.Private.ServiceModel": "4.9.0",
+ "System.ServiceModel.Duplex": "4.9.0",
+ "System.ServiceModel.Http": "4.9.0",
+ "System.ServiceModel.NetTcp": "4.9.0",
+ "System.ServiceModel.Primitives": "4.9.0",
+ "System.ServiceModel.Security": "4.9.0",
+ "System.Text.Encodings.Web": "6.0.0"
+ }
+ },
+ "Markdig.Signed": {
+ "type": "Transitive",
+ "resolved": "0.22.0",
+ "contentHash": "7x3FqS3wk8DXyQLuflD47tBs6+ly6k4VtoDCzlDWfy7XHVsBIi7eGYEM15sPAcwSCQjOksNWE8U5r2v0Sk5FzQ=="
+ },
+ "Microsoft.ApplicationInsights": {
+ "type": "Transitive",
+ "resolved": "2.21.0",
+ "contentHash": "btZEDWAFNo9CoYliMCriSMTX3ruRGZTtYw4mo2XyyfLlowFicYVM2Xszi5evDG95QRYV7MbbH3D2RqVwfZlJHw==",
+ "dependencies": {
+ "System.Diagnostics.DiagnosticSource": "5.0.0"
+ }
+ },
+ "Microsoft.Bcl.AsyncInterfaces": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ=="
+ },
+ "Microsoft.CodeAnalysis.Analyzers": {
+ "type": "Transitive",
+ "resolved": "3.3.2",
+ "contentHash": "7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA=="
+ },
+ "Microsoft.CodeAnalysis.Common": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "SMREwaVD5SzatlWhh9aahQAtSWdb63NcE//f+bQzgHSECU6xtDtaxk0kwV+asdFfr6HtW38UeO6jvqdfzudg3w==",
+ "dependencies": {
+ "Microsoft.CodeAnalysis.Analyzers": "3.3.2",
+ "System.Collections.Immutable": "5.0.0",
+ "System.Memory": "4.5.4",
+ "System.Reflection.Metadata": "5.0.0",
+ "System.Runtime.CompilerServices.Unsafe": "5.0.0",
+ "System.Text.Encoding.CodePages": "4.5.1",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ }
+ },
+ "Microsoft.CodeAnalysis.CSharp": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "Q9RxxydPpUElj/x1/qykDTUGsRoKbJG8H5XUSeMGmMu54fBiuX1xyanom9caa1oQfh5JIW1BgLxobSaWs4WyHQ==",
+ "dependencies": {
+ "Microsoft.CodeAnalysis.Common": "[4.0.1]"
+ }
+ },
+ "Microsoft.CSharp": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Dynamic.Runtime": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "Microsoft.Extensions.ObjectPool": {
+ "type": "Transitive",
+ "resolved": "5.0.10",
+ "contentHash": "pp9tbGqIhdEXL6Q1yJl+zevAJSq4BsxqhS1GXzBvEsEz9DDNu9GLNzgUy2xyFc4YjB4m4Ff2YEWTnvQvVYdkvQ=="
+ },
+ "Microsoft.Management.Infrastructure": {
+ "type": "Transitive",
+ "resolved": "2.0.0",
+ "contentHash": "IaKZRNBBv3sdrmBWd+aqwHq8cVHk/3WgWFAN/dt40MRY9rbtHiDfTTmaEN0tGTmQqGCGDo/ncntA8MvFMvcsRw==",
+ "dependencies": {
+ "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0",
+ "Microsoft.Management.Infrastructure.Runtime.Win": "2.0.0"
+ }
+ },
+ "Microsoft.Management.Infrastructure.CimCmdlets": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "5gXjpxrKUjNH8C8xSCwglya6VgajQjAZTB4zk7I9gXr6C8eaOkmver9DKEI7SP1nUS3X8NSYNilx+c1owG7xBw==",
+ "dependencies": {
+ "System.Management.Automation": "7.2.7"
+ }
+ },
+ "Microsoft.Management.Infrastructure.Runtime.Unix": {
+ "type": "Transitive",
+ "resolved": "2.0.0",
+ "contentHash": "p0lslMX5bdWLxO2P7ao+rjAMOB0LEwPYpzvdCQ2OEYgX2NxFpQ8ILvqPGnYlTAb53rT8gu5DyIol1HboHFYfxQ=="
+ },
+ "Microsoft.Management.Infrastructure.Runtime.Win": {
+ "type": "Transitive",
+ "resolved": "2.0.0",
+ "contentHash": "vjBWQeDOjgernkrOdbEgn7M70SF7hof7ORdKPSlL06Uc15+oYdth5dZju9KsgUoti/cwnkZTiwtDx/lRtay0sA=="
+ },
+ "Microsoft.NETCore.Platforms": {
+ "type": "Transitive",
+ "resolved": "1.1.0",
+ "contentHash": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A=="
+ },
+ "Microsoft.NETCore.Targets": {
+ "type": "Transitive",
+ "resolved": "1.1.0",
+ "contentHash": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg=="
+ },
+ "Microsoft.NETCore.Windows.ApiSets": {
+ "type": "Transitive",
+ "resolved": "1.0.1",
+ "contentHash": "SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw=="
+ },
+ "Microsoft.PowerShell.Commands.Diagnostics": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "3GKSwP46z06WnLPBzvJO/tMNCLPRWCfQReM/JqnCKk0fQScp53Il3SUppshKm6KcjkPxFsdtdqxl3kOKEAMn3w==",
+ "dependencies": {
+ "System.Management.Automation": "7.2.7"
+ }
+ },
+ "Microsoft.PowerShell.Commands.Management": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "TmM5pg+pjsYTFT4pQGrY4RSn+oTWGdol+eVxC1PpOBtJ/JvhOMTESX7FoNdzoc9XJ5JG9lQ4fBviz5U+SnBRAA==",
+ "dependencies": {
+ "Microsoft.PowerShell.Security": "7.2.7",
+ "System.ServiceProcess.ServiceController": "6.0.0"
+ }
+ },
+ "Microsoft.PowerShell.Commands.Utility": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "DWtzeEYkbHA49Huq0NFJi07PCA1K3Qyoi75O9QuCUrjHmYlDeOUhwqT7aaS2HuzURsvB3ysaOeIk6WSDX8rmig==",
+ "dependencies": {
+ "Microsoft.CodeAnalysis.CSharp": "4.0.1",
+ "Microsoft.PowerShell.MarkdownRender": "7.2.0",
+ "NJsonSchema": "10.5.2",
+ "System.Drawing.Common": "6.0.0",
+ "System.Management.Automation": "7.2.7",
+ "System.Threading.AccessControl": "6.0.0"
+ }
+ },
+ "Microsoft.PowerShell.CoreCLR.Eventing": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "iORTnoIVvFPulA69l3ElLCLxPevYDlJgw/W8z9n8J7ykCl6CSf8toZ4jiuPVdhEiAwzei7jnXecEGr22HcQbig==",
+ "dependencies": {
+ "System.Diagnostics.EventLog": "6.0.0"
+ }
+ },
+ "Microsoft.PowerShell.MarkdownRender": {
+ "type": "Transitive",
+ "resolved": "7.2.0",
+ "contentHash": "1vqDtdX9RCGsMWCbzp0CIxZW3slWgq8mYHDfUlUKzmkV57fMAn4m0Gy2OtsqopZzrOiVJci+QCWx5FB7BVpMlw==",
+ "dependencies": {
+ "Markdig.Signed": "0.22.0"
+ }
+ },
+ "Microsoft.PowerShell.Native": {
+ "type": "Transitive",
+ "resolved": "7.2.0",
+ "contentHash": "TauOu3bYr4DRh9HpH3+fgaL+y2GY47KLsgU6qX1NDLqHshdEaCCjiF0N5sDEgCEhSb38FwWhpdFTIQvoOcYCXQ=="
+ },
+ "Microsoft.PowerShell.Security": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "fA+ASU38pSRbCE1+pCtzLIjLJCW9Lna/Bg5Z8hBWV1Nl7tFwPbF6og4wgNmrMxCT0Hc1cZat2Q5WLJR/wTdYzg==",
+ "dependencies": {
+ "System.Management.Automation": "7.2.7"
+ }
+ },
+ "Microsoft.Win32.Registry": {
+ "type": "Transitive",
+ "resolved": "4.7.0",
+ "contentHash": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
+ "dependencies": {
+ "System.Security.AccessControl": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ }
+ },
+ "Microsoft.Win32.Registry.AccessControl": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "UoE+eeuBKL+GFHxHV3FjHlY5K8Wr/IR7Ee/a2oDNqFodF1iMqyt5hIs0U9Z217AbWrHrNle4750kD03hv1IMZw==",
+ "dependencies": {
+ "System.Security.AccessControl": "6.0.0"
+ }
+ },
+ "Microsoft.Win32.SystemEvents": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A=="
+ },
+ "Microsoft.Windows.Compatibility": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "9esuK5JqnjkDgO9/AHesyJSG0aKwpfLVzTw6nIGYhqE91VLxZyv3HKulNoPVy/NOuyAaf1kE4FKtdZDzdd/SLw==",
+ "dependencies": {
+ "Microsoft.Win32.Registry.AccessControl": "6.0.0",
+ "Microsoft.Win32.SystemEvents": "6.0.0",
+ "System.CodeDom": "6.0.0",
+ "System.ComponentModel.Composition": "6.0.0",
+ "System.ComponentModel.Composition.Registration": "6.0.0",
+ "System.Configuration.ConfigurationManager": "6.0.0",
+ "System.Data.Odbc": "6.0.0",
+ "System.Data.OleDb": "6.0.0",
+ "System.Data.SqlClient": "4.8.3",
+ "System.Diagnostics.EventLog": "6.0.0",
+ "System.Diagnostics.PerformanceCounter": "6.0.0",
+ "System.DirectoryServices": "6.0.0",
+ "System.DirectoryServices.AccountManagement": "6.0.0",
+ "System.DirectoryServices.Protocols": "6.0.0",
+ "System.Drawing.Common": "6.0.0",
+ "System.IO.Packaging": "6.0.0",
+ "System.IO.Ports": "6.0.0",
+ "System.Management": "6.0.0",
+ "System.Reflection.Context": "6.0.0",
+ "System.Runtime.Caching": "6.0.0",
+ "System.Security.AccessControl": "6.0.0",
+ "System.Security.Cryptography.Pkcs": "6.0.0",
+ "System.Security.Cryptography.ProtectedData": "6.0.0",
+ "System.Security.Cryptography.Xml": "6.0.0",
+ "System.Security.Permissions": "6.0.0",
+ "System.ServiceModel.Duplex": "4.9.0",
+ "System.ServiceModel.Http": "4.9.0",
+ "System.ServiceModel.NetTcp": "4.9.0",
+ "System.ServiceModel.Primitives": "4.9.0",
+ "System.ServiceModel.Security": "4.9.0",
+ "System.ServiceModel.Syndication": "6.0.0",
+ "System.ServiceProcess.ServiceController": "6.0.0",
+ "System.Speech": "6.0.0",
+ "System.Text.Encoding.CodePages": "6.0.0",
+ "System.Threading.AccessControl": "6.0.0",
+ "System.Web.Services.Description": "4.9.0"
+ }
+ },
+ "Microsoft.WSMan.Management": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "rdnIbdG+YZKkEQy6LfGv+KxQnrP2dh8HNVQmjVVVvawx9cxy/v52wPTCpU138G7XmIESEyDBemyPtR618sKpQQ==",
+ "dependencies": {
+ "Microsoft.WSMan.Runtime": "7.2.7",
+ "System.Management.Automation": "7.2.7",
+ "System.ServiceProcess.ServiceController": "6.0.0"
+ }
+ },
+ "Microsoft.WSMan.Runtime": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "14HSQ6AIzsbZ7+tK2J4NX+5/Ti8ONxPLoq7yA4VhhutP//bQLLk+Hq5SvrbvHxOm5l5a+MT16DDzockqZzVpIQ=="
+ },
+ "Namotion.Reflection": {
+ "type": "Transitive",
+ "resolved": "2.0.3",
+ "contentHash": "tZCe/UrSBAMW8A4TjD/SlpRHaWjnHlSWdyRuOXhf3yrE0OX+4fXg0uzj7mwFDclXznfCGRAZbP+akPt4G/mclw==",
+ "dependencies": {
+ "Microsoft.CSharp": "4.3.0"
+ }
+ },
+ "Newtonsoft.Json": {
+ "type": "Transitive",
+ "resolved": "13.0.1",
+ "contentHash": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A=="
+ },
+ "NJsonSchema": {
+ "type": "Transitive",
+ "resolved": "10.5.2",
+ "contentHash": "Vr2CbySuXh74TQFU0rGJYZOS492xOE64cPXdB7a0cfXJb/N45Bf4v7sd4LOla0jNhgc5V/B61Ko3qecriL195w==",
+ "dependencies": {
+ "Namotion.Reflection": "2.0.3",
+ "Newtonsoft.Json": "9.0.1"
+ }
+ },
+ "runtime.linux-arm.runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "75q52H7CSpgIoIDwXb9o833EvBZIXJ0mdPhz1E6jSisEXUBlSCPalC29cj3EXsjpuDwr0dj1LRXZepIQH/oL4Q=="
+ },
+ "runtime.linux-arm64.runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "xn2bMThmXr3CsvOYmS8ex2Yz1xo+kcnhVg2iVhS9PlmqjZPAkrEo/I40wjrBZH/tU4kvH0s1AE8opAvQ3KIS8g=="
+ },
+ "runtime.linux-x64.runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "16nbNXwv0sC+gLGIuecri0skjuh6R1maIJggsaNP7MQBcbVcEfWFUOkEnsnvoLEjy0XerfibuRptfQ8AmdIcWA=="
+ },
+ "runtime.native.System.Data.SqlClient.sni": {
+ "type": "Transitive",
+ "resolved": "4.7.0",
+ "contentHash": "9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==",
+ "dependencies": {
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
+ }
+ },
+ "runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "KaaXlpOcuZjMdmyF5wzzx3b+PRKIzt6A5Ax9dKenPDQbVJAFpev+casD0BIig1pBcbs3zx7CqWemzUJKAeHdSQ==",
+ "dependencies": {
+ "runtime.linux-arm.runtime.native.System.IO.Ports": "6.0.0",
+ "runtime.linux-arm64.runtime.native.System.IO.Ports": "6.0.0",
+ "runtime.linux-x64.runtime.native.System.IO.Ports": "6.0.0",
+ "runtime.osx-arm64.runtime.native.System.IO.Ports": "6.0.0",
+ "runtime.osx-x64.runtime.native.System.IO.Ports": "6.0.0"
+ }
+ },
+ "runtime.osx-arm64.runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "fXG12NodG1QrCdoaeSQ1gVnk/koi4WYY4jZtarMkZeQMyReBm1nZlSRoPnUjLr2ZR36TiMjpcGnQfxymieUe7w=="
+ },
+ "runtime.osx-x64.runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "/As+zPY49+dSUXkh+fTUbyPhqrdGN//evLxo4Vue88pfh1BHZgF7q4kMblTkxYvwR6Vi03zSYxysSFktO8/SDQ=="
+ },
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": {
+ "type": "Transitive",
+ "resolved": "4.4.0",
+ "contentHash": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg=="
+ },
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": {
+ "type": "Transitive",
+ "resolved": "4.4.0",
+ "contentHash": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ=="
+ },
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": {
+ "type": "Transitive",
+ "resolved": "4.4.0",
+ "contentHash": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA=="
+ },
+ "System.CodeDom": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA=="
+ },
+ "System.Collections": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Collections.Immutable": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g=="
+ },
+ "System.ComponentModel.Composition": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "60Qv+F7oxomOjJeTDA5Z4iCyFbQ0B/2Mi5HT+13pxxq0lVnu2ipbWMzFB+RWKr3wWKA8BSncXr9PH/fECwMX5Q=="
+ },
+ "System.ComponentModel.Composition.Registration": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "+i3RLlOgTsf15VeADBPpzPyRiXq71aLSuzdHeNtmq9f6BwpF3OWhB76p0WDUNCa3Z+SLD4dJbBM9yAep7kQCGA==",
+ "dependencies": {
+ "System.ComponentModel.Composition": "6.0.0",
+ "System.Reflection.Context": "6.0.0"
+ }
+ },
+ "System.Configuration.ConfigurationManager": {
+ "type": "Transitive",
+ "resolved": "6.0.1",
+ "contentHash": "jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==",
+ "dependencies": {
+ "System.Security.Cryptography.ProtectedData": "6.0.0",
+ "System.Security.Permissions": "6.0.0"
+ }
+ },
+ "System.Data.Odbc": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "pnZjwe0Qwr1Rnp7NExd5zz4YwXJrYuAbWNKjEQpTzCEg6f/L5DYJS7w3hG3vgSj1t/r79UL390YzXIklf1VuQQ==",
+ "dependencies": {
+ "System.Text.Encoding.CodePages": "6.0.0"
+ }
+ },
+ "System.Data.OleDb": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "LQ8PjTIF1LtrrlGiyiTVjAkQtTWKm9GSNnygIlWjhN9y88s7xhy6DUNDDkmQQ9f6ex7mA4k0Tl97lz/CklaiLg==",
+ "dependencies": {
+ "System.Configuration.ConfigurationManager": "6.0.0",
+ "System.Diagnostics.PerformanceCounter": "6.0.0"
+ }
+ },
+ "System.Data.SqlClient": {
+ "type": "Transitive",
+ "resolved": "4.8.3",
+ "contentHash": "yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==",
+ "dependencies": {
+ "Microsoft.Win32.Registry": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0",
+ "runtime.native.System.Data.SqlClient.sni": "4.7.0"
+ }
+ },
+ "System.Diagnostics.Debug": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Diagnostics.DiagnosticSource": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA=="
+ },
+ "System.Diagnostics.EventLog": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw=="
+ },
+ "System.Diagnostics.PerformanceCounter": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "gbeE5tNp/oB7O8kTTLh3wPPJCxpNOphXPTWVs1BsYuFOYapFijWuh0LYw1qnDo4gwDUYPXOmpTIhvtxisGsYOQ==",
+ "dependencies": {
+ "System.Configuration.ConfigurationManager": "6.0.0"
+ }
+ },
+ "System.DirectoryServices": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "kp/Op0nxDVGlElDKh8TsXO0GKXftQgAB6sJk0wUetZK1Rr0Pbd86Tn7AllLLlROFZa4BTl/LVHakljtGELFzCg==",
+ "dependencies": {
+ "System.Security.AccessControl": "6.0.0",
+ "System.Security.Permissions": "6.0.0"
+ }
+ },
+ "System.DirectoryServices.AccountManagement": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "2iKkY6VC4WX6H13N8WhH2SRUfWCwg2KZR5w9JIS9cw9N8cZhT7VXxHX0L6OX6Po419aSu2LWrJE9tu6b+cUnPA==",
+ "dependencies": {
+ "System.Configuration.ConfigurationManager": "6.0.0",
+ "System.DirectoryServices": "6.0.0",
+ "System.DirectoryServices.Protocols": "6.0.0",
+ "System.Security.AccessControl": "6.0.0"
+ }
+ },
+ "System.DirectoryServices.Protocols": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "++WKU7HQPo/FJdhywWw+q2lLjcVAGVw5XLH9kRCV+4DvkhVAcHCksh0ezIqwNROmaU9LMJN0d/LAdeWXu3pi6Q=="
+ },
+ "System.Drawing.Common": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
+ "dependencies": {
+ "Microsoft.Win32.SystemEvents": "6.0.0"
+ }
+ },
+ "System.Dynamic.Runtime": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Formats.Asn1": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA=="
+ },
+ "System.Globalization": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.IO": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.IO.Packaging": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "C7OkTRIjqIjAKu6ef/fuj8ynCZTPcTYZnvHaq48bniACgXXJogmEoIc56YCDNTc14xhsbLmgpS3KP+evbsUa2g=="
+ },
+ "System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "dRyGI7fUESar5ZLIpiBOaaNLW7YyOBGftjj5Of+xcduC/Rjl7RjhEnWDvvNBmHuF3d0tdXoqdVI/yrVA8f00XA==",
+ "dependencies": {
+ "runtime.native.System.IO.Ports": "6.0.0"
+ }
+ },
+ "System.Linq": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ }
+ },
+ "System.Linq.Expressions": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Emit.Lightweight": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Management": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "sHsESYMmPDhQuOC66h6AEOs/XowzKsbT9srMbX71TCXP58hkpn1BqBjdmKj1+DCA/WlBETX1K5WjQHwmV0Txrg==",
+ "dependencies": {
+ "System.CodeDom": "6.0.0"
+ }
+ },
+ "System.Management.Automation": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "7UOl6eNIjWbZinKxkbtIY6s2joCCbN+2uO114SZpt1k8rEUUyX8tSsC5W9EVizYuSJiGpyyxw30l3wiJoJvKmA==",
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "2.21.0",
+ "Microsoft.Management.Infrastructure": "2.0.0",
+ "Microsoft.PowerShell.CoreCLR.Eventing": "7.2.7",
+ "Microsoft.PowerShell.Native": "7.2.0",
+ "Microsoft.Win32.Registry.AccessControl": "6.0.0",
+ "Newtonsoft.Json": "13.0.1",
+ "System.Configuration.ConfigurationManager": "6.0.1",
+ "System.DirectoryServices": "6.0.0",
+ "System.Management": "6.0.0",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.Security.AccessControl": "6.0.0",
+ "System.Security.Cryptography.Pkcs": "6.0.1",
+ "System.Security.Permissions": "6.0.0",
+ "System.Text.Encoding.CodePages": "6.0.0"
+ }
+ },
+ "System.Memory": {
+ "type": "Transitive",
+ "resolved": "4.5.4",
+ "contentHash": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw=="
+ },
+ "System.Net.Http.WinHttpHandler": {
+ "type": "Transitive",
+ "resolved": "6.0.1",
+ "contentHash": "zdSpn2+EPBEXmsopvUjkpvbXNN53dqL7BifCKBJ5M+A/P3JEiCL/guuPwuiazu+RzCuEX/NJLnoXhllaf3vBxg=="
+ },
+ "System.Numerics.Vectors": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ=="
+ },
+ "System.ObjectModel": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Private.ServiceModel": {
+ "type": "Transitive",
+ "resolved": "4.9.0",
+ "contentHash": "d3RjkrtpjUQ63PzFmm/SZ4aOXeJNP+8YW5QeP0lCJy8iX4xlHdlNLWTF9sRn9SmrFTK757kQXT9Op/R4l858uw==",
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "5.0.0",
+ "Microsoft.Extensions.ObjectPool": "5.0.10",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Reflection.DispatchProxy": "4.7.1",
+ "System.Security.Cryptography.Xml": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ }
+ },
+ "System.Reflection": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Context": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "Vi+Gb41oyOYie7uLSsjRmfRg3bryUg5DssJvj3gDUl0D8z6ipSm6/yi/XNx2rcS5iVMvHcwRUHjcx7ixv0K3/w=="
+ },
+ "System.Reflection.DispatchProxy": {
+ "type": "Transitive",
+ "resolved": "4.7.1",
+ "contentHash": "C1sMLwIG6ILQ2bmOT4gh62V6oJlyF4BlHcVMrOoor49p0Ji2tA8QAoqyMcIhAdH6OHKJ8m7BU+r4LK2CUEOKqw=="
+ },
+ "System.Reflection.Emit": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Emit.ILGeneration": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Emit.Lightweight": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Metadata": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ=="
+ },
+ "System.Reflection.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.TypeExtensions": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Resources.ResourceManager": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "System.Runtime.Caching": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==",
+ "dependencies": {
+ "System.Configuration.ConfigurationManager": "6.0.0"
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg=="
+ },
+ "System.Runtime.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.Handles": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.InteropServices": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ }
+ },
+ "System.Security.AccessControl": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ=="
+ },
+ "System.Security.Cryptography.Pkcs": {
+ "type": "Transitive",
+ "resolved": "6.0.1",
+ "contentHash": "ynmbW2GjIGg9K1wXmVIRs4IlyDolf0JXNpzFQ8JCVgwM+myUC2JeUggl2PwQig2PNVMegKmN1aAx7WPQ8tI3vA==",
+ "dependencies": {
+ "System.Formats.Asn1": "6.0.0"
+ }
+ },
+ "System.Security.Cryptography.ProtectedData": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ=="
+ },
+ "System.Security.Cryptography.Xml": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "puJ4UCh9JVRwOCyCIcq71JY6Axr8Sp8E2GjTIU1Fj8hm4+oX6NEoyGFGa/+pBG8SrVxbQPSj7hvtaREyTHHsmw==",
+ "dependencies": {
+ "System.Security.AccessControl": "6.0.0",
+ "System.Security.Cryptography.Pkcs": "6.0.0"
+ }
+ },
+ "System.Security.Permissions": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",
+ "dependencies": {
+ "System.Security.AccessControl": "6.0.0",
+ "System.Windows.Extensions": "6.0.0"
+ }
+ },
+ "System.Security.Principal.Windows": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA=="
+ },
+ "System.ServiceModel.Duplex": {
+ "type": "Transitive",
+ "resolved": "4.9.0",
+ "contentHash": "Yb8MFiJxBBtm2JnfS/5SxYzm2HqkEmHu5xeaVIHXy83sNpty9wc30JifH2xgda821D6nr1UctbwbdZqN4LBUKQ==",
+ "dependencies": {
+ "System.Private.ServiceModel": "4.9.0",
+ "System.ServiceModel.Primitives": "4.9.0"
+ }
+ },
+ "System.ServiceModel.Http": {
+ "type": "Transitive",
+ "resolved": "4.9.0",
+ "contentHash": "Z+s3RkLNzJ31fDXAjqXdXp67FqsNG4V3Md3r7FOrzMkHmg61gY8faEfTFPBLxU9tax1HPWt6IHVAquXBKySJaw==",
+ "dependencies": {
+ "System.Private.ServiceModel": "4.9.0",
+ "System.ServiceModel.Primitives": "4.9.0"
+ }
+ },
+ "System.ServiceModel.NetTcp": {
+ "type": "Transitive",
+ "resolved": "4.9.0",
+ "contentHash": "nXgnnkrZERUF/KwmoLwZPkc7fqgiq94DXkmUZBvDNh/LdZquDvjy2NbhJLElpApOa5x8zEoQoBZyJ2PqNC39qg==",
+ "dependencies": {
+ "System.Private.ServiceModel": "4.9.0",
+ "System.ServiceModel.Primitives": "4.9.0"
+ }
+ },
+ "System.ServiceModel.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.9.0",
+ "contentHash": "LTFPVdS8Nf76xg/wRZkDa+2Q+GnjTOmwkTlwuoetwX37mAfYnGkf7p8ydhpDwVmomNljpUOhUUGxfjQyd5YcOg==",
+ "dependencies": {
+ "System.Private.ServiceModel": "4.9.0"
+ }
+ },
+ "System.ServiceModel.Security": {
+ "type": "Transitive",
+ "resolved": "4.9.0",
+ "contentHash": "iurpbSmPgotHps94VQ6acvL6hU2gjiuBmQI7PwLLN76jsbSpUcahT0PglccKIAwoMujATk/LWtAapBHpwCFn2g==",
+ "dependencies": {
+ "System.Private.ServiceModel": "4.9.0",
+ "System.ServiceModel.Primitives": "4.9.0"
+ }
+ },
+ "System.ServiceModel.Syndication": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "cp1mMNG87iJtE0oHXFtfWT6cfski2JNo5iU0siTPi/uN2k1CIJI6FE4jr4v3got2dzt7wBq17fSy44btun9GiA=="
+ },
+ "System.ServiceProcess.ServiceController": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "qMBvG8ZFbkXoe0Z5/D7FAAadfPkH2v7vSuh2xsLf3U6jNoejpIdeV18A0htiASsLK1CCAc/p59kaLXlt2yB1gw==",
+ "dependencies": {
+ "System.Diagnostics.EventLog": "6.0.0"
+ }
+ },
+ "System.Speech": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "GQovERMrNP0Vbtgk8LzH4PlFS6lqHgsL9WkUmv8Kkxa0m0vNakitytpHZlfJ9WR7n9WKLXh68nn2kyL9mflnLg=="
+ },
+ "System.Text.Encoding": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Text.Encoding.CodePages": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "System.Text.Encodings.Web": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "System.Threading": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Threading.AccessControl": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "2258mqWesMch/xCpcnjJBgJP33yhpZLGLbEOm01qwq0efG4b+NG8c9sxYOWNxmDQ82swXrnQRl1Yp2wC1NrfZA==",
+ "dependencies": {
+ "System.Security.AccessControl": "6.0.0"
+ }
+ },
+ "System.Threading.Tasks": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Threading.Tasks.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.5.4",
+ "contentHash": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg=="
+ },
+ "System.Web.Services.Description": {
+ "type": "Transitive",
+ "resolved": "4.9.0",
+ "contentHash": "d20B3upsWddwSG5xF3eQLs0cAV3tXDsBNqP4kh02ylfgZwqfpf4f/9KiZVIGIoxULt2cKqxWs+U4AdNAJ7L8cQ=="
+ },
+ "System.Windows.Extensions": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
+ "dependencies": {
+ "System.Drawing.Common": "6.0.0"
+ }
+ }
+ },
+ "net6.0-windows7.0/win7-x86": {
+ "Microsoft.PowerShell.ConsoleHost": {
+ "type": "Direct",
+ "requested": "[7.2.7, )",
+ "resolved": "7.2.7",
+ "contentHash": "d+yiY24DBJiMjk7X+Jm1U4gNa+Fpva6Ss3kCIczj/a9GoJ9RzMUv04DxkkH8EIN41ugNbUu4pv58IZemHzwM4w==",
+ "dependencies": {
+ "System.Management.Automation": "7.2.7"
+ }
+ },
+ "Microsoft.PowerShell.SDK": {
+ "type": "Direct",
+ "requested": "[7.2.7, )",
+ "resolved": "7.2.7",
+ "contentHash": "UNhqFXOs9cDelNMqAE3AKfSUwZKOPBm28LB596dey22BuGif2otZTr//YpXaI5vm029AlKXNAIqkbdNJUM5eOA==",
+ "dependencies": {
+ "Microsoft.Management.Infrastructure.CimCmdlets": "7.2.7",
+ "Microsoft.NETCore.Windows.ApiSets": "1.0.1",
+ "Microsoft.PowerShell.Commands.Diagnostics": "7.2.7",
+ "Microsoft.PowerShell.Commands.Management": "7.2.7",
+ "Microsoft.PowerShell.Commands.Utility": "7.2.7",
+ "Microsoft.PowerShell.ConsoleHost": "7.2.7",
+ "Microsoft.PowerShell.Security": "7.2.7",
+ "Microsoft.WSMan.Management": "7.2.7",
+ "Microsoft.Windows.Compatibility": "6.0.0",
+ "System.Data.SqlClient": "4.8.3",
+ "System.IO.Packaging": "6.0.0",
+ "System.Management.Automation": "7.2.7",
+ "System.Net.Http.WinHttpHandler": "6.0.1",
+ "System.Private.ServiceModel": "4.9.0",
+ "System.ServiceModel.Duplex": "4.9.0",
+ "System.ServiceModel.Http": "4.9.0",
+ "System.ServiceModel.NetTcp": "4.9.0",
+ "System.ServiceModel.Primitives": "4.9.0",
+ "System.ServiceModel.Security": "4.9.0",
+ "System.Text.Encodings.Web": "6.0.0"
+ }
+ },
+ "Microsoft.Management.Infrastructure.CimCmdlets": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "5gXjpxrKUjNH8C8xSCwglya6VgajQjAZTB4zk7I9gXr6C8eaOkmver9DKEI7SP1nUS3X8NSYNilx+c1owG7xBw==",
+ "dependencies": {
+ "System.Management.Automation": "7.2.7"
+ }
+ },
+ "Microsoft.Management.Infrastructure.Runtime.Unix": {
+ "type": "Transitive",
+ "resolved": "2.0.0",
+ "contentHash": "p0lslMX5bdWLxO2P7ao+rjAMOB0LEwPYpzvdCQ2OEYgX2NxFpQ8ILvqPGnYlTAb53rT8gu5DyIol1HboHFYfxQ=="
+ },
+ "Microsoft.Management.Infrastructure.Runtime.Win": {
+ "type": "Transitive",
+ "resolved": "2.0.0",
+ "contentHash": "vjBWQeDOjgernkrOdbEgn7M70SF7hof7ORdKPSlL06Uc15+oYdth5dZju9KsgUoti/cwnkZTiwtDx/lRtay0sA=="
+ },
+ "Microsoft.NETCore.Windows.ApiSets": {
+ "type": "Transitive",
+ "resolved": "1.0.1",
+ "contentHash": "SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==",
+ "dependencies": {
+ "runtime.win7-x86.Microsoft.NETCore.Windows.ApiSets": "1.0.1"
+ }
+ },
+ "Microsoft.PowerShell.Commands.Diagnostics": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "3GKSwP46z06WnLPBzvJO/tMNCLPRWCfQReM/JqnCKk0fQScp53Il3SUppshKm6KcjkPxFsdtdqxl3kOKEAMn3w==",
+ "dependencies": {
+ "System.Management.Automation": "7.2.7"
+ }
+ },
+ "Microsoft.PowerShell.Commands.Management": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "TmM5pg+pjsYTFT4pQGrY4RSn+oTWGdol+eVxC1PpOBtJ/JvhOMTESX7FoNdzoc9XJ5JG9lQ4fBviz5U+SnBRAA==",
+ "dependencies": {
+ "Microsoft.PowerShell.Security": "7.2.7",
+ "System.ServiceProcess.ServiceController": "6.0.0"
+ }
+ },
+ "Microsoft.PowerShell.Commands.Utility": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "DWtzeEYkbHA49Huq0NFJi07PCA1K3Qyoi75O9QuCUrjHmYlDeOUhwqT7aaS2HuzURsvB3ysaOeIk6WSDX8rmig==",
+ "dependencies": {
+ "Microsoft.CodeAnalysis.CSharp": "4.0.1",
+ "Microsoft.PowerShell.MarkdownRender": "7.2.0",
+ "NJsonSchema": "10.5.2",
+ "System.Drawing.Common": "6.0.0",
+ "System.Management.Automation": "7.2.7",
+ "System.Threading.AccessControl": "6.0.0"
+ }
+ },
+ "Microsoft.PowerShell.CoreCLR.Eventing": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "iORTnoIVvFPulA69l3ElLCLxPevYDlJgw/W8z9n8J7ykCl6CSf8toZ4jiuPVdhEiAwzei7jnXecEGr22HcQbig==",
+ "dependencies": {
+ "System.Diagnostics.EventLog": "6.0.0"
+ }
+ },
+ "Microsoft.PowerShell.Native": {
+ "type": "Transitive",
+ "resolved": "7.2.0",
+ "contentHash": "TauOu3bYr4DRh9HpH3+fgaL+y2GY47KLsgU6qX1NDLqHshdEaCCjiF0N5sDEgCEhSb38FwWhpdFTIQvoOcYCXQ=="
+ },
+ "Microsoft.PowerShell.Security": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "fA+ASU38pSRbCE1+pCtzLIjLJCW9Lna/Bg5Z8hBWV1Nl7tFwPbF6og4wgNmrMxCT0Hc1cZat2Q5WLJR/wTdYzg==",
+ "dependencies": {
+ "System.Management.Automation": "7.2.7"
+ }
+ },
+ "Microsoft.Win32.Registry": {
+ "type": "Transitive",
+ "resolved": "4.7.0",
+ "contentHash": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
+ "dependencies": {
+ "System.Security.AccessControl": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ }
+ },
+ "Microsoft.Win32.Registry.AccessControl": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "UoE+eeuBKL+GFHxHV3FjHlY5K8Wr/IR7Ee/a2oDNqFodF1iMqyt5hIs0U9Z217AbWrHrNle4750kD03hv1IMZw==",
+ "dependencies": {
+ "System.Security.AccessControl": "6.0.0"
+ }
+ },
+ "Microsoft.Win32.SystemEvents": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A=="
+ },
+ "Microsoft.WSMan.Management": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "rdnIbdG+YZKkEQy6LfGv+KxQnrP2dh8HNVQmjVVVvawx9cxy/v52wPTCpU138G7XmIESEyDBemyPtR618sKpQQ==",
+ "dependencies": {
+ "Microsoft.WSMan.Runtime": "7.2.7",
+ "System.Management.Automation": "7.2.7",
+ "System.ServiceProcess.ServiceController": "6.0.0"
+ }
+ },
+ "Microsoft.WSMan.Runtime": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "14HSQ6AIzsbZ7+tK2J4NX+5/Ti8ONxPLoq7yA4VhhutP//bQLLk+Hq5SvrbvHxOm5l5a+MT16DDzockqZzVpIQ=="
+ },
+ "runtime.any.System.Collections": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==",
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "runtime.any.System.Globalization": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw=="
+ },
+ "runtime.any.System.IO": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ=="
+ },
+ "runtime.any.System.Reflection": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ=="
+ },
+ "runtime.any.System.Reflection.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "cPhT+Vqu52+cQQrDai/V91gubXUnDKNRvlBnH+hOgtGyHdC17aQIU64EaehwAQymd7kJA5rSrVRNfDYrbhnzyA=="
+ },
+ "runtime.any.System.Reflection.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg=="
+ },
+ "runtime.any.System.Resources.ResourceManager": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ=="
+ },
+ "runtime.any.System.Runtime": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==",
+ "dependencies": {
+ "System.Private.Uri": "4.3.0"
+ }
+ },
+ "runtime.any.System.Runtime.Handles": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ=="
+ },
+ "runtime.any.System.Runtime.InteropServices": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw=="
+ },
+ "runtime.any.System.Text.Encoding": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ=="
+ },
+ "runtime.any.System.Threading.Tasks": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w=="
+ },
+ "runtime.linux-arm.runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "75q52H7CSpgIoIDwXb9o833EvBZIXJ0mdPhz1E6jSisEXUBlSCPalC29cj3EXsjpuDwr0dj1LRXZepIQH/oL4Q=="
+ },
+ "runtime.linux-arm64.runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "xn2bMThmXr3CsvOYmS8ex2Yz1xo+kcnhVg2iVhS9PlmqjZPAkrEo/I40wjrBZH/tU4kvH0s1AE8opAvQ3KIS8g=="
+ },
+ "runtime.linux-x64.runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "16nbNXwv0sC+gLGIuecri0skjuh6R1maIJggsaNP7MQBcbVcEfWFUOkEnsnvoLEjy0XerfibuRptfQ8AmdIcWA=="
+ },
+ "runtime.osx-arm64.runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "fXG12NodG1QrCdoaeSQ1gVnk/koi4WYY4jZtarMkZeQMyReBm1nZlSRoPnUjLr2ZR36TiMjpcGnQfxymieUe7w=="
+ },
+ "runtime.osx-x64.runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "/As+zPY49+dSUXkh+fTUbyPhqrdGN//evLxo4Vue88pfh1BHZgF7q4kMblTkxYvwR6Vi03zSYxysSFktO8/SDQ=="
+ },
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": {
+ "type": "Transitive",
+ "resolved": "4.4.0",
+ "contentHash": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg=="
+ },
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": {
+ "type": "Transitive",
+ "resolved": "4.4.0",
+ "contentHash": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ=="
+ },
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": {
+ "type": "Transitive",
+ "resolved": "4.4.0",
+ "contentHash": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA=="
+ },
+ "runtime.win.System.Diagnostics.Debug": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "hHHP0WCStene2jjeYcuDkETozUYF/3sHVRHAEOgS3L15hlip24ssqCTnJC28Z03Wpo078oMcJd0H4egD2aJI8g=="
+ },
+ "runtime.win.System.Runtime.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "RkgHVhUPvzZxuUubiZe8yr/6CypRVXj0VBzaR8hsqQ8f+rUo7e4PWrHTLOCjd8fBMGWCrY//fi7Ku3qXD7oHRw==",
+ "dependencies": {
+ "System.Private.Uri": "4.3.0"
+ }
+ },
+ "runtime.win7-x86.Microsoft.NETCore.Windows.ApiSets": {
+ "type": "Transitive",
+ "resolved": "1.0.1",
+ "contentHash": "bPLbJzMJpczV+EMU4CK2Hb+DJrX3C93dXPMe+JsArqFTnJ9ou+xAa3lHt2qbWvzVVR1OMpgQUpB7aug6PcRPbA=="
+ },
+ "runtime.win7.System.Private.Uri": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "Q+IBgaPYicSQs2tBlmXqbS25c/JLIthWrgrpMwxKSOobW/OqIMVFruUGfuaz4QABVzV8iKdCAbN7APY7Tclbnw=="
+ },
+ "System.Collections": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Collections": "4.3.0"
+ }
+ },
+ "System.Data.Odbc": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "pnZjwe0Qwr1Rnp7NExd5zz4YwXJrYuAbWNKjEQpTzCEg6f/L5DYJS7w3hG3vgSj1t/r79UL390YzXIklf1VuQQ==",
+ "dependencies": {
+ "System.Text.Encoding.CodePages": "6.0.0"
+ }
+ },
+ "System.Data.OleDb": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "LQ8PjTIF1LtrrlGiyiTVjAkQtTWKm9GSNnygIlWjhN9y88s7xhy6DUNDDkmQQ9f6ex7mA4k0Tl97lz/CklaiLg==",
+ "dependencies": {
+ "System.Configuration.ConfigurationManager": "6.0.0",
+ "System.Diagnostics.PerformanceCounter": "6.0.0"
+ }
+ },
+ "System.Data.SqlClient": {
+ "type": "Transitive",
+ "resolved": "4.8.3",
+ "contentHash": "yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==",
+ "dependencies": {
+ "Microsoft.Win32.Registry": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0",
+ "runtime.native.System.Data.SqlClient.sni": "4.7.0"
+ }
+ },
+ "System.Diagnostics.Debug": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.win.System.Diagnostics.Debug": "4.3.0"
+ }
+ },
+ "System.Diagnostics.EventLog": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw=="
+ },
+ "System.Diagnostics.PerformanceCounter": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "gbeE5tNp/oB7O8kTTLh3wPPJCxpNOphXPTWVs1BsYuFOYapFijWuh0LYw1qnDo4gwDUYPXOmpTIhvtxisGsYOQ==",
+ "dependencies": {
+ "System.Configuration.ConfigurationManager": "6.0.0"
+ }
+ },
+ "System.DirectoryServices": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "kp/Op0nxDVGlElDKh8TsXO0GKXftQgAB6sJk0wUetZK1Rr0Pbd86Tn7AllLLlROFZa4BTl/LVHakljtGELFzCg==",
+ "dependencies": {
+ "System.Security.AccessControl": "6.0.0",
+ "System.Security.Permissions": "6.0.0"
+ }
+ },
+ "System.DirectoryServices.AccountManagement": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "2iKkY6VC4WX6H13N8WhH2SRUfWCwg2KZR5w9JIS9cw9N8cZhT7VXxHX0L6OX6Po419aSu2LWrJE9tu6b+cUnPA==",
+ "dependencies": {
+ "System.Configuration.ConfigurationManager": "6.0.0",
+ "System.DirectoryServices": "6.0.0",
+ "System.DirectoryServices.Protocols": "6.0.0",
+ "System.Security.AccessControl": "6.0.0"
+ }
+ },
+ "System.DirectoryServices.Protocols": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "++WKU7HQPo/FJdhywWw+q2lLjcVAGVw5XLH9kRCV+4DvkhVAcHCksh0ezIqwNROmaU9LMJN0d/LAdeWXu3pi6Q=="
+ },
+ "System.Drawing.Common": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
+ "dependencies": {
+ "Microsoft.Win32.SystemEvents": "6.0.0"
+ }
+ },
+ "System.Globalization": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Globalization": "4.3.0"
+ }
+ },
+ "System.IO": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.any.System.IO": "4.3.0"
+ }
+ },
+ "System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "dRyGI7fUESar5ZLIpiBOaaNLW7YyOBGftjj5Of+xcduC/Rjl7RjhEnWDvvNBmHuF3d0tdXoqdVI/yrVA8f00XA==",
+ "dependencies": {
+ "runtime.native.System.IO.Ports": "6.0.0"
+ }
+ },
+ "System.Management": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "sHsESYMmPDhQuOC66h6AEOs/XowzKsbT9srMbX71TCXP58hkpn1BqBjdmKj1+DCA/WlBETX1K5WjQHwmV0Txrg==",
+ "dependencies": {
+ "System.CodeDom": "6.0.0"
+ }
+ },
+ "System.Management.Automation": {
+ "type": "Transitive",
+ "resolved": "7.2.7",
+ "contentHash": "7UOl6eNIjWbZinKxkbtIY6s2joCCbN+2uO114SZpt1k8rEUUyX8tSsC5W9EVizYuSJiGpyyxw30l3wiJoJvKmA==",
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "2.21.0",
+ "Microsoft.Management.Infrastructure": "2.0.0",
+ "Microsoft.PowerShell.CoreCLR.Eventing": "7.2.7",
+ "Microsoft.PowerShell.Native": "7.2.0",
+ "Microsoft.Win32.Registry.AccessControl": "6.0.0",
+ "Newtonsoft.Json": "13.0.1",
+ "System.Configuration.ConfigurationManager": "6.0.1",
+ "System.DirectoryServices": "6.0.0",
+ "System.Management": "6.0.0",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.Security.AccessControl": "6.0.0",
+ "System.Security.Cryptography.Pkcs": "6.0.1",
+ "System.Security.Permissions": "6.0.0",
+ "System.Text.Encoding.CodePages": "6.0.0"
+ }
+ },
+ "System.Net.Http.WinHttpHandler": {
+ "type": "Transitive",
+ "resolved": "6.0.1",
+ "contentHash": "zdSpn2+EPBEXmsopvUjkpvbXNN53dqL7BifCKBJ5M+A/P3JEiCL/guuPwuiazu+RzCuEX/NJLnoXhllaf3vBxg=="
+ },
+ "System.Private.Uri": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "runtime.win7.System.Private.Uri": "4.3.0"
+ }
+ },
+ "System.Reflection": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Reflection": "4.3.0"
+ }
+ },
+ "System.Reflection.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Reflection.Extensions": "4.3.0"
+ }
+ },
+ "System.Reflection.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Reflection.Primitives": "4.3.0"
+ }
+ },
+ "System.Resources.ResourceManager": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Resources.ResourceManager": "4.3.0"
+ }
+ },
+ "System.Runtime": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "runtime.any.System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.Caching": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==",
+ "dependencies": {
+ "System.Configuration.ConfigurationManager": "6.0.0"
+ }
+ },
+ "System.Runtime.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.win.System.Runtime.Extensions": "4.3.0"
+ }
+ },
+ "System.Runtime.Handles": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Runtime.Handles": "4.3.0"
+ }
+ },
+ "System.Runtime.InteropServices": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "runtime.any.System.Runtime.InteropServices": "4.3.0"
+ }
+ },
+ "System.Security.AccessControl": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ=="
+ },
+ "System.Security.Cryptography.Pkcs": {
+ "type": "Transitive",
+ "resolved": "6.0.1",
+ "contentHash": "ynmbW2GjIGg9K1wXmVIRs4IlyDolf0JXNpzFQ8JCVgwM+myUC2JeUggl2PwQig2PNVMegKmN1aAx7WPQ8tI3vA==",
+ "dependencies": {
+ "System.Formats.Asn1": "6.0.0"
+ }
+ },
+ "System.Security.Cryptography.ProtectedData": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ=="
+ },
+ "System.Security.Principal.Windows": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA=="
+ },
+ "System.ServiceProcess.ServiceController": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "qMBvG8ZFbkXoe0Z5/D7FAAadfPkH2v7vSuh2xsLf3U6jNoejpIdeV18A0htiASsLK1CCAc/p59kaLXlt2yB1gw==",
+ "dependencies": {
+ "System.Diagnostics.EventLog": "6.0.0"
+ }
+ },
+ "System.Speech": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "GQovERMrNP0Vbtgk8LzH4PlFS6lqHgsL9WkUmv8Kkxa0m0vNakitytpHZlfJ9WR7n9WKLXh68nn2kyL9mflnLg=="
+ },
+ "System.Text.Encoding": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.Text.Encoding.CodePages": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "System.Text.Encodings.Web": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "System.Threading.AccessControl": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "2258mqWesMch/xCpcnjJBgJP33yhpZLGLbEOm01qwq0efG4b+NG8c9sxYOWNxmDQ82swXrnQRl1Yp2wC1NrfZA==",
+ "dependencies": {
+ "System.Security.AccessControl": "6.0.0"
+ }
+ },
+ "System.Threading.Tasks": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Windows.Extensions": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
+ "dependencies": {
+ "System.Drawing.Common": "6.0.0"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/PowerShellProTools.Host.Tests/PowerShellProTools.Host.Tests.csproj b/PowerShellProTools.Host.Tests/PowerShellProTools.Host.Tests.csproj
index 5e9ebc6..2cc8f33 100644
--- a/PowerShellProTools.Host.Tests/PowerShellProTools.Host.Tests.csproj
+++ b/PowerShellProTools.Host.Tests/PowerShellProTools.Host.Tests.csproj
@@ -2,7 +2,7 @@
net6.0
-
+ true
false
diff --git a/PowerShellProTools.Host.Tests/packages.lock.json b/PowerShellProTools.Host.Tests/packages.lock.json
new file mode 100644
index 0000000..9d70d3a
--- /dev/null
+++ b/PowerShellProTools.Host.Tests/packages.lock.json
@@ -0,0 +1,1983 @@
+{
+ "version": 1,
+ "dependencies": {
+ "net6.0": {
+ "coverlet.collector": {
+ "type": "Direct",
+ "requested": "[1.3.0, )",
+ "resolved": "1.3.0",
+ "contentHash": "t8pnf5SX2ya0RX4vjoxsbhDMQCZJcpPun2neHKJ4FouMmObylo25FvoOydvf3Bl+l+IzWw7u2vjEeCBHnleB9g=="
+ },
+ "Microsoft.NET.Test.Sdk": {
+ "type": "Direct",
+ "requested": "[16.7.1, )",
+ "resolved": "16.7.1",
+ "contentHash": "7T3XYuLT2CRMZXwlp8p4cEEf6y7VifxTdKwYNzCYp31CN4iyrcDKneIJvNTo0YVnTxJn+CSlGVlUnZHUlAwt9A==",
+ "dependencies": {
+ "Microsoft.CodeCoverage": "16.7.1",
+ "Microsoft.TestPlatform.TestHost": "16.7.1"
+ }
+ },
+ "Microsoft.PowerShell.SDK": {
+ "type": "Direct",
+ "requested": "[7.2.2, )",
+ "resolved": "7.2.2",
+ "contentHash": "kAOTZtUnRbkm8/bIu79XFUTHRdDY9leJ1APmMUlyhXqyH/AeR3pWxeb6/ale0O6ZaxiW9g9HXi3yIvNQMTBQbg==",
+ "dependencies": {
+ "Microsoft.Management.Infrastructure.CimCmdlets": "7.2.2",
+ "Microsoft.NETCore.Windows.ApiSets": "1.0.1",
+ "Microsoft.PowerShell.Commands.Diagnostics": "7.2.2",
+ "Microsoft.PowerShell.Commands.Management": "7.2.2",
+ "Microsoft.PowerShell.Commands.Utility": "7.2.2",
+ "Microsoft.PowerShell.ConsoleHost": "7.2.2",
+ "Microsoft.PowerShell.Security": "7.2.2",
+ "Microsoft.WSMan.Management": "7.2.2",
+ "Microsoft.Windows.Compatibility": "6.0.0",
+ "System.Data.SqlClient": "4.8.3",
+ "System.IO.Packaging": "6.0.0",
+ "System.Management.Automation": "7.2.2",
+ "System.Net.Http.WinHttpHandler": "6.0.0",
+ "System.Private.ServiceModel": "4.9.0",
+ "System.ServiceModel.Duplex": "4.9.0",
+ "System.ServiceModel.Http": "4.9.0",
+ "System.ServiceModel.NetTcp": "4.9.0",
+ "System.ServiceModel.Primitives": "4.9.0",
+ "System.ServiceModel.Security": "4.9.0",
+ "System.Text.Encodings.Web": "6.0.0"
+ }
+ },
+ "NSubstitute": {
+ "type": "Direct",
+ "requested": "[4.2.1, )",
+ "resolved": "4.2.1",
+ "contentHash": "CqQuOU06ftAKrTV7Op/s0hdSII4RP6SNjP/XT1+2oEC6EqwYLXOfek/p+SEuHgaH8WNwEHWIYjsrUV9oSOIOXw==",
+ "dependencies": {
+ "Castle.Core": "4.4.0",
+ "System.Threading.Tasks.Extensions": "4.3.0"
+ }
+ },
+ "xunit": {
+ "type": "Direct",
+ "requested": "[2.4.1, )",
+ "resolved": "2.4.1",
+ "contentHash": "XNR3Yz9QTtec16O0aKcO6+baVNpXmOnPUxDkCY97J+8krUYxPvXT1szYYEUdKk4sB8GOI2YbAjRIOm8ZnXRfzQ==",
+ "dependencies": {
+ "xunit.analyzers": "0.10.0",
+ "xunit.assert": "[2.4.1]",
+ "xunit.core": "[2.4.1]"
+ }
+ },
+ "xunit.runner.visualstudio": {
+ "type": "Direct",
+ "requested": "[2.4.3, )",
+ "resolved": "2.4.3",
+ "contentHash": "kZZSmOmKA8OBlAJaquPXnJJLM9RwQ27H7BMVqfMLUcTi9xHinWGJiWksa3D4NEtz0wZ/nxd2mogObvBgJKCRhQ=="
+ },
+ "Castle.Core": {
+ "type": "Transitive",
+ "resolved": "4.4.0",
+ "contentHash": "b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1",
+ "System.Collections.Specialized": "4.3.0",
+ "System.ComponentModel": "4.3.0",
+ "System.ComponentModel.TypeConverter": "4.3.0",
+ "System.Diagnostics.TraceSource": "4.3.0",
+ "System.Dynamic.Runtime": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Xml.XmlDocument": "4.3.0"
+ }
+ },
+ "ICSharpCode.Decompiler": {
+ "type": "Transitive",
+ "resolved": "7.0.0.6488",
+ "contentHash": "1enxZGgiZgnka6VcHpBxkcuuNo462+YVPzRYUfe2/eF3tcDuLk9/yKEfQnXC265sRKnDhks+2Xhk0PlyagM5EA==",
+ "dependencies": {
+ "System.Collections.Immutable": "5.0.0",
+ "System.Reflection.Metadata": "5.0.0"
+ }
+ },
+ "Markdig.Signed": {
+ "type": "Transitive",
+ "resolved": "0.22.0",
+ "contentHash": "7x3FqS3wk8DXyQLuflD47tBs6+ly6k4VtoDCzlDWfy7XHVsBIi7eGYEM15sPAcwSCQjOksNWE8U5r2v0Sk5FzQ=="
+ },
+ "Microsoft.ApplicationInsights": {
+ "type": "Transitive",
+ "resolved": "2.18.0",
+ "contentHash": "milJB3VOCoC4EWmpE/Co9cOJ7SV6Ji6VqV4Rf5UlqL9QCg+rAX1y+3Y+j1Gu/j4IExYiPq7SEKqkP2BFnEu6Vw==",
+ "dependencies": {
+ "System.Diagnostics.DiagnosticSource": "5.0.0"
+ }
+ },
+ "Microsoft.Bcl.AsyncInterfaces": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ=="
+ },
+ "Microsoft.CodeAnalysis.Analyzers": {
+ "type": "Transitive",
+ "resolved": "3.3.2",
+ "contentHash": "7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA=="
+ },
+ "Microsoft.CodeAnalysis.Common": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "SMREwaVD5SzatlWhh9aahQAtSWdb63NcE//f+bQzgHSECU6xtDtaxk0kwV+asdFfr6HtW38UeO6jvqdfzudg3w==",
+ "dependencies": {
+ "Microsoft.CodeAnalysis.Analyzers": "3.3.2",
+ "System.Collections.Immutable": "5.0.0",
+ "System.Memory": "4.5.4",
+ "System.Reflection.Metadata": "5.0.0",
+ "System.Runtime.CompilerServices.Unsafe": "5.0.0",
+ "System.Text.Encoding.CodePages": "4.5.1",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ }
+ },
+ "Microsoft.CodeAnalysis.CSharp": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "Q9RxxydPpUElj/x1/qykDTUGsRoKbJG8H5XUSeMGmMu54fBiuX1xyanom9caa1oQfh5JIW1BgLxobSaWs4WyHQ==",
+ "dependencies": {
+ "Microsoft.CodeAnalysis.Common": "[4.0.1]"
+ }
+ },
+ "Microsoft.CodeCoverage": {
+ "type": "Transitive",
+ "resolved": "16.7.1",
+ "contentHash": "PhSppbk+kvAyD9yGJIcBRJ/XYwY+21YK88l22PGTtixaxNdjnx1idVKh88LCGwKaTL8HhlnQ41VmBiBdZJzIQw=="
+ },
+ "Microsoft.CSharp": {
+ "type": "Transitive",
+ "resolved": "4.4.1",
+ "contentHash": "A5hI3gk6WpcBI0QGZY6/d5CCaYUxJgi7iENn1uYEng+Olo8RfI5ReGVkjXjeu3VR3srLvVYREATXa2M0X7FYJA=="
+ },
+ "Microsoft.Extensions.ObjectPool": {
+ "type": "Transitive",
+ "resolved": "5.0.10",
+ "contentHash": "pp9tbGqIhdEXL6Q1yJl+zevAJSq4BsxqhS1GXzBvEsEz9DDNu9GLNzgUy2xyFc4YjB4m4Ff2YEWTnvQvVYdkvQ=="
+ },
+ "Microsoft.Management.Infrastructure": {
+ "type": "Transitive",
+ "resolved": "2.0.0",
+ "contentHash": "IaKZRNBBv3sdrmBWd+aqwHq8cVHk/3WgWFAN/dt40MRY9rbtHiDfTTmaEN0tGTmQqGCGDo/ncntA8MvFMvcsRw==",
+ "dependencies": {
+ "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0",
+ "Microsoft.Management.Infrastructure.Runtime.Win": "2.0.0"
+ }
+ },
+ "Microsoft.Management.Infrastructure.CimCmdlets": {
+ "type": "Transitive",
+ "resolved": "7.2.2",
+ "contentHash": "l1NklpK8N2t9AupDML8kO0O2lRxZrhXrGkIWYZSqyd/xCjqlEzerBUaQ5HRJiEkWBfFlsBYi/QWntEEbWKncQw==",
+ "dependencies": {
+ "System.Management.Automation": "7.2.2"
+ }
+ },
+ "Microsoft.Management.Infrastructure.Runtime.Unix": {
+ "type": "Transitive",
+ "resolved": "2.0.0",
+ "contentHash": "p0lslMX5bdWLxO2P7ao+rjAMOB0LEwPYpzvdCQ2OEYgX2NxFpQ8ILvqPGnYlTAb53rT8gu5DyIol1HboHFYfxQ=="
+ },
+ "Microsoft.Management.Infrastructure.Runtime.Win": {
+ "type": "Transitive",
+ "resolved": "2.0.0",
+ "contentHash": "vjBWQeDOjgernkrOdbEgn7M70SF7hof7ORdKPSlL06Uc15+oYdth5dZju9KsgUoti/cwnkZTiwtDx/lRtay0sA=="
+ },
+ "Microsoft.NETCore.Platforms": {
+ "type": "Transitive",
+ "resolved": "2.0.0",
+ "contentHash": "VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ=="
+ },
+ "Microsoft.NETCore.Targets": {
+ "type": "Transitive",
+ "resolved": "1.1.0",
+ "contentHash": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg=="
+ },
+ "Microsoft.NETCore.Windows.ApiSets": {
+ "type": "Transitive",
+ "resolved": "1.0.1",
+ "contentHash": "SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw=="
+ },
+ "Microsoft.PowerShell.Commands.Diagnostics": {
+ "type": "Transitive",
+ "resolved": "7.2.2",
+ "contentHash": "drfAmuqA6lPy7CuGfUB0rOnUdyozhp46Xx0H/qFnkD+at638NhOsbZm+cH7uu7PLW6bf3PJlQH8qoShgWfSW7g==",
+ "dependencies": {
+ "System.Management.Automation": "7.2.2"
+ }
+ },
+ "Microsoft.PowerShell.Commands.Management": {
+ "type": "Transitive",
+ "resolved": "7.2.2",
+ "contentHash": "G+9bLZy2NuUx8Dhkbg6NxxWhIRb1yHysfHsQ32pjsk4XdqKBvnFcIusV9NXP75LMOMoSNkeD8yEMyinzwuyNog==",
+ "dependencies": {
+ "Microsoft.PowerShell.Security": "7.2.2",
+ "System.ServiceProcess.ServiceController": "6.0.0"
+ }
+ },
+ "Microsoft.PowerShell.Commands.Utility": {
+ "type": "Transitive",
+ "resolved": "7.2.2",
+ "contentHash": "4HBzi39JUFaBe7UR2GovzYZYpB4PdqeJkB6P+QGRO01xEWAK8Vi0pOT2DaEcm9+cRoFS+EyAGTZW9smIDuxHLQ==",
+ "dependencies": {
+ "Microsoft.CodeAnalysis.CSharp": "4.0.1",
+ "Microsoft.PowerShell.MarkdownRender": "7.2.0",
+ "NJsonSchema": "10.5.2",
+ "System.Drawing.Common": "6.0.0",
+ "System.Management.Automation": "7.2.2",
+ "System.Threading.AccessControl": "6.0.0"
+ }
+ },
+ "Microsoft.PowerShell.ConsoleHost": {
+ "type": "Transitive",
+ "resolved": "7.2.2",
+ "contentHash": "wFFxiZNpLmQPkRQVo02r7gVhlBSRSVtBTTNlN2z3VJWVmYQIIn5qmrU4MJm5g4kz76IkXg44x68A4ije8JVbeQ==",
+ "dependencies": {
+ "System.Management.Automation": "7.2.2"
+ }
+ },
+ "Microsoft.PowerShell.CoreCLR.Eventing": {
+ "type": "Transitive",
+ "resolved": "7.2.2",
+ "contentHash": "ccRbYMbO4+Ilyi4C0Kqu1UqV3wdrgRtY3PQZqwKS0mx++Zsjg5F9jyrOnPDlwx1cMqxLQtHCOdCNuf39h2oAJA==",
+ "dependencies": {
+ "System.Diagnostics.EventLog": "6.0.0"
+ }
+ },
+ "Microsoft.PowerShell.MarkdownRender": {
+ "type": "Transitive",
+ "resolved": "7.2.0",
+ "contentHash": "1vqDtdX9RCGsMWCbzp0CIxZW3slWgq8mYHDfUlUKzmkV57fMAn4m0Gy2OtsqopZzrOiVJci+QCWx5FB7BVpMlw==",
+ "dependencies": {
+ "Markdig.Signed": "0.22.0"
+ }
+ },
+ "Microsoft.PowerShell.Native": {
+ "type": "Transitive",
+ "resolved": "7.2.0",
+ "contentHash": "TauOu3bYr4DRh9HpH3+fgaL+y2GY47KLsgU6qX1NDLqHshdEaCCjiF0N5sDEgCEhSb38FwWhpdFTIQvoOcYCXQ=="
+ },
+ "Microsoft.PowerShell.Security": {
+ "type": "Transitive",
+ "resolved": "7.2.2",
+ "contentHash": "2mgbRIyDm05vHNVEaZRPu+SeZH36CBAdVw+NIoi9tEf9cXS99maBvkM1iUuYUmyYQmOwJw7DgIVo7CdHWzlIRw==",
+ "dependencies": {
+ "System.Management.Automation": "7.2.2"
+ }
+ },
+ "Microsoft.TestPlatform.ObjectModel": {
+ "type": "Transitive",
+ "resolved": "16.7.1",
+ "contentHash": "FL+VpAC/nCCzj80MwX6L8gJD06u2m1SKcQQLAymDLFqNtgtI9h3J5n0mVN+s18qcMzybsmO9GK7rMuHYx11KMg==",
+ "dependencies": {
+ "NuGet.Frameworks": "5.0.0"
+ }
+ },
+ "Microsoft.TestPlatform.TestHost": {
+ "type": "Transitive",
+ "resolved": "16.7.1",
+ "contentHash": "mv7MnBDtqwQAjoH+AphE+Tu0dsF6x/c7Zs8umkb2McbvNALJdfBuWJQbiXGWqhNq7k8eMmnkNO6klJz4pkgekw==",
+ "dependencies": {
+ "Microsoft.TestPlatform.ObjectModel": "16.7.1",
+ "Newtonsoft.Json": "9.0.1"
+ }
+ },
+ "Microsoft.Win32.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "Microsoft.Win32.Registry": {
+ "type": "Transitive",
+ "resolved": "4.7.0",
+ "contentHash": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
+ "dependencies": {
+ "System.Security.AccessControl": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ }
+ },
+ "Microsoft.Win32.Registry.AccessControl": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "UoE+eeuBKL+GFHxHV3FjHlY5K8Wr/IR7Ee/a2oDNqFodF1iMqyt5hIs0U9Z217AbWrHrNle4750kD03hv1IMZw==",
+ "dependencies": {
+ "System.Security.AccessControl": "6.0.0"
+ }
+ },
+ "Microsoft.Win32.SystemEvents": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A=="
+ },
+ "Microsoft.Windows.Compatibility": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "9esuK5JqnjkDgO9/AHesyJSG0aKwpfLVzTw6nIGYhqE91VLxZyv3HKulNoPVy/NOuyAaf1kE4FKtdZDzdd/SLw==",
+ "dependencies": {
+ "Microsoft.Win32.Registry.AccessControl": "6.0.0",
+ "Microsoft.Win32.SystemEvents": "6.0.0",
+ "System.CodeDom": "6.0.0",
+ "System.ComponentModel.Composition": "6.0.0",
+ "System.ComponentModel.Composition.Registration": "6.0.0",
+ "System.Configuration.ConfigurationManager": "6.0.0",
+ "System.Data.Odbc": "6.0.0",
+ "System.Data.OleDb": "6.0.0",
+ "System.Data.SqlClient": "4.8.3",
+ "System.Diagnostics.EventLog": "6.0.0",
+ "System.Diagnostics.PerformanceCounter": "6.0.0",
+ "System.DirectoryServices": "6.0.0",
+ "System.DirectoryServices.AccountManagement": "6.0.0",
+ "System.DirectoryServices.Protocols": "6.0.0",
+ "System.Drawing.Common": "6.0.0",
+ "System.IO.Packaging": "6.0.0",
+ "System.IO.Ports": "6.0.0",
+ "System.Management": "6.0.0",
+ "System.Reflection.Context": "6.0.0",
+ "System.Runtime.Caching": "6.0.0",
+ "System.Security.AccessControl": "6.0.0",
+ "System.Security.Cryptography.Pkcs": "6.0.0",
+ "System.Security.Cryptography.ProtectedData": "6.0.0",
+ "System.Security.Cryptography.Xml": "6.0.0",
+ "System.Security.Permissions": "6.0.0",
+ "System.ServiceModel.Duplex": "4.9.0",
+ "System.ServiceModel.Http": "4.9.0",
+ "System.ServiceModel.NetTcp": "4.9.0",
+ "System.ServiceModel.Primitives": "4.9.0",
+ "System.ServiceModel.Security": "4.9.0",
+ "System.ServiceModel.Syndication": "6.0.0",
+ "System.ServiceProcess.ServiceController": "6.0.0",
+ "System.Speech": "6.0.0",
+ "System.Text.Encoding.CodePages": "6.0.0",
+ "System.Threading.AccessControl": "6.0.0",
+ "System.Web.Services.Description": "4.9.0"
+ }
+ },
+ "Microsoft.WSMan.Management": {
+ "type": "Transitive",
+ "resolved": "7.2.2",
+ "contentHash": "4wRtyldf4FzIIxGF2COFDVlZfayli57iKUmHI7nPE82b6qiSbS3AZGZtcmpAJlusZFIJ4ABiy+2jiOQjc7xIoA==",
+ "dependencies": {
+ "Microsoft.WSMan.Runtime": "7.2.2",
+ "System.Management.Automation": "7.2.2",
+ "System.ServiceProcess.ServiceController": "6.0.0"
+ }
+ },
+ "Microsoft.WSMan.Runtime": {
+ "type": "Transitive",
+ "resolved": "7.2.2",
+ "contentHash": "zbrXm3Sn1tvMxnYDRzVfhtlYwW1KzYiXdXAhPLcWXhVQnt8aWhC0R/8/1dQF3d0LVwsZJ8+PxsTbkV/wz+g2qQ=="
+ },
+ "morelinq": {
+ "type": "Transitive",
+ "resolved": "3.3.2",
+ "contentHash": "MQc8GppZJLmjvcpEdf3EkC6ovsp7gRWt2e5mC7dcIOrgwSc+yjFd3JQ0iRqr3XrUT6rb/phv0IkEmBtbfVA7AQ=="
+ },
+ "Namotion.Reflection": {
+ "type": "Transitive",
+ "resolved": "2.0.3",
+ "contentHash": "tZCe/UrSBAMW8A4TjD/SlpRHaWjnHlSWdyRuOXhf3yrE0OX+4fXg0uzj7mwFDclXznfCGRAZbP+akPt4G/mclw==",
+ "dependencies": {
+ "Microsoft.CSharp": "4.3.0"
+ }
+ },
+ "NETStandard.Library": {
+ "type": "Transitive",
+ "resolved": "1.6.1",
+ "contentHash": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.AppContext": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Console": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Calendars": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.IO.Compression.ZipFile": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Net.Http": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Net.Sockets": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Timer": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XDocument": "4.3.0"
+ }
+ },
+ "Newtonsoft.Json": {
+ "type": "Transitive",
+ "resolved": "13.0.1",
+ "contentHash": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A=="
+ },
+ "NJsonSchema": {
+ "type": "Transitive",
+ "resolved": "10.5.2",
+ "contentHash": "Vr2CbySuXh74TQFU0rGJYZOS492xOE64cPXdB7a0cfXJb/N45Bf4v7sd4LOla0jNhgc5V/B61Ko3qecriL195w==",
+ "dependencies": {
+ "Namotion.Reflection": "2.0.3",
+ "Newtonsoft.Json": "9.0.1"
+ }
+ },
+ "NuGet.Frameworks": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "c5JVjuVAm4f7E9Vj+v09Z9s2ZsqFDjBpcsyS3M9xRo0bEdm/LVZSzLxxNvfvAwRiiE8nwe1h2G4OwiwlzFKXlA=="
+ },
+ "PowerShellStandard.Library": {
+ "type": "Transitive",
+ "resolved": "5.1.0",
+ "contentHash": "iYaRvQsM1fow9h3uEmio+2m2VXfulgI16AYHaTZ8Sf7erGe27Qc8w/h6QL5UPuwv1aXR40QfzMEwcCeiYJp2cw=="
+ },
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q=="
+ },
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA=="
+ },
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw=="
+ },
+ "runtime.linux-arm.runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "75q52H7CSpgIoIDwXb9o833EvBZIXJ0mdPhz1E6jSisEXUBlSCPalC29cj3EXsjpuDwr0dj1LRXZepIQH/oL4Q=="
+ },
+ "runtime.linux-arm64.runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "xn2bMThmXr3CsvOYmS8ex2Yz1xo+kcnhVg2iVhS9PlmqjZPAkrEo/I40wjrBZH/tU4kvH0s1AE8opAvQ3KIS8g=="
+ },
+ "runtime.linux-x64.runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "16nbNXwv0sC+gLGIuecri0skjuh6R1maIJggsaNP7MQBcbVcEfWFUOkEnsnvoLEjy0XerfibuRptfQ8AmdIcWA=="
+ },
+ "runtime.native.System": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "runtime.native.System.Data.SqlClient.sni": {
+ "type": "Transitive",
+ "resolved": "4.7.0",
+ "contentHash": "9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==",
+ "dependencies": {
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
+ }
+ },
+ "runtime.native.System.IO.Compression": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "KaaXlpOcuZjMdmyF5wzzx3b+PRKIzt6A5Ax9dKenPDQbVJAFpev+casD0BIig1pBcbs3zx7CqWemzUJKAeHdSQ==",
+ "dependencies": {
+ "runtime.linux-arm.runtime.native.System.IO.Ports": "6.0.0",
+ "runtime.linux-arm64.runtime.native.System.IO.Ports": "6.0.0",
+ "runtime.linux-x64.runtime.native.System.IO.Ports": "6.0.0",
+ "runtime.osx-arm64.runtime.native.System.IO.Ports": "6.0.0",
+ "runtime.osx-x64.runtime.native.System.IO.Ports": "6.0.0"
+ }
+ },
+ "runtime.native.System.Net.Http": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "runtime.native.System.Security.Cryptography.Apple": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
+ "dependencies": {
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
+ }
+ },
+ "runtime.native.System.Security.Cryptography.OpenSsl": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
+ "dependencies": {
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A=="
+ },
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ=="
+ },
+ "runtime.osx-arm64.runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "fXG12NodG1QrCdoaeSQ1gVnk/koi4WYY4jZtarMkZeQMyReBm1nZlSRoPnUjLr2ZR36TiMjpcGnQfxymieUe7w=="
+ },
+ "runtime.osx-x64.runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "/As+zPY49+dSUXkh+fTUbyPhqrdGN//evLxo4Vue88pfh1BHZgF7q4kMblTkxYvwR6Vi03zSYxysSFktO8/SDQ=="
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ=="
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g=="
+ },
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg=="
+ },
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ=="
+ },
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A=="
+ },
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg=="
+ },
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": {
+ "type": "Transitive",
+ "resolved": "4.4.0",
+ "contentHash": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg=="
+ },
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": {
+ "type": "Transitive",
+ "resolved": "4.4.0",
+ "contentHash": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ=="
+ },
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": {
+ "type": "Transitive",
+ "resolved": "4.4.0",
+ "contentHash": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA=="
+ },
+ "Serilog": {
+ "type": "Transitive",
+ "resolved": "2.10.0",
+ "contentHash": "+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA=="
+ },
+ "Serilog.Sinks.File": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==",
+ "dependencies": {
+ "Serilog": "2.10.0"
+ }
+ },
+ "StrongNamer": {
+ "type": "Transitive",
+ "resolved": "0.2.5",
+ "contentHash": "1IWl8gYnsTC6NXHz63iDpXL8r0y5x0M/Cnq/Ju5uM17gTOQYSeclMkgQsvmGglJEqAwVxayY1sIUR3bb2MAy5Q=="
+ },
+ "System.AppContext": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Buffers": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.CodeDom": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA=="
+ },
+ "System.Collections": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Collections.Concurrent": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Collections.Immutable": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g=="
+ },
+ "System.Collections.NonGeneric": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Collections.Specialized": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
+ "dependencies": {
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.CommandLine": {
+ "type": "Transitive",
+ "resolved": "2.0.0-beta1.20303.1",
+ "contentHash": "2CknrYJXyL+tV523KL3Sm9UBq/ZaAXwToU+d+ScqTZOuaVmGpeAOXOHxkBYeuabTBuhWAij/Quv4dpeqSzHsxA==",
+ "dependencies": {
+ "Microsoft.CSharp": "4.4.1",
+ "system.memory": "4.5.4"
+ }
+ },
+ "System.CommandLine.DragonFruit": {
+ "type": "Transitive",
+ "resolved": "0.3.0-alpha.20303.1",
+ "contentHash": "7aTJ6e3TYpqIDG1IpeSOWaIoCRcyTZ6AD/olb/Ow/7CB5OaEnqXI8aDXnD3lVqXqQsVrJ+OZHfeS+udZHPCD1Q==",
+ "dependencies": {
+ "System.CommandLine": "2.0.0-beta1.20303.1",
+ "System.CommandLine.Rendering": "0.3.0-alpha.20303.1"
+ }
+ },
+ "System.CommandLine.Rendering": {
+ "type": "Transitive",
+ "resolved": "0.3.0-alpha.20303.1",
+ "contentHash": "Dx4UQO+kjcrKE5Q9Rz0/rgXhhXrzIXuWW26ZmQw4wEOW7n6yHyavgT+uJ7dbW/4gA/KdzCayyr+umDEu//u5pg==",
+ "dependencies": {
+ "System.CommandLine": "2.0.0-beta1.20303.1"
+ }
+ },
+ "System.ComponentModel": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.ComponentModel.Composition": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "60Qv+F7oxomOjJeTDA5Z4iCyFbQ0B/2Mi5HT+13pxxq0lVnu2ipbWMzFB+RWKr3wWKA8BSncXr9PH/fECwMX5Q=="
+ },
+ "System.ComponentModel.Composition.Registration": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "+i3RLlOgTsf15VeADBPpzPyRiXq71aLSuzdHeNtmq9f6BwpF3OWhB76p0WDUNCa3Z+SLD4dJbBM9yAep7kQCGA==",
+ "dependencies": {
+ "System.ComponentModel.Composition": "6.0.0",
+ "System.Reflection.Context": "6.0.0"
+ }
+ },
+ "System.ComponentModel.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
+ "dependencies": {
+ "System.ComponentModel": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.ComponentModel.TypeConverter": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.Collections.Specialized": "4.3.0",
+ "System.ComponentModel": "4.3.0",
+ "System.ComponentModel.Primitives": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Configuration.ConfigurationManager": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==",
+ "dependencies": {
+ "System.Security.Cryptography.ProtectedData": "6.0.0",
+ "System.Security.Permissions": "6.0.0"
+ }
+ },
+ "System.Console": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.Data.Odbc": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "pnZjwe0Qwr1Rnp7NExd5zz4YwXJrYuAbWNKjEQpTzCEg6f/L5DYJS7w3hG3vgSj1t/r79UL390YzXIklf1VuQQ==",
+ "dependencies": {
+ "System.Text.Encoding.CodePages": "6.0.0"
+ }
+ },
+ "System.Data.OleDb": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "LQ8PjTIF1LtrrlGiyiTVjAkQtTWKm9GSNnygIlWjhN9y88s7xhy6DUNDDkmQQ9f6ex7mA4k0Tl97lz/CklaiLg==",
+ "dependencies": {
+ "System.Configuration.ConfigurationManager": "6.0.0",
+ "System.Diagnostics.PerformanceCounter": "6.0.0"
+ }
+ },
+ "System.Data.SqlClient": {
+ "type": "Transitive",
+ "resolved": "4.8.3",
+ "contentHash": "yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==",
+ "dependencies": {
+ "Microsoft.Win32.Registry": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0",
+ "runtime.native.System.Data.SqlClient.sni": "4.7.0"
+ }
+ },
+ "System.Diagnostics.Debug": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Diagnostics.DiagnosticSource": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA=="
+ },
+ "System.Diagnostics.EventLog": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw=="
+ },
+ "System.Diagnostics.PerformanceCounter": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "gbeE5tNp/oB7O8kTTLh3wPPJCxpNOphXPTWVs1BsYuFOYapFijWuh0LYw1qnDo4gwDUYPXOmpTIhvtxisGsYOQ==",
+ "dependencies": {
+ "System.Configuration.ConfigurationManager": "6.0.0"
+ }
+ },
+ "System.Diagnostics.Tools": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Diagnostics.TraceSource": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0"
+ }
+ },
+ "System.Diagnostics.Tracing": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.DirectoryServices": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "kp/Op0nxDVGlElDKh8TsXO0GKXftQgAB6sJk0wUetZK1Rr0Pbd86Tn7AllLLlROFZa4BTl/LVHakljtGELFzCg==",
+ "dependencies": {
+ "System.Security.AccessControl": "6.0.0",
+ "System.Security.Permissions": "6.0.0"
+ }
+ },
+ "System.DirectoryServices.AccountManagement": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "2iKkY6VC4WX6H13N8WhH2SRUfWCwg2KZR5w9JIS9cw9N8cZhT7VXxHX0L6OX6Po419aSu2LWrJE9tu6b+cUnPA==",
+ "dependencies": {
+ "System.Configuration.ConfigurationManager": "6.0.0",
+ "System.DirectoryServices": "6.0.0",
+ "System.DirectoryServices.Protocols": "6.0.0",
+ "System.Security.AccessControl": "6.0.0"
+ }
+ },
+ "System.DirectoryServices.Protocols": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "++WKU7HQPo/FJdhywWw+q2lLjcVAGVw5XLH9kRCV+4DvkhVAcHCksh0ezIqwNROmaU9LMJN0d/LAdeWXu3pi6Q=="
+ },
+ "System.Drawing.Common": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
+ "dependencies": {
+ "Microsoft.Win32.SystemEvents": "6.0.0"
+ }
+ },
+ "System.Dynamic.Runtime": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Formats.Asn1": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA=="
+ },
+ "System.Globalization": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Globalization.Calendars": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Globalization.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0"
+ }
+ },
+ "System.IO": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.IO.Compression": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Buffers": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.IO.Compression": "4.3.0"
+ }
+ },
+ "System.IO.Compression.ZipFile": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
+ "dependencies": {
+ "System.Buffers": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.IO.FileSystem": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.IO.FileSystem.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.IO.Packaging": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "C7OkTRIjqIjAKu6ef/fuj8ynCZTPcTYZnvHaq48bniACgXXJogmEoIc56YCDNTc14xhsbLmgpS3KP+evbsUa2g=="
+ },
+ "System.IO.Pipes.AccessControl": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "uqKLJb0Cukb8vG6JVKbJXOAmMWUWOue4ZTjMn7qrfGLZHww3iV8xV1amipI238kmmoFQx6I8GP2bjDM/ss5pQQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "System.Security.AccessControl": "4.5.0",
+ "System.Security.Principal.Windows": "4.5.0"
+ }
+ },
+ "System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "dRyGI7fUESar5ZLIpiBOaaNLW7YyOBGftjj5Of+xcduC/Rjl7RjhEnWDvvNBmHuF3d0tdXoqdVI/yrVA8f00XA==",
+ "dependencies": {
+ "runtime.native.System.IO.Ports": "6.0.0"
+ }
+ },
+ "System.Linq": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ }
+ },
+ "System.Linq.Expressions": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Emit.Lightweight": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Management": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "sHsESYMmPDhQuOC66h6AEOs/XowzKsbT9srMbX71TCXP58hkpn1BqBjdmKj1+DCA/WlBETX1K5WjQHwmV0Txrg==",
+ "dependencies": {
+ "System.CodeDom": "6.0.0"
+ }
+ },
+ "System.Management.Automation": {
+ "type": "Transitive",
+ "resolved": "7.2.2",
+ "contentHash": "Uul+12CucsJp9yhLQbAXYg8KoUldpwBhN+lCNs+FsIjFNNi+lWo5Y7vtXOI8se8Vv4d9QpDSrQWTDsJyCNkIMw==",
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "2.18.0",
+ "Microsoft.Management.Infrastructure": "2.0.0",
+ "Microsoft.PowerShell.CoreCLR.Eventing": "7.2.2",
+ "Microsoft.PowerShell.Native": "7.2.0",
+ "Microsoft.Win32.Registry.AccessControl": "6.0.0",
+ "Newtonsoft.Json": "13.0.1",
+ "System.Configuration.ConfigurationManager": "6.0.0",
+ "System.DirectoryServices": "6.0.0",
+ "System.Management": "6.0.0",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.Security.AccessControl": "6.0.0",
+ "System.Security.Cryptography.Pkcs": "6.0.0",
+ "System.Security.Permissions": "6.0.0",
+ "System.Text.Encoding.CodePages": "6.0.0"
+ }
+ },
+ "System.Memory": {
+ "type": "Transitive",
+ "resolved": "4.5.4",
+ "contentHash": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw=="
+ },
+ "System.Net.Http": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "System.Net.Http.WinHttpHandler": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "jubNN9jH4NzVrvEf4fGwESLBsfH8whWNbHMhgM6IwA8UCt6+/M19bbOHc21JhigvC2HQKCl8HKGZMcBtIpzqIg=="
+ },
+ "System.Net.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ }
+ },
+ "System.Net.Sockets": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Numerics.Vectors": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ=="
+ },
+ "System.ObjectModel": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Private.ServiceModel": {
+ "type": "Transitive",
+ "resolved": "4.9.0",
+ "contentHash": "d3RjkrtpjUQ63PzFmm/SZ4aOXeJNP+8YW5QeP0lCJy8iX4xlHdlNLWTF9sRn9SmrFTK757kQXT9Op/R4l858uw==",
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "5.0.0",
+ "Microsoft.Extensions.ObjectPool": "5.0.10",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Reflection.DispatchProxy": "4.7.1",
+ "System.Security.Cryptography.Xml": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ }
+ },
+ "System.Reflection": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Context": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "Vi+Gb41oyOYie7uLSsjRmfRg3bryUg5DssJvj3gDUl0D8z6ipSm6/yi/XNx2rcS5iVMvHcwRUHjcx7ixv0K3/w=="
+ },
+ "System.Reflection.DispatchProxy": {
+ "type": "Transitive",
+ "resolved": "4.7.1",
+ "contentHash": "C1sMLwIG6ILQ2bmOT4gh62V6oJlyF4BlHcVMrOoor49p0Ji2tA8QAoqyMcIhAdH6OHKJ8m7BU+r4LK2CUEOKqw=="
+ },
+ "System.Reflection.Emit": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Emit.ILGeneration": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Emit.Lightweight": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Metadata": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ=="
+ },
+ "System.Reflection.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.TypeExtensions": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Resources.ResourceManager": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "System.Runtime.Caching": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==",
+ "dependencies": {
+ "System.Configuration.ConfigurationManager": "6.0.0"
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg=="
+ },
+ "System.Runtime.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.Handles": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.InteropServices": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ }
+ },
+ "System.Runtime.InteropServices.RuntimeInformation": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0"
+ }
+ },
+ "System.Runtime.Numerics": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
+ "dependencies": {
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ }
+ },
+ "System.Security.AccessControl": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ=="
+ },
+ "System.Security.Cryptography.Algorithms": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.Cng": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.Csp": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.Encoding": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.OpenSsl": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.Pkcs": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "elM3x+xSRhzQysiqo85SbidJJ2YbZlnvmh+53TuSZHsD7dNuuEWser+9EFtY+rYupBwkq2avc6ZCO3/6qACgmg==",
+ "dependencies": {
+ "System.Formats.Asn1": "6.0.0"
+ }
+ },
+ "System.Security.Cryptography.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.ProtectedData": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ=="
+ },
+ "System.Security.Cryptography.X509Certificates": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Calendars": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Cng": "4.3.0",
+ "System.Security.Cryptography.Csp": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.Xml": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "puJ4UCh9JVRwOCyCIcq71JY6Axr8Sp8E2GjTIU1Fj8hm4+oX6NEoyGFGa/+pBG8SrVxbQPSj7hvtaREyTHHsmw==",
+ "dependencies": {
+ "System.Security.AccessControl": "6.0.0",
+ "System.Security.Cryptography.Pkcs": "6.0.0"
+ }
+ },
+ "System.Security.Permissions": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",
+ "dependencies": {
+ "System.Security.AccessControl": "6.0.0",
+ "System.Windows.Extensions": "6.0.0"
+ }
+ },
+ "System.Security.Principal.Windows": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA=="
+ },
+ "System.ServiceModel.Duplex": {
+ "type": "Transitive",
+ "resolved": "4.9.0",
+ "contentHash": "Yb8MFiJxBBtm2JnfS/5SxYzm2HqkEmHu5xeaVIHXy83sNpty9wc30JifH2xgda821D6nr1UctbwbdZqN4LBUKQ==",
+ "dependencies": {
+ "System.Private.ServiceModel": "4.9.0",
+ "System.ServiceModel.Primitives": "4.9.0"
+ }
+ },
+ "System.ServiceModel.Http": {
+ "type": "Transitive",
+ "resolved": "4.9.0",
+ "contentHash": "Z+s3RkLNzJ31fDXAjqXdXp67FqsNG4V3Md3r7FOrzMkHmg61gY8faEfTFPBLxU9tax1HPWt6IHVAquXBKySJaw==",
+ "dependencies": {
+ "System.Private.ServiceModel": "4.9.0",
+ "System.ServiceModel.Primitives": "4.9.0"
+ }
+ },
+ "System.ServiceModel.NetTcp": {
+ "type": "Transitive",
+ "resolved": "4.9.0",
+ "contentHash": "nXgnnkrZERUF/KwmoLwZPkc7fqgiq94DXkmUZBvDNh/LdZquDvjy2NbhJLElpApOa5x8zEoQoBZyJ2PqNC39qg==",
+ "dependencies": {
+ "System.Private.ServiceModel": "4.9.0",
+ "System.ServiceModel.Primitives": "4.9.0"
+ }
+ },
+ "System.ServiceModel.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.9.0",
+ "contentHash": "LTFPVdS8Nf76xg/wRZkDa+2Q+GnjTOmwkTlwuoetwX37mAfYnGkf7p8ydhpDwVmomNljpUOhUUGxfjQyd5YcOg==",
+ "dependencies": {
+ "System.Private.ServiceModel": "4.9.0"
+ }
+ },
+ "System.ServiceModel.Security": {
+ "type": "Transitive",
+ "resolved": "4.9.0",
+ "contentHash": "iurpbSmPgotHps94VQ6acvL6hU2gjiuBmQI7PwLLN76jsbSpUcahT0PglccKIAwoMujATk/LWtAapBHpwCFn2g==",
+ "dependencies": {
+ "System.Private.ServiceModel": "4.9.0",
+ "System.ServiceModel.Primitives": "4.9.0"
+ }
+ },
+ "System.ServiceModel.Syndication": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "cp1mMNG87iJtE0oHXFtfWT6cfski2JNo5iU0siTPi/uN2k1CIJI6FE4jr4v3got2dzt7wBq17fSy44btun9GiA=="
+ },
+ "System.ServiceProcess.ServiceController": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "qMBvG8ZFbkXoe0Z5/D7FAAadfPkH2v7vSuh2xsLf3U6jNoejpIdeV18A0htiASsLK1CCAc/p59kaLXlt2yB1gw==",
+ "dependencies": {
+ "System.Diagnostics.EventLog": "6.0.0"
+ }
+ },
+ "System.Speech": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "GQovERMrNP0Vbtgk8LzH4PlFS6lqHgsL9WkUmv8Kkxa0m0vNakitytpHZlfJ9WR7n9WKLXh68nn2kyL9mflnLg=="
+ },
+ "System.Text.Encoding": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Text.Encoding.CodePages": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "System.Text.Encoding.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.Text.Encodings.Web": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "System.Text.Json": {
+ "type": "Transitive",
+ "resolved": "4.6.0",
+ "contentHash": "4F8Xe+JIkVoDJ8hDAZ7HqLkjctN/6WItJIzQaifBwClC7wmoLSda/Sv2i6i1kycqDb3hWF4JCVbpAweyOKHEUA=="
+ },
+ "System.Text.RegularExpressions": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Threading": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Threading.AccessControl": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "2258mqWesMch/xCpcnjJBgJP33yhpZLGLbEOm01qwq0efG4b+NG8c9sxYOWNxmDQ82swXrnQRl1Yp2wC1NrfZA==",
+ "dependencies": {
+ "System.Security.AccessControl": "6.0.0"
+ }
+ },
+ "System.Threading.Tasks": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Threading.Tasks.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.5.4",
+ "contentHash": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg=="
+ },
+ "System.Threading.Timer": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Web.Services.Description": {
+ "type": "Transitive",
+ "resolved": "4.9.0",
+ "contentHash": "d20B3upsWddwSG5xF3eQLs0cAV3tXDsBNqP4kh02ylfgZwqfpf4f/9KiZVIGIoxULt2cKqxWs+U4AdNAJ7L8cQ=="
+ },
+ "System.Windows.Extensions": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
+ "dependencies": {
+ "System.Drawing.Common": "6.0.0"
+ }
+ },
+ "System.Xml.ReaderWriter": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Tasks.Extensions": "4.3.0"
+ }
+ },
+ "System.Xml.XDocument": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0"
+ }
+ },
+ "System.Xml.XmlDocument": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0"
+ }
+ },
+ "xunit.abstractions": {
+ "type": "Transitive",
+ "resolved": "2.0.3",
+ "contentHash": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg=="
+ },
+ "xunit.analyzers": {
+ "type": "Transitive",
+ "resolved": "0.10.0",
+ "contentHash": "4/IDFCJfIeg6bix9apmUtIMwvOsiwqdEexeO/R2D4GReIGPLIRODTpId/l4LRSrAJk9lEO3Zx1H0Zx6uohJDNg=="
+ },
+ "xunit.assert": {
+ "type": "Transitive",
+ "resolved": "2.4.1",
+ "contentHash": "O/Oe0BS5RmSsM+LQOb041TzuPo5MdH2Rov+qXGS37X+KFG1Hxz7kopYklM5+1Y+tRGeXrOx5+Xne1RuqLFQoyQ==",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ }
+ },
+ "xunit.core": {
+ "type": "Transitive",
+ "resolved": "2.4.1",
+ "contentHash": "Zsj5OMU6JasNGERXZy8s72+pcheG6Q15atS5XpZXqAtULuyQiQ6XNnUsp1gyfC6WgqScqMvySiEHmHcOG6Eg0Q==",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.4.1]",
+ "xunit.extensibility.execution": "[2.4.1]"
+ }
+ },
+ "xunit.extensibility.core": {
+ "type": "Transitive",
+ "resolved": "2.4.1",
+ "contentHash": "yKZKm/8QNZnBnGZFD9SewkllHBiK0DThybQD/G4PiAmQjKtEZyHi6ET70QPU9KtSMJGRYS6Syk7EyR2EVDU4Kg==",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1",
+ "xunit.abstractions": "2.0.3"
+ }
+ },
+ "xunit.extensibility.execution": {
+ "type": "Transitive",
+ "resolved": "2.4.1",
+ "contentHash": "7e/1jqBpcb7frLkB6XDrHCGXAbKN4Rtdb88epYxCSRQuZDRW8UtTfdTEVpdTl8s4T56e07hOBVd4G0OdCxIY2A==",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1",
+ "xunit.extensibility.core": "[2.4.1]"
+ }
+ },
+ "YamlDotNet": {
+ "type": "Transitive",
+ "resolved": "9.1.0",
+ "contentHash": "fuvGXU4Ec5HrsmEc+BiFTNPCRf1cGBI2kh/3RzMWgddM2M4ALhbSPoI3X3mhXZUD1qqQd9oSkFAtWjpz8z9eRg=="
+ },
+ "common": {
+ "type": "Project",
+ "dependencies": {
+ "Microsoft.Win32.Registry": "[4.5.0, )",
+ "Newtonsoft.Json": "[9.0.1, )",
+ "PowerShellProTools.VSCode": "[1.0.0, )",
+ "PowerShellStandard.Library": "[5.1.0, )",
+ "Serilog.Sinks.File": "[5.0.0, )"
+ }
+ },
+ "formdesigner.generator": {
+ "type": "Project",
+ "dependencies": {
+ "PowerShellStandard.Library": "[5.1.0, )"
+ }
+ },
+ "powershellprotools.host": {
+ "type": "Project",
+ "dependencies": {
+ "FormDesigner.Generator": "[1.0.0, )",
+ "Microsoft.PowerShell.SDK": "[7.2.2, )",
+ "Newtonsoft.Json": "[13.0.1, )",
+ "PowerShellProTools.VSCode": "[1.0.0, )",
+ "PowerShellToolsPro.Cmdlets": "[1.0.0, )",
+ "PowerShellToolsPro.Packager": "[2.0.0, )",
+ "System.CommandLine.DragonFruit": "[0.3.0-alpha.20303.1, )"
+ }
+ },
+ "PowerShellProTools.VSCode": {
+ "type": "Project",
+ "dependencies": {
+ "FormDesigner.Generator": "[1.0.0, )",
+ "ICSharpCode.Decompiler": "[7.0.0.6488, )",
+ "Newtonsoft.Json": "[9.0.1, )",
+ "PowerShellStandard.Library": "[5.1.0, )"
+ }
+ },
+ "powershelltoolspro.cmdlets": {
+ "type": "Project",
+ "dependencies": {
+ "Common": "[1.0.0, )",
+ "FormDesigner.Generator": "[1.0.0, )",
+ "PowerShellStandard.Library": "[5.1.0, )",
+ "PowerShellToolsPro.Packager": "[2.0.0, )",
+ "StrongNamer": "[0.2.5, )",
+ "System.IO.Pipes.AccessControl": "[4.5.0, )",
+ "YamlDotNet": "[9.1.0, )",
+ "morelinq": "[3.3.2, )"
+ }
+ },
+ "powershelltoolspro.packager": {
+ "type": "Project",
+ "dependencies": {
+ "PowerShellStandard.Library": "[5.1.0, )",
+ "StrongNamer": "[0.2.5, )",
+ "System.Drawing.Common": "[6.0.0, )",
+ "System.Text.Json": "[4.6.0, )"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/PowerShellProTools.Host/PowerShellProTools.Host.csproj b/PowerShellProTools.Host/PowerShellProTools.Host.csproj
index 53fbaed..5e890b5 100644
--- a/PowerShellProTools.Host/PowerShellProTools.Host.csproj
+++ b/PowerShellProTools.Host/PowerShellProTools.Host.csproj
@@ -4,6 +4,7 @@
Exe
net6.0
1591
+ true
diff --git a/PowerShellProTools.Host/packages.lock.json b/PowerShellProTools.Host/packages.lock.json
new file mode 100644
index 0000000..b7f5711
--- /dev/null
+++ b/PowerShellProTools.Host/packages.lock.json
@@ -0,0 +1,849 @@
+{
+ "version": 1,
+ "dependencies": {
+ "net6.0": {
+ "Microsoft.PowerShell.SDK": {
+ "type": "Direct",
+ "requested": "[7.2.2, )",
+ "resolved": "7.2.2",
+ "contentHash": "kAOTZtUnRbkm8/bIu79XFUTHRdDY9leJ1APmMUlyhXqyH/AeR3pWxeb6/ale0O6ZaxiW9g9HXi3yIvNQMTBQbg==",
+ "dependencies": {
+ "Microsoft.Management.Infrastructure.CimCmdlets": "7.2.2",
+ "Microsoft.NETCore.Windows.ApiSets": "1.0.1",
+ "Microsoft.PowerShell.Commands.Diagnostics": "7.2.2",
+ "Microsoft.PowerShell.Commands.Management": "7.2.2",
+ "Microsoft.PowerShell.Commands.Utility": "7.2.2",
+ "Microsoft.PowerShell.ConsoleHost": "7.2.2",
+ "Microsoft.PowerShell.Security": "7.2.2",
+ "Microsoft.WSMan.Management": "7.2.2",
+ "Microsoft.Windows.Compatibility": "6.0.0",
+ "System.Data.SqlClient": "4.8.3",
+ "System.IO.Packaging": "6.0.0",
+ "System.Management.Automation": "7.2.2",
+ "System.Net.Http.WinHttpHandler": "6.0.0",
+ "System.Private.ServiceModel": "4.9.0",
+ "System.ServiceModel.Duplex": "4.9.0",
+ "System.ServiceModel.Http": "4.9.0",
+ "System.ServiceModel.NetTcp": "4.9.0",
+ "System.ServiceModel.Primitives": "4.9.0",
+ "System.ServiceModel.Security": "4.9.0",
+ "System.Text.Encodings.Web": "6.0.0"
+ }
+ },
+ "Newtonsoft.Json": {
+ "type": "Direct",
+ "requested": "[13.0.1, )",
+ "resolved": "13.0.1",
+ "contentHash": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A=="
+ },
+ "System.CommandLine.DragonFruit": {
+ "type": "Direct",
+ "requested": "[0.3.0-alpha.20303.1, )",
+ "resolved": "0.3.0-alpha.20303.1",
+ "contentHash": "7aTJ6e3TYpqIDG1IpeSOWaIoCRcyTZ6AD/olb/Ow/7CB5OaEnqXI8aDXnD3lVqXqQsVrJ+OZHfeS+udZHPCD1Q==",
+ "dependencies": {
+ "System.CommandLine": "2.0.0-beta1.20303.1",
+ "System.CommandLine.Rendering": "0.3.0-alpha.20303.1"
+ }
+ },
+ "ICSharpCode.Decompiler": {
+ "type": "Transitive",
+ "resolved": "7.0.0.6488",
+ "contentHash": "1enxZGgiZgnka6VcHpBxkcuuNo462+YVPzRYUfe2/eF3tcDuLk9/yKEfQnXC265sRKnDhks+2Xhk0PlyagM5EA==",
+ "dependencies": {
+ "System.Collections.Immutable": "5.0.0",
+ "System.Reflection.Metadata": "5.0.0"
+ }
+ },
+ "Markdig.Signed": {
+ "type": "Transitive",
+ "resolved": "0.22.0",
+ "contentHash": "7x3FqS3wk8DXyQLuflD47tBs6+ly6k4VtoDCzlDWfy7XHVsBIi7eGYEM15sPAcwSCQjOksNWE8U5r2v0Sk5FzQ=="
+ },
+ "Microsoft.ApplicationInsights": {
+ "type": "Transitive",
+ "resolved": "2.18.0",
+ "contentHash": "milJB3VOCoC4EWmpE/Co9cOJ7SV6Ji6VqV4Rf5UlqL9QCg+rAX1y+3Y+j1Gu/j4IExYiPq7SEKqkP2BFnEu6Vw==",
+ "dependencies": {
+ "System.Diagnostics.DiagnosticSource": "5.0.0"
+ }
+ },
+ "Microsoft.Bcl.AsyncInterfaces": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ=="
+ },
+ "Microsoft.CodeAnalysis.Analyzers": {
+ "type": "Transitive",
+ "resolved": "3.3.2",
+ "contentHash": "7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA=="
+ },
+ "Microsoft.CodeAnalysis.Common": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "SMREwaVD5SzatlWhh9aahQAtSWdb63NcE//f+bQzgHSECU6xtDtaxk0kwV+asdFfr6HtW38UeO6jvqdfzudg3w==",
+ "dependencies": {
+ "Microsoft.CodeAnalysis.Analyzers": "3.3.2",
+ "System.Collections.Immutable": "5.0.0",
+ "System.Memory": "4.5.4",
+ "System.Reflection.Metadata": "5.0.0",
+ "System.Runtime.CompilerServices.Unsafe": "5.0.0",
+ "System.Text.Encoding.CodePages": "4.5.1",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ }
+ },
+ "Microsoft.CodeAnalysis.CSharp": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "Q9RxxydPpUElj/x1/qykDTUGsRoKbJG8H5XUSeMGmMu54fBiuX1xyanom9caa1oQfh5JIW1BgLxobSaWs4WyHQ==",
+ "dependencies": {
+ "Microsoft.CodeAnalysis.Common": "[4.0.1]"
+ }
+ },
+ "Microsoft.CSharp": {
+ "type": "Transitive",
+ "resolved": "4.4.1",
+ "contentHash": "A5hI3gk6WpcBI0QGZY6/d5CCaYUxJgi7iENn1uYEng+Olo8RfI5ReGVkjXjeu3VR3srLvVYREATXa2M0X7FYJA=="
+ },
+ "Microsoft.Extensions.ObjectPool": {
+ "type": "Transitive",
+ "resolved": "5.0.10",
+ "contentHash": "pp9tbGqIhdEXL6Q1yJl+zevAJSq4BsxqhS1GXzBvEsEz9DDNu9GLNzgUy2xyFc4YjB4m4Ff2YEWTnvQvVYdkvQ=="
+ },
+ "Microsoft.Management.Infrastructure": {
+ "type": "Transitive",
+ "resolved": "2.0.0",
+ "contentHash": "IaKZRNBBv3sdrmBWd+aqwHq8cVHk/3WgWFAN/dt40MRY9rbtHiDfTTmaEN0tGTmQqGCGDo/ncntA8MvFMvcsRw==",
+ "dependencies": {
+ "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0",
+ "Microsoft.Management.Infrastructure.Runtime.Win": "2.0.0"
+ }
+ },
+ "Microsoft.Management.Infrastructure.CimCmdlets": {
+ "type": "Transitive",
+ "resolved": "7.2.2",
+ "contentHash": "l1NklpK8N2t9AupDML8kO0O2lRxZrhXrGkIWYZSqyd/xCjqlEzerBUaQ5HRJiEkWBfFlsBYi/QWntEEbWKncQw==",
+ "dependencies": {
+ "System.Management.Automation": "7.2.2"
+ }
+ },
+ "Microsoft.Management.Infrastructure.Runtime.Unix": {
+ "type": "Transitive",
+ "resolved": "2.0.0",
+ "contentHash": "p0lslMX5bdWLxO2P7ao+rjAMOB0LEwPYpzvdCQ2OEYgX2NxFpQ8ILvqPGnYlTAb53rT8gu5DyIol1HboHFYfxQ=="
+ },
+ "Microsoft.Management.Infrastructure.Runtime.Win": {
+ "type": "Transitive",
+ "resolved": "2.0.0",
+ "contentHash": "vjBWQeDOjgernkrOdbEgn7M70SF7hof7ORdKPSlL06Uc15+oYdth5dZju9KsgUoti/cwnkZTiwtDx/lRtay0sA=="
+ },
+ "Microsoft.NETCore.Platforms": {
+ "type": "Transitive",
+ "resolved": "2.0.0",
+ "contentHash": "VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ=="
+ },
+ "Microsoft.NETCore.Windows.ApiSets": {
+ "type": "Transitive",
+ "resolved": "1.0.1",
+ "contentHash": "SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw=="
+ },
+ "Microsoft.PowerShell.Commands.Diagnostics": {
+ "type": "Transitive",
+ "resolved": "7.2.2",
+ "contentHash": "drfAmuqA6lPy7CuGfUB0rOnUdyozhp46Xx0H/qFnkD+at638NhOsbZm+cH7uu7PLW6bf3PJlQH8qoShgWfSW7g==",
+ "dependencies": {
+ "System.Management.Automation": "7.2.2"
+ }
+ },
+ "Microsoft.PowerShell.Commands.Management": {
+ "type": "Transitive",
+ "resolved": "7.2.2",
+ "contentHash": "G+9bLZy2NuUx8Dhkbg6NxxWhIRb1yHysfHsQ32pjsk4XdqKBvnFcIusV9NXP75LMOMoSNkeD8yEMyinzwuyNog==",
+ "dependencies": {
+ "Microsoft.PowerShell.Security": "7.2.2",
+ "System.ServiceProcess.ServiceController": "6.0.0"
+ }
+ },
+ "Microsoft.PowerShell.Commands.Utility": {
+ "type": "Transitive",
+ "resolved": "7.2.2",
+ "contentHash": "4HBzi39JUFaBe7UR2GovzYZYpB4PdqeJkB6P+QGRO01xEWAK8Vi0pOT2DaEcm9+cRoFS+EyAGTZW9smIDuxHLQ==",
+ "dependencies": {
+ "Microsoft.CodeAnalysis.CSharp": "4.0.1",
+ "Microsoft.PowerShell.MarkdownRender": "7.2.0",
+ "NJsonSchema": "10.5.2",
+ "System.Drawing.Common": "6.0.0",
+ "System.Management.Automation": "7.2.2",
+ "System.Threading.AccessControl": "6.0.0"
+ }
+ },
+ "Microsoft.PowerShell.ConsoleHost": {
+ "type": "Transitive",
+ "resolved": "7.2.2",
+ "contentHash": "wFFxiZNpLmQPkRQVo02r7gVhlBSRSVtBTTNlN2z3VJWVmYQIIn5qmrU4MJm5g4kz76IkXg44x68A4ije8JVbeQ==",
+ "dependencies": {
+ "System.Management.Automation": "7.2.2"
+ }
+ },
+ "Microsoft.PowerShell.CoreCLR.Eventing": {
+ "type": "Transitive",
+ "resolved": "7.2.2",
+ "contentHash": "ccRbYMbO4+Ilyi4C0Kqu1UqV3wdrgRtY3PQZqwKS0mx++Zsjg5F9jyrOnPDlwx1cMqxLQtHCOdCNuf39h2oAJA==",
+ "dependencies": {
+ "System.Diagnostics.EventLog": "6.0.0"
+ }
+ },
+ "Microsoft.PowerShell.MarkdownRender": {
+ "type": "Transitive",
+ "resolved": "7.2.0",
+ "contentHash": "1vqDtdX9RCGsMWCbzp0CIxZW3slWgq8mYHDfUlUKzmkV57fMAn4m0Gy2OtsqopZzrOiVJci+QCWx5FB7BVpMlw==",
+ "dependencies": {
+ "Markdig.Signed": "0.22.0"
+ }
+ },
+ "Microsoft.PowerShell.Native": {
+ "type": "Transitive",
+ "resolved": "7.2.0",
+ "contentHash": "TauOu3bYr4DRh9HpH3+fgaL+y2GY47KLsgU6qX1NDLqHshdEaCCjiF0N5sDEgCEhSb38FwWhpdFTIQvoOcYCXQ=="
+ },
+ "Microsoft.PowerShell.Security": {
+ "type": "Transitive",
+ "resolved": "7.2.2",
+ "contentHash": "2mgbRIyDm05vHNVEaZRPu+SeZH36CBAdVw+NIoi9tEf9cXS99maBvkM1iUuYUmyYQmOwJw7DgIVo7CdHWzlIRw==",
+ "dependencies": {
+ "System.Management.Automation": "7.2.2"
+ }
+ },
+ "Microsoft.Win32.Registry": {
+ "type": "Transitive",
+ "resolved": "4.7.0",
+ "contentHash": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
+ "dependencies": {
+ "System.Security.AccessControl": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ }
+ },
+ "Microsoft.Win32.Registry.AccessControl": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "UoE+eeuBKL+GFHxHV3FjHlY5K8Wr/IR7Ee/a2oDNqFodF1iMqyt5hIs0U9Z217AbWrHrNle4750kD03hv1IMZw==",
+ "dependencies": {
+ "System.Security.AccessControl": "6.0.0"
+ }
+ },
+ "Microsoft.Win32.SystemEvents": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A=="
+ },
+ "Microsoft.Windows.Compatibility": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "9esuK5JqnjkDgO9/AHesyJSG0aKwpfLVzTw6nIGYhqE91VLxZyv3HKulNoPVy/NOuyAaf1kE4FKtdZDzdd/SLw==",
+ "dependencies": {
+ "Microsoft.Win32.Registry.AccessControl": "6.0.0",
+ "Microsoft.Win32.SystemEvents": "6.0.0",
+ "System.CodeDom": "6.0.0",
+ "System.ComponentModel.Composition": "6.0.0",
+ "System.ComponentModel.Composition.Registration": "6.0.0",
+ "System.Configuration.ConfigurationManager": "6.0.0",
+ "System.Data.Odbc": "6.0.0",
+ "System.Data.OleDb": "6.0.0",
+ "System.Data.SqlClient": "4.8.3",
+ "System.Diagnostics.EventLog": "6.0.0",
+ "System.Diagnostics.PerformanceCounter": "6.0.0",
+ "System.DirectoryServices": "6.0.0",
+ "System.DirectoryServices.AccountManagement": "6.0.0",
+ "System.DirectoryServices.Protocols": "6.0.0",
+ "System.Drawing.Common": "6.0.0",
+ "System.IO.Packaging": "6.0.0",
+ "System.IO.Ports": "6.0.0",
+ "System.Management": "6.0.0",
+ "System.Reflection.Context": "6.0.0",
+ "System.Runtime.Caching": "6.0.0",
+ "System.Security.AccessControl": "6.0.0",
+ "System.Security.Cryptography.Pkcs": "6.0.0",
+ "System.Security.Cryptography.ProtectedData": "6.0.0",
+ "System.Security.Cryptography.Xml": "6.0.0",
+ "System.Security.Permissions": "6.0.0",
+ "System.ServiceModel.Duplex": "4.9.0",
+ "System.ServiceModel.Http": "4.9.0",
+ "System.ServiceModel.NetTcp": "4.9.0",
+ "System.ServiceModel.Primitives": "4.9.0",
+ "System.ServiceModel.Security": "4.9.0",
+ "System.ServiceModel.Syndication": "6.0.0",
+ "System.ServiceProcess.ServiceController": "6.0.0",
+ "System.Speech": "6.0.0",
+ "System.Text.Encoding.CodePages": "6.0.0",
+ "System.Threading.AccessControl": "6.0.0",
+ "System.Web.Services.Description": "4.9.0"
+ }
+ },
+ "Microsoft.WSMan.Management": {
+ "type": "Transitive",
+ "resolved": "7.2.2",
+ "contentHash": "4wRtyldf4FzIIxGF2COFDVlZfayli57iKUmHI7nPE82b6qiSbS3AZGZtcmpAJlusZFIJ4ABiy+2jiOQjc7xIoA==",
+ "dependencies": {
+ "Microsoft.WSMan.Runtime": "7.2.2",
+ "System.Management.Automation": "7.2.2",
+ "System.ServiceProcess.ServiceController": "6.0.0"
+ }
+ },
+ "Microsoft.WSMan.Runtime": {
+ "type": "Transitive",
+ "resolved": "7.2.2",
+ "contentHash": "zbrXm3Sn1tvMxnYDRzVfhtlYwW1KzYiXdXAhPLcWXhVQnt8aWhC0R/8/1dQF3d0LVwsZJ8+PxsTbkV/wz+g2qQ=="
+ },
+ "morelinq": {
+ "type": "Transitive",
+ "resolved": "3.3.2",
+ "contentHash": "MQc8GppZJLmjvcpEdf3EkC6ovsp7gRWt2e5mC7dcIOrgwSc+yjFd3JQ0iRqr3XrUT6rb/phv0IkEmBtbfVA7AQ=="
+ },
+ "Namotion.Reflection": {
+ "type": "Transitive",
+ "resolved": "2.0.3",
+ "contentHash": "tZCe/UrSBAMW8A4TjD/SlpRHaWjnHlSWdyRuOXhf3yrE0OX+4fXg0uzj7mwFDclXznfCGRAZbP+akPt4G/mclw==",
+ "dependencies": {
+ "Microsoft.CSharp": "4.3.0"
+ }
+ },
+ "NJsonSchema": {
+ "type": "Transitive",
+ "resolved": "10.5.2",
+ "contentHash": "Vr2CbySuXh74TQFU0rGJYZOS492xOE64cPXdB7a0cfXJb/N45Bf4v7sd4LOla0jNhgc5V/B61Ko3qecriL195w==",
+ "dependencies": {
+ "Namotion.Reflection": "2.0.3",
+ "Newtonsoft.Json": "9.0.1"
+ }
+ },
+ "PowerShellStandard.Library": {
+ "type": "Transitive",
+ "resolved": "5.1.0",
+ "contentHash": "iYaRvQsM1fow9h3uEmio+2m2VXfulgI16AYHaTZ8Sf7erGe27Qc8w/h6QL5UPuwv1aXR40QfzMEwcCeiYJp2cw=="
+ },
+ "runtime.linux-arm.runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "75q52H7CSpgIoIDwXb9o833EvBZIXJ0mdPhz1E6jSisEXUBlSCPalC29cj3EXsjpuDwr0dj1LRXZepIQH/oL4Q=="
+ },
+ "runtime.linux-arm64.runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "xn2bMThmXr3CsvOYmS8ex2Yz1xo+kcnhVg2iVhS9PlmqjZPAkrEo/I40wjrBZH/tU4kvH0s1AE8opAvQ3KIS8g=="
+ },
+ "runtime.linux-x64.runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "16nbNXwv0sC+gLGIuecri0skjuh6R1maIJggsaNP7MQBcbVcEfWFUOkEnsnvoLEjy0XerfibuRptfQ8AmdIcWA=="
+ },
+ "runtime.native.System.Data.SqlClient.sni": {
+ "type": "Transitive",
+ "resolved": "4.7.0",
+ "contentHash": "9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==",
+ "dependencies": {
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
+ }
+ },
+ "runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "KaaXlpOcuZjMdmyF5wzzx3b+PRKIzt6A5Ax9dKenPDQbVJAFpev+casD0BIig1pBcbs3zx7CqWemzUJKAeHdSQ==",
+ "dependencies": {
+ "runtime.linux-arm.runtime.native.System.IO.Ports": "6.0.0",
+ "runtime.linux-arm64.runtime.native.System.IO.Ports": "6.0.0",
+ "runtime.linux-x64.runtime.native.System.IO.Ports": "6.0.0",
+ "runtime.osx-arm64.runtime.native.System.IO.Ports": "6.0.0",
+ "runtime.osx-x64.runtime.native.System.IO.Ports": "6.0.0"
+ }
+ },
+ "runtime.osx-arm64.runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "fXG12NodG1QrCdoaeSQ1gVnk/koi4WYY4jZtarMkZeQMyReBm1nZlSRoPnUjLr2ZR36TiMjpcGnQfxymieUe7w=="
+ },
+ "runtime.osx-x64.runtime.native.System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "/As+zPY49+dSUXkh+fTUbyPhqrdGN//evLxo4Vue88pfh1BHZgF7q4kMblTkxYvwR6Vi03zSYxysSFktO8/SDQ=="
+ },
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": {
+ "type": "Transitive",
+ "resolved": "4.4.0",
+ "contentHash": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg=="
+ },
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": {
+ "type": "Transitive",
+ "resolved": "4.4.0",
+ "contentHash": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ=="
+ },
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": {
+ "type": "Transitive",
+ "resolved": "4.4.0",
+ "contentHash": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA=="
+ },
+ "Serilog": {
+ "type": "Transitive",
+ "resolved": "2.10.0",
+ "contentHash": "+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA=="
+ },
+ "Serilog.Sinks.File": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==",
+ "dependencies": {
+ "Serilog": "2.10.0"
+ }
+ },
+ "StrongNamer": {
+ "type": "Transitive",
+ "resolved": "0.2.5",
+ "contentHash": "1IWl8gYnsTC6NXHz63iDpXL8r0y5x0M/Cnq/Ju5uM17gTOQYSeclMkgQsvmGglJEqAwVxayY1sIUR3bb2MAy5Q=="
+ },
+ "System.CodeDom": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA=="
+ },
+ "System.Collections.Immutable": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g=="
+ },
+ "System.CommandLine": {
+ "type": "Transitive",
+ "resolved": "2.0.0-beta1.20303.1",
+ "contentHash": "2CknrYJXyL+tV523KL3Sm9UBq/ZaAXwToU+d+ScqTZOuaVmGpeAOXOHxkBYeuabTBuhWAij/Quv4dpeqSzHsxA==",
+ "dependencies": {
+ "Microsoft.CSharp": "4.4.1",
+ "system.memory": "4.5.4"
+ }
+ },
+ "System.CommandLine.Rendering": {
+ "type": "Transitive",
+ "resolved": "0.3.0-alpha.20303.1",
+ "contentHash": "Dx4UQO+kjcrKE5Q9Rz0/rgXhhXrzIXuWW26ZmQw4wEOW7n6yHyavgT+uJ7dbW/4gA/KdzCayyr+umDEu//u5pg==",
+ "dependencies": {
+ "System.CommandLine": "2.0.0-beta1.20303.1"
+ }
+ },
+ "System.ComponentModel.Composition": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "60Qv+F7oxomOjJeTDA5Z4iCyFbQ0B/2Mi5HT+13pxxq0lVnu2ipbWMzFB+RWKr3wWKA8BSncXr9PH/fECwMX5Q=="
+ },
+ "System.ComponentModel.Composition.Registration": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "+i3RLlOgTsf15VeADBPpzPyRiXq71aLSuzdHeNtmq9f6BwpF3OWhB76p0WDUNCa3Z+SLD4dJbBM9yAep7kQCGA==",
+ "dependencies": {
+ "System.ComponentModel.Composition": "6.0.0",
+ "System.Reflection.Context": "6.0.0"
+ }
+ },
+ "System.Configuration.ConfigurationManager": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==",
+ "dependencies": {
+ "System.Security.Cryptography.ProtectedData": "6.0.0",
+ "System.Security.Permissions": "6.0.0"
+ }
+ },
+ "System.Data.Odbc": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "pnZjwe0Qwr1Rnp7NExd5zz4YwXJrYuAbWNKjEQpTzCEg6f/L5DYJS7w3hG3vgSj1t/r79UL390YzXIklf1VuQQ==",
+ "dependencies": {
+ "System.Text.Encoding.CodePages": "6.0.0"
+ }
+ },
+ "System.Data.OleDb": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "LQ8PjTIF1LtrrlGiyiTVjAkQtTWKm9GSNnygIlWjhN9y88s7xhy6DUNDDkmQQ9f6ex7mA4k0Tl97lz/CklaiLg==",
+ "dependencies": {
+ "System.Configuration.ConfigurationManager": "6.0.0",
+ "System.Diagnostics.PerformanceCounter": "6.0.0"
+ }
+ },
+ "System.Data.SqlClient": {
+ "type": "Transitive",
+ "resolved": "4.8.3",
+ "contentHash": "yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==",
+ "dependencies": {
+ "Microsoft.Win32.Registry": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0",
+ "runtime.native.System.Data.SqlClient.sni": "4.7.0"
+ }
+ },
+ "System.Diagnostics.DiagnosticSource": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA=="
+ },
+ "System.Diagnostics.EventLog": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw=="
+ },
+ "System.Diagnostics.PerformanceCounter": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "gbeE5tNp/oB7O8kTTLh3wPPJCxpNOphXPTWVs1BsYuFOYapFijWuh0LYw1qnDo4gwDUYPXOmpTIhvtxisGsYOQ==",
+ "dependencies": {
+ "System.Configuration.ConfigurationManager": "6.0.0"
+ }
+ },
+ "System.DirectoryServices": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "kp/Op0nxDVGlElDKh8TsXO0GKXftQgAB6sJk0wUetZK1Rr0Pbd86Tn7AllLLlROFZa4BTl/LVHakljtGELFzCg==",
+ "dependencies": {
+ "System.Security.AccessControl": "6.0.0",
+ "System.Security.Permissions": "6.0.0"
+ }
+ },
+ "System.DirectoryServices.AccountManagement": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "2iKkY6VC4WX6H13N8WhH2SRUfWCwg2KZR5w9JIS9cw9N8cZhT7VXxHX0L6OX6Po419aSu2LWrJE9tu6b+cUnPA==",
+ "dependencies": {
+ "System.Configuration.ConfigurationManager": "6.0.0",
+ "System.DirectoryServices": "6.0.0",
+ "System.DirectoryServices.Protocols": "6.0.0",
+ "System.Security.AccessControl": "6.0.0"
+ }
+ },
+ "System.DirectoryServices.Protocols": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "++WKU7HQPo/FJdhywWw+q2lLjcVAGVw5XLH9kRCV+4DvkhVAcHCksh0ezIqwNROmaU9LMJN0d/LAdeWXu3pi6Q=="
+ },
+ "System.Drawing.Common": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
+ "dependencies": {
+ "Microsoft.Win32.SystemEvents": "6.0.0"
+ }
+ },
+ "System.Formats.Asn1": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA=="
+ },
+ "System.IO.Packaging": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "C7OkTRIjqIjAKu6ef/fuj8ynCZTPcTYZnvHaq48bniACgXXJogmEoIc56YCDNTc14xhsbLmgpS3KP+evbsUa2g=="
+ },
+ "System.IO.Pipes.AccessControl": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "uqKLJb0Cukb8vG6JVKbJXOAmMWUWOue4ZTjMn7qrfGLZHww3iV8xV1amipI238kmmoFQx6I8GP2bjDM/ss5pQQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "System.Security.AccessControl": "4.5.0",
+ "System.Security.Principal.Windows": "4.5.0"
+ }
+ },
+ "System.IO.Ports": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "dRyGI7fUESar5ZLIpiBOaaNLW7YyOBGftjj5Of+xcduC/Rjl7RjhEnWDvvNBmHuF3d0tdXoqdVI/yrVA8f00XA==",
+ "dependencies": {
+ "runtime.native.System.IO.Ports": "6.0.0"
+ }
+ },
+ "System.Management": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "sHsESYMmPDhQuOC66h6AEOs/XowzKsbT9srMbX71TCXP58hkpn1BqBjdmKj1+DCA/WlBETX1K5WjQHwmV0Txrg==",
+ "dependencies": {
+ "System.CodeDom": "6.0.0"
+ }
+ },
+ "System.Management.Automation": {
+ "type": "Transitive",
+ "resolved": "7.2.2",
+ "contentHash": "Uul+12CucsJp9yhLQbAXYg8KoUldpwBhN+lCNs+FsIjFNNi+lWo5Y7vtXOI8se8Vv4d9QpDSrQWTDsJyCNkIMw==",
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "2.18.0",
+ "Microsoft.Management.Infrastructure": "2.0.0",
+ "Microsoft.PowerShell.CoreCLR.Eventing": "7.2.2",
+ "Microsoft.PowerShell.Native": "7.2.0",
+ "Microsoft.Win32.Registry.AccessControl": "6.0.0",
+ "Newtonsoft.Json": "13.0.1",
+ "System.Configuration.ConfigurationManager": "6.0.0",
+ "System.DirectoryServices": "6.0.0",
+ "System.Management": "6.0.0",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.Security.AccessControl": "6.0.0",
+ "System.Security.Cryptography.Pkcs": "6.0.0",
+ "System.Security.Permissions": "6.0.0",
+ "System.Text.Encoding.CodePages": "6.0.0"
+ }
+ },
+ "System.Memory": {
+ "type": "Transitive",
+ "resolved": "4.5.4",
+ "contentHash": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw=="
+ },
+ "System.Net.Http.WinHttpHandler": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "jubNN9jH4NzVrvEf4fGwESLBsfH8whWNbHMhgM6IwA8UCt6+/M19bbOHc21JhigvC2HQKCl8HKGZMcBtIpzqIg=="
+ },
+ "System.Numerics.Vectors": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ=="
+ },
+ "System.Private.ServiceModel": {
+ "type": "Transitive",
+ "resolved": "4.9.0",
+ "contentHash": "d3RjkrtpjUQ63PzFmm/SZ4aOXeJNP+8YW5QeP0lCJy8iX4xlHdlNLWTF9sRn9SmrFTK757kQXT9Op/R4l858uw==",
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "5.0.0",
+ "Microsoft.Extensions.ObjectPool": "5.0.10",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Reflection.DispatchProxy": "4.7.1",
+ "System.Security.Cryptography.Xml": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ }
+ },
+ "System.Reflection.Context": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "Vi+Gb41oyOYie7uLSsjRmfRg3bryUg5DssJvj3gDUl0D8z6ipSm6/yi/XNx2rcS5iVMvHcwRUHjcx7ixv0K3/w=="
+ },
+ "System.Reflection.DispatchProxy": {
+ "type": "Transitive",
+ "resolved": "4.7.1",
+ "contentHash": "C1sMLwIG6ILQ2bmOT4gh62V6oJlyF4BlHcVMrOoor49p0Ji2tA8QAoqyMcIhAdH6OHKJ8m7BU+r4LK2CUEOKqw=="
+ },
+ "System.Reflection.Metadata": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ=="
+ },
+ "System.Runtime.Caching": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==",
+ "dependencies": {
+ "System.Configuration.ConfigurationManager": "6.0.0"
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg=="
+ },
+ "System.Security.AccessControl": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ=="
+ },
+ "System.Security.Cryptography.Pkcs": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "elM3x+xSRhzQysiqo85SbidJJ2YbZlnvmh+53TuSZHsD7dNuuEWser+9EFtY+rYupBwkq2avc6ZCO3/6qACgmg==",
+ "dependencies": {
+ "System.Formats.Asn1": "6.0.0"
+ }
+ },
+ "System.Security.Cryptography.ProtectedData": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ=="
+ },
+ "System.Security.Cryptography.Xml": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "puJ4UCh9JVRwOCyCIcq71JY6Axr8Sp8E2GjTIU1Fj8hm4+oX6NEoyGFGa/+pBG8SrVxbQPSj7hvtaREyTHHsmw==",
+ "dependencies": {
+ "System.Security.AccessControl": "6.0.0",
+ "System.Security.Cryptography.Pkcs": "6.0.0"
+ }
+ },
+ "System.Security.Permissions": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",
+ "dependencies": {
+ "System.Security.AccessControl": "6.0.0",
+ "System.Windows.Extensions": "6.0.0"
+ }
+ },
+ "System.Security.Principal.Windows": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA=="
+ },
+ "System.ServiceModel.Duplex": {
+ "type": "Transitive",
+ "resolved": "4.9.0",
+ "contentHash": "Yb8MFiJxBBtm2JnfS/5SxYzm2HqkEmHu5xeaVIHXy83sNpty9wc30JifH2xgda821D6nr1UctbwbdZqN4LBUKQ==",
+ "dependencies": {
+ "System.Private.ServiceModel": "4.9.0",
+ "System.ServiceModel.Primitives": "4.9.0"
+ }
+ },
+ "System.ServiceModel.Http": {
+ "type": "Transitive",
+ "resolved": "4.9.0",
+ "contentHash": "Z+s3RkLNzJ31fDXAjqXdXp67FqsNG4V3Md3r7FOrzMkHmg61gY8faEfTFPBLxU9tax1HPWt6IHVAquXBKySJaw==",
+ "dependencies": {
+ "System.Private.ServiceModel": "4.9.0",
+ "System.ServiceModel.Primitives": "4.9.0"
+ }
+ },
+ "System.ServiceModel.NetTcp": {
+ "type": "Transitive",
+ "resolved": "4.9.0",
+ "contentHash": "nXgnnkrZERUF/KwmoLwZPkc7fqgiq94DXkmUZBvDNh/LdZquDvjy2NbhJLElpApOa5x8zEoQoBZyJ2PqNC39qg==",
+ "dependencies": {
+ "System.Private.ServiceModel": "4.9.0",
+ "System.ServiceModel.Primitives": "4.9.0"
+ }
+ },
+ "System.ServiceModel.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.9.0",
+ "contentHash": "LTFPVdS8Nf76xg/wRZkDa+2Q+GnjTOmwkTlwuoetwX37mAfYnGkf7p8ydhpDwVmomNljpUOhUUGxfjQyd5YcOg==",
+ "dependencies": {
+ "System.Private.ServiceModel": "4.9.0"
+ }
+ },
+ "System.ServiceModel.Security": {
+ "type": "Transitive",
+ "resolved": "4.9.0",
+ "contentHash": "iurpbSmPgotHps94VQ6acvL6hU2gjiuBmQI7PwLLN76jsbSpUcahT0PglccKIAwoMujATk/LWtAapBHpwCFn2g==",
+ "dependencies": {
+ "System.Private.ServiceModel": "4.9.0",
+ "System.ServiceModel.Primitives": "4.9.0"
+ }
+ },
+ "System.ServiceModel.Syndication": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "cp1mMNG87iJtE0oHXFtfWT6cfski2JNo5iU0siTPi/uN2k1CIJI6FE4jr4v3got2dzt7wBq17fSy44btun9GiA=="
+ },
+ "System.ServiceProcess.ServiceController": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "qMBvG8ZFbkXoe0Z5/D7FAAadfPkH2v7vSuh2xsLf3U6jNoejpIdeV18A0htiASsLK1CCAc/p59kaLXlt2yB1gw==",
+ "dependencies": {
+ "System.Diagnostics.EventLog": "6.0.0"
+ }
+ },
+ "System.Speech": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "GQovERMrNP0Vbtgk8LzH4PlFS6lqHgsL9WkUmv8Kkxa0m0vNakitytpHZlfJ9WR7n9WKLXh68nn2kyL9mflnLg=="
+ },
+ "System.Text.Encoding.CodePages": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "System.Text.Encodings.Web": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "System.Text.Json": {
+ "type": "Transitive",
+ "resolved": "4.6.0",
+ "contentHash": "4F8Xe+JIkVoDJ8hDAZ7HqLkjctN/6WItJIzQaifBwClC7wmoLSda/Sv2i6i1kycqDb3hWF4JCVbpAweyOKHEUA=="
+ },
+ "System.Threading.AccessControl": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "2258mqWesMch/xCpcnjJBgJP33yhpZLGLbEOm01qwq0efG4b+NG8c9sxYOWNxmDQ82swXrnQRl1Yp2wC1NrfZA==",
+ "dependencies": {
+ "System.Security.AccessControl": "6.0.0"
+ }
+ },
+ "System.Threading.Tasks.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.5.4",
+ "contentHash": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg=="
+ },
+ "System.Web.Services.Description": {
+ "type": "Transitive",
+ "resolved": "4.9.0",
+ "contentHash": "d20B3upsWddwSG5xF3eQLs0cAV3tXDsBNqP4kh02ylfgZwqfpf4f/9KiZVIGIoxULt2cKqxWs+U4AdNAJ7L8cQ=="
+ },
+ "System.Windows.Extensions": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
+ "dependencies": {
+ "System.Drawing.Common": "6.0.0"
+ }
+ },
+ "YamlDotNet": {
+ "type": "Transitive",
+ "resolved": "9.1.0",
+ "contentHash": "fuvGXU4Ec5HrsmEc+BiFTNPCRf1cGBI2kh/3RzMWgddM2M4ALhbSPoI3X3mhXZUD1qqQd9oSkFAtWjpz8z9eRg=="
+ },
+ "common": {
+ "type": "Project",
+ "dependencies": {
+ "Microsoft.Win32.Registry": "[4.5.0, )",
+ "Newtonsoft.Json": "[9.0.1, )",
+ "PowerShellProTools.VSCode": "[1.0.0, )",
+ "PowerShellStandard.Library": "[5.1.0, )",
+ "Serilog.Sinks.File": "[5.0.0, )"
+ }
+ },
+ "formdesigner.generator": {
+ "type": "Project",
+ "dependencies": {
+ "PowerShellStandard.Library": "[5.1.0, )"
+ }
+ },
+ "PowerShellProTools.VSCode": {
+ "type": "Project",
+ "dependencies": {
+ "FormDesigner.Generator": "[1.0.0, )",
+ "ICSharpCode.Decompiler": "[7.0.0.6488, )",
+ "Newtonsoft.Json": "[9.0.1, )",
+ "PowerShellStandard.Library": "[5.1.0, )"
+ }
+ },
+ "powershelltoolspro.cmdlets": {
+ "type": "Project",
+ "dependencies": {
+ "Common": "[1.0.0, )",
+ "FormDesigner.Generator": "[1.0.0, )",
+ "PowerShellStandard.Library": "[5.1.0, )",
+ "PowerShellToolsPro.Packager": "[2.0.0, )",
+ "StrongNamer": "[0.2.5, )",
+ "System.IO.Pipes.AccessControl": "[4.5.0, )",
+ "YamlDotNet": "[9.1.0, )",
+ "morelinq": "[3.3.2, )"
+ }
+ },
+ "powershelltoolspro.packager": {
+ "type": "Project",
+ "dependencies": {
+ "PowerShellStandard.Library": "[5.1.0, )",
+ "StrongNamer": "[0.2.5, )",
+ "System.Drawing.Common": "[6.0.0, )",
+ "System.Text.Json": "[4.6.0, )"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/PowerShellTools.2022/PowerShellTools.2022.csproj b/PowerShellTools.2022/PowerShellTools.2022.csproj
index 056dc8d..bf51c17 100644
--- a/PowerShellTools.2022/PowerShellTools.2022.csproj
+++ b/PowerShellTools.2022/PowerShellTools.2022.csproj
@@ -1,8 +1,10 @@
-
+
17.0
+ true
false
diff --git a/PowerShellTools.2022/packages.lock.json b/PowerShellTools.2022/packages.lock.json
new file mode 100644
index 0000000..e342688
--- /dev/null
+++ b/PowerShellTools.2022/packages.lock.json
@@ -0,0 +1,1863 @@
+{
+ "version": 1,
+ "dependencies": {
+ ".NETFramework,Version=v4.7.2": {
+ "Microsoft.ApplicationInsights": {
+ "type": "Direct",
+ "requested": "[2.22.0, )",
+ "resolved": "2.22.0",
+ "contentHash": "3AOM9bZtku7RQwHyMEY3tQMrHIgjcfRDa6YQpd/QG2LDGvMydSlL9Di+8LLMt7J2RDdfJ7/2jdYv6yHcMJAnNw==",
+ "dependencies": {
+ "System.Diagnostics.DiagnosticSource": "5.0.0"
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection": {
+ "type": "Direct",
+ "requested": "[7.0.0, )",
+ "resolved": "7.0.0",
+ "contentHash": "elNeOmkeX3eDVG6pYVeV82p29hr+UKDaBhrZyWvWLw/EVZSYEkZlQdkp0V39k/Xehs2Qa0mvoCvkVj3eQxNQ1Q==",
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "7.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ }
+ },
+ "Microsoft.VisualStudio.Debugger.InteropA": {
+ "type": "Direct",
+ "requested": "[17.5.33428.366, )",
+ "resolved": "17.5.33428.366",
+ "contentHash": "blJGo+87N49AS5qXx9J7nErmPTxKQJ82pM+Kqp5RJUgx5ATL+QhE5m0q8OsygKyfpeLemOCrLY8I8EycRA5/tA==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.5.33428.366"
+ }
+ },
+ "Microsoft.VisualStudio.SDK": {
+ "type": "Direct",
+ "requested": "[17.8.37222, )",
+ "resolved": "17.8.37222",
+ "contentHash": "AdVgFm0jWVRU7Nge9FzpMZUZdJ50LmfLv/ZNN0eiZ+Iiuzx6tI+3LslZ/qILLn/FwYtU726oM/Tj1iO69Yy/eQ==",
+ "dependencies": {
+ "MessagePack": "2.5.108",
+ "MessagePack.Annotations": "2.5.108",
+ "Microsoft.Bcl.AsyncInterfaces": "7.0.0",
+ "Microsoft.Build.Framework": "17.8.3",
+ "Microsoft.CodeAnalysis.BannedApiAnalyzers": "3.3.2",
+ "Microsoft.IO.Redist": "6.0.0",
+ "Microsoft.NET.StringTools": "17.8.3",
+ "Microsoft.ServiceHub.Analyzers": "4.4.16",
+ "Microsoft.ServiceHub.Framework": "4.4.16",
+ "Microsoft.ServiceHub.Resources": "4.4.2142",
+ "Microsoft.VisualStudio.CommandBars": "17.8.37221",
+ "Microsoft.VisualStudio.ComponentModelHost": "17.8.222",
+ "Microsoft.VisualStudio.Composition": "17.7.26",
+ "Microsoft.VisualStudio.Composition.Analyzers": "17.7.26",
+ "Microsoft.VisualStudio.CoreUtility": "17.8.222",
+ "Microsoft.VisualStudio.Debugger.Interop.12.0": "17.8.37221",
+ "Microsoft.VisualStudio.Debugger.Interop.14.0": "17.8.37221",
+ "Microsoft.VisualStudio.Debugger.Interop.15.0": "17.8.37221",
+ "Microsoft.VisualStudio.Debugger.Interop.16.0": "17.8.37221",
+ "Microsoft.VisualStudio.Designer.Interfaces": "17.8.37221",
+ "Microsoft.VisualStudio.Editor": "17.8.222",
+ "Microsoft.VisualStudio.GraphModel": "17.8.37221",
+ "Microsoft.VisualStudio.ImageCatalog": "17.8.37221",
+ "Microsoft.VisualStudio.Imaging": "17.8.37221",
+ "Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime": "17.8.37221",
+ "Microsoft.VisualStudio.Interop": "17.8.37221",
+ "Microsoft.VisualStudio.Language": "17.8.222",
+ "Microsoft.VisualStudio.Language.Intellisense": "17.8.222",
+ "Microsoft.VisualStudio.Language.NavigateTo.Interfaces": "17.8.222",
+ "Microsoft.VisualStudio.Language.StandardClassification": "17.8.222",
+ "Microsoft.VisualStudio.LanguageServer.Client": "17.8.36",
+ "Microsoft.VisualStudio.Linux.ConnectionManager.Store": "17.8.37221",
+ "Microsoft.VisualStudio.OLE.Interop": "17.8.37221",
+ "Microsoft.VisualStudio.Package.LanguageService.15.0": "17.8.37221",
+ "Microsoft.VisualStudio.ProjectAggregator": "17.8.37221",
+ "Microsoft.VisualStudio.RemoteControl": "16.3.52",
+ "Microsoft.VisualStudio.RpcContracts": "17.8.9",
+ "Microsoft.VisualStudio.SDK.Analyzers": "16.10.10",
+ "Microsoft.VisualStudio.Setup.Configuration.Interop": "3.8.2112",
+ "Microsoft.VisualStudio.Shell.15.0": "17.8.37221",
+ "Microsoft.VisualStudio.Shell.Design": "17.8.37221",
+ "Microsoft.VisualStudio.Shell.Framework": "17.8.37221",
+ "Microsoft.VisualStudio.Shell.Interop": "17.8.37221",
+ "Microsoft.VisualStudio.Shell.Interop.10.0": "17.8.37221",
+ "Microsoft.VisualStudio.Shell.Interop.11.0": "17.8.37221",
+ "Microsoft.VisualStudio.Shell.Interop.12.0": "17.8.37221",
+ "Microsoft.VisualStudio.Shell.Interop.8.0": "17.8.37221",
+ "Microsoft.VisualStudio.Shell.Interop.9.0": "17.8.37221",
+ "Microsoft.VisualStudio.TaskRunnerExplorer.14.0": "14.0.0",
+ "Microsoft.VisualStudio.Telemetry": "17.8.143",
+ "Microsoft.VisualStudio.Text.Data": "17.8.222",
+ "Microsoft.VisualStudio.Text.Logic": "17.8.222",
+ "Microsoft.VisualStudio.Text.UI": "17.8.222",
+ "Microsoft.VisualStudio.Text.UI.Wpf": "17.8.222",
+ "Microsoft.VisualStudio.TextManager.Interop": "17.8.37221",
+ "Microsoft.VisualStudio.TextManager.Interop.10.0": "17.8.37221",
+ "Microsoft.VisualStudio.TextManager.Interop.11.0": "17.8.37221",
+ "Microsoft.VisualStudio.TextManager.Interop.12.0": "17.8.37221",
+ "Microsoft.VisualStudio.TextManager.Interop.8.0": "17.8.37221",
+ "Microsoft.VisualStudio.TextManager.Interop.9.0": "17.8.37221",
+ "Microsoft.VisualStudio.TextTemplating.VSHost": "17.8.37222",
+ "Microsoft.VisualStudio.Threading": "17.8.14",
+ "Microsoft.VisualStudio.Threading.Analyzers": "17.8.14",
+ "Microsoft.VisualStudio.Utilities": "17.8.37221",
+ "Microsoft.VisualStudio.Utilities.Internal": "16.3.56",
+ "Microsoft.VisualStudio.VCProjectEngine": "17.8.37222",
+ "Microsoft.VisualStudio.VSHelp": "17.8.37221",
+ "Microsoft.VisualStudio.VSHelp80": "17.8.37221",
+ "Microsoft.VisualStudio.Validation": "17.8.8",
+ "Microsoft.VisualStudio.WCFReference.Interop": "17.8.37221",
+ "Microsoft.VisualStudio.Web.BrowserLink.12.0": "12.0.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "Microsoft.Win32.Registry": "5.0.0",
+ "Nerdbank.Streams": "2.10.69",
+ "Newtonsoft.Json": "13.0.3",
+ "StreamJsonRpc": "2.17.8",
+ "System.Buffers": "4.5.1",
+ "System.Collections.Immutable": "7.0.0",
+ "System.ComponentModel.Composition": "7.0.0",
+ "System.Composition": "7.0.0",
+ "System.Composition.AttributedModel": "7.0.0",
+ "System.Composition.Convention": "7.0.0",
+ "System.Composition.Hosting": "7.0.0",
+ "System.Composition.Runtime": "7.0.0",
+ "System.Composition.TypedParts": "7.0.0",
+ "System.Diagnostics.DiagnosticSource": "7.0.2",
+ "System.IO.Pipelines": "7.0.0",
+ "System.Memory": "4.5.5",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Reflection.Metadata": "7.0.0",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.Security.AccessControl": "6.0.0",
+ "System.Security.Principal.Windows": "5.0.0",
+ "System.Text.Encodings.Web": "7.0.0",
+ "System.Text.Json": "7.0.3",
+ "System.Threading.AccessControl": "7.0.0",
+ "System.Threading.Tasks.Dataflow": "7.0.0",
+ "System.Threading.Tasks.Extensions": "4.5.4",
+ "System.ValueTuple": "4.5.0",
+ "VSLangProj": "17.8.37221",
+ "VSLangProj100": "17.8.37221",
+ "VSLangProj110": "17.8.37221",
+ "VSLangProj140": "17.8.37221",
+ "VSLangProj150": "17.8.37221",
+ "VSLangProj157": "17.8.37221",
+ "VSLangProj158": "17.8.37221",
+ "VSLangProj165": "17.8.37221",
+ "VSLangProj2": "17.8.37221",
+ "VSLangProj80": "17.8.37221",
+ "VSLangProj90": "17.8.37221",
+ "envdte": "17.8.37221",
+ "envdte100": "17.8.37221",
+ "envdte80": "17.8.37221",
+ "envdte90": "17.8.37221",
+ "envdte90a": "17.8.37221",
+ "stdole": "17.8.37221"
+ }
+ },
+ "Microsoft.VisualStudio.Workspace": {
+ "type": "Direct",
+ "requested": "[16.3.43, )",
+ "resolved": "16.3.43",
+ "contentHash": "MrUWPyOEH/HrHZO6IChXpeBS8q7x/Pzl5orAAEmk03fF8l8fK0EQMB92H2xNq2cY6oP+/XpLvkUSPCdwMQbL6A==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Composition": "15.8.117",
+ "Microsoft.VisualStudio.Threading": "15.8.132",
+ "Microsoft.VisualStudio.Threading.Analyzers": "15.8.132",
+ "System.Collections.Immutable": "1.5.0"
+ }
+ },
+ "Microsoft.VisualStudio.Workspace.Extensions": {
+ "type": "Direct",
+ "requested": "[16.3.43, )",
+ "resolved": "16.3.43",
+ "contentHash": "vBLZWxUtT0+7r3q7m23f85MQTPGyuLnAD2beEsYbq6rxFqKCZtIuriM5+ktwlCIf3Qy9dsVNClEDcga8WGrU0Q==",
+ "dependencies": {
+ "Microsoft.Build": "15.8.166",
+ "Microsoft.VisualStudio.Threading": "15.8.132",
+ "Microsoft.VisualStudio.Threading.Analyzers": "15.8.132",
+ "Microsoft.VisualStudio.Workspace": "16.3.43"
+ }
+ },
+ "Microsoft.VisualStudio.Workspace.VSIntegration": {
+ "type": "Direct",
+ "requested": "[16.3.43, )",
+ "resolved": "16.3.43",
+ "contentHash": "5j4mWUO6nXujIX4FtXrD33MXdzFKQMUpwEJccayz+LcIOQAxkGTGpSXMIRR3T562qyNFz/LREcMK3ruESwn3sw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Threading.Analyzers": "15.8.132",
+ "Microsoft.VisualStudio.Workspace": "16.3.43",
+ "Microsoft.VisualStudio.Workspace.Extensions": "16.3.43"
+ }
+ },
+ "Microsoft.VSSDK.BuildTools": {
+ "type": "Direct",
+ "requested": "[17.8.2365, )",
+ "resolved": "17.8.2365",
+ "contentHash": "lf4Kyl1e8cWcUi67gBCoBiLPrvFVpfADo3dDrRrRxOeBR3mcuttCaHwc6yAMLv5lAQs2c8TZy2dwQoUXhLBgZA==",
+ "dependencies": {
+ "Microsoft.VisualStudio.SDK.Analyzers": "16.10.10",
+ "Microsoft.VsSDK.CompatibilityAnalyzer": "17.8.2365"
+ }
+ },
+ "Microsoft.VSSDK.VsixSignTool": {
+ "type": "Direct",
+ "requested": "[16.2.29116.78, )",
+ "resolved": "16.2.29116.78",
+ "contentHash": "HMivXxSU2deRjrDLzYhW48BuYcWOaGcFPMur9VtK5SU/YDFa+55LrT8hikE1wsOSEGMWwC5nthYcsA3UqJISjA=="
+ },
+ "Microsoft.Win32.Registry": {
+ "type": "Direct",
+ "requested": "[5.0.0, )",
+ "resolved": "5.0.0",
+ "contentHash": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
+ "dependencies": {
+ "System.Security.AccessControl": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ }
+ },
+ "ModernWpfUI.Signed": {
+ "type": "Direct",
+ "requested": "[0.9.4, )",
+ "resolved": "0.9.4",
+ "contentHash": "hTv9N5TgsSe9XD+ZeDsyBXTVXewJoFpPCMDYmnKndgZLl8eqXRP9CvzmJTA/+L+Dyk01vQP2fPsf/imkQGqwug==",
+ "dependencies": {
+ "Microsoft.Windows.SDK.Contracts": "10.0.18362.2005",
+ "System.ValueTuple": "4.5.0"
+ }
+ },
+ "Nito.AsyncEx.Context": {
+ "type": "Direct",
+ "requested": "[5.1.2, )",
+ "resolved": "5.1.2",
+ "contentHash": "rMwL7Nj3oNyvFu/jxUzQ/YBobEkM2RQHe+5mpCDRyq6mfD7vCj7Z3rjB6XgpM6Mqcx1CA2xGv0ascU/2Xk8IIg==",
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.1.2"
+ }
+ },
+ "PowerShellStandard.Library": {
+ "type": "Direct",
+ "requested": "[5.1.1, )",
+ "resolved": "5.1.1",
+ "contentHash": "e31xJjG+Kjbv6YF3Yq6D4Dl3or8v7LrNF41k3CXrWozW6hR1zcOe5KYuZJaGSiAgLnwP8wcW+I3+IWEzMPZKXQ=="
+ },
+ "PowerShellTools.Interfaces": {
+ "type": "Direct",
+ "requested": "[1.0.2, )",
+ "resolved": "1.0.2",
+ "contentHash": "Rm19y9nWEa7cWI9riU8uM+GRbzWb5dI7k7bVna9Gn9W5jVtGwtT/kvZEfJV7Zrg9AMe60kblnIC28lOot+GtAA=="
+ },
+ "Serilog.Sinks.File": {
+ "type": "Direct",
+ "requested": "[5.0.0, )",
+ "resolved": "5.0.0",
+ "contentHash": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==",
+ "dependencies": {
+ "Serilog": "2.10.0"
+ }
+ },
+ "StrongNamer": {
+ "type": "Direct",
+ "requested": "[0.2.5, )",
+ "resolved": "0.2.5",
+ "contentHash": "1IWl8gYnsTC6NXHz63iDpXL8r0y5x0M/Cnq/Ju5uM17gTOQYSeclMkgQsvmGglJEqAwVxayY1sIUR3bb2MAy5Q=="
+ },
+ "System.Diagnostics.DiagnosticSource": {
+ "type": "Direct",
+ "requested": "[7.0.2, )",
+ "resolved": "7.0.2",
+ "contentHash": "hYr3I9N9811e0Bjf2WNwAGGyTuAFbbTgX1RPLt/3Wbm68x3IGcX5Cl75CMmgT6WlNwLQ2tCCWfqYPpypjaf2xA==",
+ "dependencies": {
+ "System.Memory": "4.5.5",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "envdte": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "oUUkRaXeLltxviRlPdbb36qZyBvAGRsEIRx1JmKlOUh5kquxBV87i1Gs9IFLkK3fQkTr1OmLftLV8/jtnMtPLQ==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "envdte100": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "+n803mFxfKK9LESJKJOz3mqITj2tAqzIvzyutd7FCd7Gcl11Muevf+8mMGok6pwIn/fwTZLr0vU4YS2P7B2cyw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "envdte80": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "SJUSrKP7LqIJZqI5C+kHCEmmzUgx+4LGAZ/+d1NlM0qVU199RKOHfXwI+EQaow4TshZZoJ+5bUBrubTiXL/JUQ==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "envdte90": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "Jm2vw28SrzCQ0leXPGBdBJqxfWB4msNmybR5DNe0RNQPgDBngLzDB8Sm1Oz/C9L2bXDaaLvod8jZJ0/weGCO4A==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "envdte90a": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "beVdjQTf5HDDsGgruy/uSmLR/uLdCOi8PB4EHbuPHzAOxASyRq8fNzbdgZ+dbhYJOgWOImUG0ngfjW7pYqXqwQ==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "ICSharpCode.Decompiler": {
+ "type": "Transitive",
+ "resolved": "7.0.0.6488",
+ "contentHash": "1enxZGgiZgnka6VcHpBxkcuuNo462+YVPzRYUfe2/eF3tcDuLk9/yKEfQnXC265sRKnDhks+2Xhk0PlyagM5EA==",
+ "dependencies": {
+ "System.Collections.Immutable": "5.0.0",
+ "System.Reflection.Metadata": "5.0.0"
+ }
+ },
+ "MessagePack": {
+ "type": "Transitive",
+ "resolved": "2.5.108",
+ "contentHash": "kcVRbdWP3xNWLZmmpm4DFO+kuXf6mUR2mHZ27WoZIEFIv9hazuUd80injXhNrZnlq/FklAdCsLOil5M76I4Ndg==",
+ "dependencies": {
+ "MessagePack.Annotations": "2.5.108",
+ "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
+ "Microsoft.NET.StringTools": "17.4.0",
+ "System.Collections.Immutable": "6.0.0",
+ "System.Reflection.Emit": "4.7.0",
+ "System.Reflection.Emit.Lightweight": "4.7.0",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ }
+ },
+ "MessagePack.Annotations": {
+ "type": "Transitive",
+ "resolved": "2.5.108",
+ "contentHash": "28aNCvfJClgwaKr26gf2S6LT+C1PNyPxiG+ihYpy8uCJsRLJEDoCt2I0Uk5hqOPQ8P8hI0ESy520oMkZkPmsOQ=="
+ },
+ "Microsoft.Bcl.AsyncInterfaces": {
+ "type": "Transitive",
+ "resolved": "7.0.0",
+ "contentHash": "3aeMZ1N0lJoSyzqiP03hqemtb1BijhsJADdobn/4nsMJ8V1H+CrpuduUe4hlRdx+ikBQju1VGjMD1GJ3Sk05Eg==",
+ "dependencies": {
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ }
+ },
+ "Microsoft.Build": {
+ "type": "Transitive",
+ "resolved": "15.9.20",
+ "contentHash": "b42hOwbOknlaqSjvmGdBRSgK6uKqsK3SL5977KGXgPkCJPcpb9hUIisjuFygVe9xuCEcKPZx8CRB+q6pf2M4Yg==",
+ "dependencies": {
+ "Microsoft.Build.Framework": "15.9.20",
+ "Microsoft.VisualStudio.Setup.Configuration.Interop": "1.16.30",
+ "System.Collections.Immutable": "1.5.0",
+ "System.IO.Compression": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
+ "System.Threading.Tasks.Dataflow": "4.5.24"
+ }
+ },
+ "Microsoft.Build.Framework": {
+ "type": "Transitive",
+ "resolved": "17.8.3",
+ "contentHash": "NrQZJW8TlKVPx72yltGb8SVz3P5mNRk9fNiD/ao8jRSk48WqIIdCn99q4IjlVmPcruuQ+yLdjNQLL8Rb4c916g==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Setup.Configuration.Interop": "3.2.2146",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "Microsoft.Build.Tasks.Core": {
+ "type": "Transitive",
+ "resolved": "15.9.20",
+ "contentHash": "q1YB/wGcivg8BrdTmq/ZtIKhViNPZ9jdf8dqh//lE9mQp36qSgwn+Qb+6ZyD/THMS+tLC1SJaC/QKO0v6+hBqg==",
+ "dependencies": {
+ "Microsoft.Build.Framework": "15.9.20",
+ "Microsoft.Build.Utilities.Core": "15.9.20",
+ "Microsoft.VisualStudio.Setup.Configuration.Interop": "1.16.30",
+ "System.Collections.Immutable": "1.5.0",
+ "System.Threading.Tasks.Dataflow": "4.5.24"
+ }
+ },
+ "Microsoft.Build.Utilities.Core": {
+ "type": "Transitive",
+ "resolved": "15.9.20",
+ "contentHash": "s5F2IDARivpFJ+RiwOBnCt6Higu88nhDYfaUWwJ2ecBSf83HZsc3E/EjyQIs+4fPAeS5IZsL2ak7gOdxEXubSA==",
+ "dependencies": {
+ "Microsoft.Build.Framework": "15.9.20",
+ "Microsoft.VisualStudio.Setup.Configuration.Interop": "1.16.30",
+ "System.Collections.Immutable": "1.5.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0"
+ }
+ },
+ "Microsoft.CodeAnalysis.BannedApiAnalyzers": {
+ "type": "Transitive",
+ "resolved": "3.3.2",
+ "contentHash": "LlcsDRSYfkJFWOdDpysY/4Ph4llHc8DLOc3roFTz9+216vl+vwVGfbys2rcSmhZCTDv/0kxSs2oOdd9SX2NiVg=="
+ },
+ "Microsoft.CSharp": {
+ "type": "Transitive",
+ "resolved": "4.7.0",
+ "contentHash": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA=="
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions": {
+ "type": "Transitive",
+ "resolved": "7.0.0",
+ "contentHash": "h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==",
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "7.0.0",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ }
+ },
+ "Microsoft.IO.Redist": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "uxXZ8pAcYtIJm8iqu/0e+CkM/VSwfgbHpnCDu7s8+gn/VUD5R6PxH3RGZFPaHgTisrlwD+BIyL5TqG6qwuZtOQ==",
+ "dependencies": {
+ "System.Buffers": "4.5.1",
+ "System.Memory": "4.5.4"
+ }
+ },
+ "Microsoft.NET.StringTools": {
+ "type": "Transitive",
+ "resolved": "17.8.3",
+ "contentHash": "y6DiuacjlIfXH3XVQG5htf+4oheinZAo7sHbITB3z7yCXQec48f9ZhGSXkr+xn1bfl73Yc3ZQEW2peJ5X68AvQ==",
+ "dependencies": {
+ "System.Memory": "4.5.5",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "Microsoft.NETCore.Platforms": {
+ "type": "Transitive",
+ "resolved": "1.1.1",
+ "contentHash": "TMBuzAHpTenGbGgk0SMTwyEkyijY/Eae4ZGsFNYJvAr/LDn1ku3Etp3FPxChmDp5HHF3kzJuoaa08N0xjqAJfQ=="
+ },
+ "Microsoft.NETCore.Targets": {
+ "type": "Transitive",
+ "resolved": "1.1.3",
+ "contentHash": "3Wrmi0kJDzClwAC+iBdUBpEKmEle8FQNsCs77fkiOIw/9oYA07bL1EZNX0kQ2OMN3xpwvl0vAtOCYY3ndDNlhQ=="
+ },
+ "Microsoft.ServiceHub.Analyzers": {
+ "type": "Transitive",
+ "resolved": "4.4.16",
+ "contentHash": "qq+4SrPzliljLV6Tba/DvDRl+vUgDBJxNbxdM6LNpQqdlgwo1VsgzCha/VdvN/0ft5POAuRoxdBUTrUt5t48jg=="
+ },
+ "Microsoft.ServiceHub.Framework": {
+ "type": "Transitive",
+ "resolved": "4.4.16",
+ "contentHash": "W5x+zJanZbgyqFW9ghjLEvJ9MPJxPorSGkUmI/Tip7PVyQGokXFaZD3MbrOf6u6JrEsXwimiA6V0Hzznwgvc+Q==",
+ "dependencies": {
+ "Microsoft.ServiceHub.Analyzers": "4.4.16",
+ "Microsoft.VisualStudio.Composition": "17.6.17",
+ "Microsoft.VisualStudio.Threading": "17.6.40",
+ "Microsoft.VisualStudio.Validation": "17.6.11",
+ "Nerdbank.Streams": "2.10.69",
+ "StreamJsonRpc": "2.16.41",
+ "System.Collections.Immutable": "7.0.0",
+ "System.Text.Json": "7.0.3"
+ }
+ },
+ "Microsoft.ServiceHub.Resources": {
+ "type": "Transitive",
+ "resolved": "4.4.2142",
+ "contentHash": "GcBf1+0f+JYz2YDjH5izh1aT/IPD5wizyTuC91MhknS7eX3EqiLc+b552JWWIVznfEizANSqRLcg/kWVqWK69A=="
+ },
+ "Microsoft.VisualStudio.CommandBars": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "XFEiSjBT0HOPoIW5apaY5dAtuixgOKgxz4B9qO7mTo4Q9gpBnIdK72RgKxe8h/o2Ro44pOSiqhW9IkKgwf6JBw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "Microsoft.VisualStudio.ComponentModelHost": {
+ "type": "Transitive",
+ "resolved": "17.8.222",
+ "contentHash": "OKVIOFREi3QjY0lug0bUg1vjO57KMsfdgKlQ7JWVuoMtxJKReXKcIjaoXS5+cO/jhVOY0gUhDnDgaPUj9J5L8A==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime": "17.8.36541",
+ "Microsoft.VisualStudio.Interop": "17.8.36711",
+ "Microsoft.VisualStudio.Validation": "17.8.8",
+ "System.ComponentModel.Composition": "7.0.0"
+ }
+ },
+ "Microsoft.VisualStudio.Composition": {
+ "type": "Transitive",
+ "resolved": "17.7.26",
+ "contentHash": "yLNNJxssFeUTyhKtb/9bt34ay4Ls4ucywboWzFD105SSJDntU+lPHqYOqXDqg1I4AdnTdTYBxEU9P+Oy9+jgwA==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Composition.Analyzers": "17.7.26",
+ "Microsoft.VisualStudio.Validation": "17.6.11",
+ "System.Collections.Immutable": "7.0.0",
+ "System.ComponentModel.Composition": "7.0.0",
+ "System.Composition": "7.0.0",
+ "System.Composition.AttributedModel": "7.0.0",
+ "System.Reflection.Metadata": "7.0.0",
+ "System.Threading.Tasks.Dataflow": "7.0.0"
+ }
+ },
+ "Microsoft.VisualStudio.Composition.Analyzers": {
+ "type": "Transitive",
+ "resolved": "17.7.26",
+ "contentHash": "bHMf90xuroCB7WHWBxq7Wf/IKKqzJTmAzRSlMlCHGK/kDUaQwzGVd1G60d/6d4WEYQHdBGkxCtSnBQNwBeqPYQ=="
+ },
+ "Microsoft.VisualStudio.CoreUtility": {
+ "type": "Transitive",
+ "resolved": "17.8.222",
+ "contentHash": "FhxxQeZaYY4+hVrwMBk8hUiAs1ePr7UppHb4eNbNIPmCVvvVwALjqJ5/oG+VCwcFkaySYvCisxsGFL+70dVtzg==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Threading": "17.8.14",
+ "Microsoft.VisualStudio.Threading.Analyzers": "17.8.14",
+ "Microsoft.VisualStudio.Validation": "17.8.8",
+ "Microsoft.Win32.Registry": "5.0.0",
+ "System.Collections.Immutable": "7.0.0",
+ "System.ComponentModel.Composition": "7.0.0",
+ "System.Memory": "4.5.5",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "Microsoft.VisualStudio.Debugger.Interop.12.0": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "Q1yyAAC66aUkFXLpOXgx67EeCowN1m5mECgs6+Oo4C3Nl31IrPstSsOiaHgAcSwClfW+M5qvXShrdd7+Bo6lYA=="
+ },
+ "Microsoft.VisualStudio.Debugger.Interop.14.0": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "w9QWJuBtbmELf27XExFUNRa1eJN2t9VMN/gdsipFpMgxz/HqfnMfvYpG7AOB62uDHLmBZK3BukKF0RY/B5aElg=="
+ },
+ "Microsoft.VisualStudio.Debugger.Interop.15.0": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "ZjSToeKTwdD4nqRxXtfCVOnNNmclL42aaUrsfUz+Y96v4Y3rW9248uevGFx4TNW1AuTk2bQMcQc6lJxv3rzHIg=="
+ },
+ "Microsoft.VisualStudio.Debugger.Interop.16.0": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "5OV7bkTt6CZTBQKij5z8ITCOP54zpI69zfZx0Bl/RDBO3MBvsbspJ5yfRRAhvGVrDyWY7OL9wLe33cJutm8+Mg=="
+ },
+ "Microsoft.VisualStudio.Designer.Interfaces": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "/XIynBXE8aqmR167+fVTLzYo7lC8v80cvh/RQf1/Iy4LftwV9SWuelG7b+/Olg15CqIAtRFEkNZn99ptFf22FQ==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "Microsoft.VisualStudio.Editor": {
+ "type": "Transitive",
+ "resolved": "17.8.222",
+ "contentHash": "ClXAAli+8zWGWgJnld04Fk6aRASxKMX1DbCRcMwGg9IYiKEmTeWcTYaJ3JbSovAFguqTwEdD2ig1+ti643j+Aw==",
+ "dependencies": {
+ "Microsoft.ServiceHub.Framework": "4.4.16",
+ "Microsoft.VisualStudio.ComponentModelHost": "17.8.181",
+ "Microsoft.VisualStudio.Composition": "17.7.26",
+ "Microsoft.VisualStudio.CoreUtility": "17.8.222",
+ "Microsoft.VisualStudio.GraphModel": "17.8.36711",
+ "Microsoft.VisualStudio.ImageCatalog": "17.8.36711",
+ "Microsoft.VisualStudio.Imaging": "17.8.36711",
+ "Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime": "17.8.36541",
+ "Microsoft.VisualStudio.Interop": "17.8.36711",
+ "Microsoft.VisualStudio.Language": "17.8.222",
+ "Microsoft.VisualStudio.ProjectAggregator": "17.8.36541",
+ "Microsoft.VisualStudio.RpcContracts": "17.8.9",
+ "Microsoft.VisualStudio.SDK.Analyzers": "16.10.10",
+ "Microsoft.VisualStudio.Shell.15.0": "17.8.36711",
+ "Microsoft.VisualStudio.Shell.Framework": "17.8.36711",
+ "Microsoft.VisualStudio.Telemetry": "17.8.32",
+ "Microsoft.VisualStudio.Text.Data": "17.8.222",
+ "Microsoft.VisualStudio.Text.Logic": "17.8.222",
+ "Microsoft.VisualStudio.Text.UI": "17.8.222",
+ "Microsoft.VisualStudio.Text.UI.Wpf": "17.8.222",
+ "Microsoft.VisualStudio.Threading": "17.8.14",
+ "Microsoft.VisualStudio.Threading.Analyzers": "17.8.14",
+ "Microsoft.VisualStudio.Utilities": "17.8.36711",
+ "Microsoft.VisualStudio.Validation": "17.8.8",
+ "Microsoft.Win32.Registry": "5.0.0",
+ "Newtonsoft.Json": "13.0.3",
+ "StreamJsonRpc": "2.17.3",
+ "System.Collections.Immutable": "7.0.0",
+ "System.ComponentModel.Composition": "7.0.0",
+ "System.Memory": "4.5.5",
+ "System.Private.Uri": "4.3.2",
+ "System.Reflection.Metadata": "7.0.0",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.ValueTuple": "4.5.0"
+ }
+ },
+ "Microsoft.VisualStudio.GraphModel": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "83/EskGdVzqFkHSJC2Uri6ztuKngjF08GYzVx7oFxRTyFoFvewSdbQYZT+LF3NDlqAdLM9dQlyOmKCAI0w1edQ==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221",
+ "System.ComponentModel.Composition": "7.0.0"
+ }
+ },
+ "Microsoft.VisualStudio.ImageCatalog": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "eakv0hWua5/F7jxVg1lsjNIkO9MDqiwO7zvynvJ/wxD/1c1FE8jyltyFdtyY96wt/1JFPZtykEO3/UjSlpcc/g==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime": "17.8.37221",
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "Microsoft.VisualStudio.Imaging": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "LCkO5hgoNQFHfgeFOdnW79IrzMj9BKefxXsc2H7kbaL2qT6uBXd8HwGN2l37sOqPleqpK4lR00Eweec8LSkuTA==",
+ "dependencies": {
+ "MessagePack": "2.5.108",
+ "MessagePack.Annotations": "2.5.108",
+ "Microsoft.Bcl.AsyncInterfaces": "7.0.0",
+ "Microsoft.IO.Redist": "6.0.0",
+ "Microsoft.NET.StringTools": "17.8.3",
+ "Microsoft.ServiceHub.Analyzers": "4.4.16",
+ "Microsoft.ServiceHub.Framework": "4.4.16",
+ "Microsoft.ServiceHub.Resources": "4.4.2142",
+ "Microsoft.VisualStudio.Composition": "17.7.26",
+ "Microsoft.VisualStudio.Composition.Analyzers": "17.7.26",
+ "Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime": "17.8.37221",
+ "Microsoft.VisualStudio.RemoteControl": "16.3.52",
+ "Microsoft.VisualStudio.RpcContracts": "17.8.9",
+ "Microsoft.VisualStudio.Telemetry": "17.8.143",
+ "Microsoft.VisualStudio.Threading": "17.8.14",
+ "Microsoft.VisualStudio.Threading.Analyzers": "17.8.14",
+ "Microsoft.VisualStudio.Utilities": "17.8.37221",
+ "Microsoft.VisualStudio.Utilities.Internal": "16.3.56",
+ "Microsoft.VisualStudio.Validation": "17.8.8",
+ "Microsoft.Win32.Registry": "5.0.0",
+ "Nerdbank.Streams": "2.10.69",
+ "Newtonsoft.Json": "13.0.3",
+ "StreamJsonRpc": "2.17.8",
+ "System.Buffers": "4.5.1",
+ "System.Collections.Immutable": "7.0.0",
+ "System.ComponentModel.Composition": "7.0.0",
+ "System.Composition": "7.0.0",
+ "System.Composition.AttributedModel": "7.0.0",
+ "System.Composition.Convention": "7.0.0",
+ "System.Composition.Hosting": "7.0.0",
+ "System.Composition.Runtime": "7.0.0",
+ "System.Composition.TypedParts": "7.0.0",
+ "System.Diagnostics.DiagnosticSource": "7.0.2",
+ "System.IO.Pipelines": "7.0.0",
+ "System.Memory": "4.5.5",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Reflection.Metadata": "7.0.0",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.Security.AccessControl": "6.0.0",
+ "System.Security.Principal.Windows": "5.0.0",
+ "System.Text.Encodings.Web": "7.0.0",
+ "System.Text.Json": "7.0.3",
+ "System.Threading.AccessControl": "7.0.0",
+ "System.Threading.Tasks.Dataflow": "7.0.0",
+ "System.Threading.Tasks.Extensions": "4.5.4",
+ "System.ValueTuple": "4.5.0"
+ }
+ },
+ "Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "V8rncUogXhQuChYx/aepDF/dvPOp20hqAWUrbM/Hwfp6NGhdAFBe1FbPVJXVfBWeC4HyD8/NatMaAgZ7tS43ig=="
+ },
+ "Microsoft.VisualStudio.Interop": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "24I1zWVFAC1H8OXV7R4n3c/e2lg8zYnpYUtid5JmQL6SsE98KAK+D4OQfbYYDn5l3KazDxwovNqQVCMdL78z+A=="
+ },
+ "Microsoft.VisualStudio.Language": {
+ "type": "Transitive",
+ "resolved": "17.8.222",
+ "contentHash": "w4va5tdBPQKrdcssjtwIVOVtVxqK9wm+D6cUEB1tNY+5Of5JFA8A5AzNuKUVxwK5mZ3/7Vh1RakwUEIlafr0DQ==",
+ "dependencies": {
+ "Microsoft.VisualStudio.CoreUtility": "17.8.222",
+ "Microsoft.VisualStudio.Text.Data": "17.8.222",
+ "Microsoft.VisualStudio.Text.Logic": "17.8.222",
+ "Microsoft.VisualStudio.Text.UI": "17.8.222",
+ "Microsoft.VisualStudio.Threading": "17.8.14",
+ "Microsoft.VisualStudio.Threading.Analyzers": "17.8.14",
+ "Microsoft.VisualStudio.Validation": "17.8.8",
+ "Microsoft.Win32.Registry": "5.0.0",
+ "Newtonsoft.Json": "13.0.3",
+ "StreamJsonRpc": "2.17.3",
+ "System.Collections.Immutable": "7.0.0",
+ "System.ComponentModel.Composition": "7.0.0",
+ "System.Memory": "4.5.5",
+ "System.Private.Uri": "4.3.2",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.ValueTuple": "4.5.0"
+ }
+ },
+ "Microsoft.VisualStudio.Language.Intellisense": {
+ "type": "Transitive",
+ "resolved": "17.8.222",
+ "contentHash": "i19SkMOpH9LcWfpkYPTiFjY1icBSFAH8+1g1k3mnMT4BARIjpqzluMUSbI7n9Uo730+SrF9J1dBOMx3K4ox1zw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.CoreUtility": "17.8.222",
+ "Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime": "17.8.36541",
+ "Microsoft.VisualStudio.Language": "17.8.222",
+ "Microsoft.VisualStudio.Text.Data": "17.8.222",
+ "Microsoft.VisualStudio.Text.Logic": "17.8.222",
+ "Microsoft.VisualStudio.Text.UI": "17.8.222",
+ "Microsoft.VisualStudio.Threading": "17.8.14",
+ "Microsoft.VisualStudio.Threading.Analyzers": "17.8.14",
+ "Microsoft.VisualStudio.Validation": "17.8.8",
+ "Microsoft.Win32.Registry": "5.0.0",
+ "Newtonsoft.Json": "13.0.3",
+ "StreamJsonRpc": "2.17.3",
+ "System.Collections.Immutable": "7.0.0",
+ "System.ComponentModel.Composition": "7.0.0",
+ "System.Memory": "4.5.5",
+ "System.Private.Uri": "4.3.2",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.ValueTuple": "4.5.0"
+ }
+ },
+ "Microsoft.VisualStudio.Language.NavigateTo.Interfaces": {
+ "type": "Transitive",
+ "resolved": "17.8.222",
+ "contentHash": "ZDEwrWBPyt8n72y8EOg4x9wQVwDq8nlo8oOHiwYrvNPcdzhAXMEKhCJYwdDRTGnjuDh0FFXwjDeWz+LT66foRA==",
+ "dependencies": {
+ "Microsoft.ServiceHub.Framework": "4.4.16",
+ "Microsoft.VisualStudio.Composition": "17.7.26",
+ "Microsoft.VisualStudio.CoreUtility": "17.8.181",
+ "Microsoft.VisualStudio.Imaging": "17.8.36711",
+ "Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime": "17.8.36541",
+ "Microsoft.VisualStudio.Interop": "17.8.36711",
+ "Microsoft.VisualStudio.RpcContracts": "17.8.9",
+ "Microsoft.VisualStudio.Telemetry": "17.8.32",
+ "Microsoft.VisualStudio.Text.Data": "17.8.181",
+ "Microsoft.VisualStudio.Text.Logic": "17.8.181",
+ "Microsoft.VisualStudio.Threading": "17.8.14",
+ "Microsoft.VisualStudio.Threading.Analyzers": "17.8.14",
+ "Microsoft.VisualStudio.Utilities": "17.8.36711",
+ "Microsoft.VisualStudio.Validation": "17.8.8",
+ "Microsoft.Win32.Registry": "5.0.0",
+ "Newtonsoft.Json": "13.0.3",
+ "StreamJsonRpc": "2.17.3",
+ "System.Collections.Immutable": "7.0.0",
+ "System.ComponentModel.Composition": "7.0.0",
+ "System.Memory": "4.5.5",
+ "System.Reflection.Metadata": "7.0.0",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.ValueTuple": "4.5.0"
+ }
+ },
+ "Microsoft.VisualStudio.Language.StandardClassification": {
+ "type": "Transitive",
+ "resolved": "17.8.222",
+ "contentHash": "T9iDnylNml2+7TD7p1P1qouxqrBG3OJcLATaxmv0LkLXMvK4eumSlkowUoGDJ4l8h9HB+HFS4LwSrPan00mJ4Q==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Text.Logic": "17.8.222",
+ "Microsoft.VisualStudio.Threading": "17.8.14",
+ "Microsoft.VisualStudio.Threading.Analyzers": "17.8.14",
+ "Microsoft.VisualStudio.Validation": "17.8.8",
+ "Microsoft.Win32.Registry": "5.0.0",
+ "System.Collections.Immutable": "7.0.0",
+ "System.ComponentModel.Composition": "7.0.0",
+ "System.Memory": "4.5.5",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "Microsoft.VisualStudio.LanguageServer.Client": {
+ "type": "Transitive",
+ "resolved": "17.8.36",
+ "contentHash": "dNVD5yGQ7KgM2XWUIJzwuUnqGbPHgpHbluAUVrJG1bOCIeIyPeL8qeXitIhZUNEGhnKF5oiiDwycSYVDipsFUQ==",
+ "dependencies": {
+ "Microsoft.VisualStudio.ComponentModelHost": "17.8.181",
+ "Microsoft.VisualStudio.CoreUtility": "17.8.181",
+ "Microsoft.VisualStudio.ImageCatalog": "17.8.36734",
+ "Microsoft.VisualStudio.Interop": "17.8.36734",
+ "Microsoft.VisualStudio.RpcContracts": "17.8.9",
+ "Microsoft.VisualStudio.Telemetry": "17.8.32",
+ "Microsoft.VisualStudio.Text.Logic": "17.8.181",
+ "Microsoft.VisualStudio.Threading": "17.8.14",
+ "Microsoft.VisualStudio.Utilities": "17.8.36734",
+ "Microsoft.VisualStudio.Validation": "17.8.8",
+ "Nerdbank.Streams": "2.10.69",
+ "Newtonsoft.Json": "13.0.3",
+ "StreamJsonRpc": "2.17.3",
+ "System.Collections.Immutable": "7.0.0"
+ }
+ },
+ "Microsoft.VisualStudio.Linux.ConnectionManager.Store": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "BP60m0gYQXI/wt0lBwcbjA8lGtvMq4cSVFB5YoRtrvbcm49CLFBBxanusou/OVLFWA9dRFryuZgZVbJieDXL/w=="
+ },
+ "Microsoft.VisualStudio.OLE.Interop": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "NKIPpkymwSUKgMsSAMdgORLyKwGJ7PEz0Ygmw6RzNdqqEvHoMfN3rRLHKc2LdfWbFMa5OENT023aSUu5NZqVxw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "Microsoft.VisualStudio.Package.LanguageService.15.0": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "U3Xfn+9nXO7Qnmuxie2jVwW9VtTWG/wjpFbbAoIg1W/+YxP7o2vSJJLc24BI/pi3z1+Ty4HHqmk2D37fFkoAIg==",
+ "dependencies": {
+ "MessagePack": "2.5.108",
+ "MessagePack.Annotations": "2.5.108",
+ "Microsoft.Bcl.AsyncInterfaces": "7.0.0",
+ "Microsoft.Build.Framework": "17.8.3",
+ "Microsoft.CodeAnalysis.BannedApiAnalyzers": "3.3.2",
+ "Microsoft.IO.Redist": "6.0.0",
+ "Microsoft.NET.StringTools": "17.8.3",
+ "Microsoft.ServiceHub.Analyzers": "4.4.16",
+ "Microsoft.ServiceHub.Framework": "4.4.16",
+ "Microsoft.ServiceHub.Resources": "4.4.2142",
+ "Microsoft.VisualStudio.ComponentModelHost": "17.8.222",
+ "Microsoft.VisualStudio.Composition": "17.7.26",
+ "Microsoft.VisualStudio.Composition.Analyzers": "17.7.26",
+ "Microsoft.VisualStudio.Interop": "17.8.37221",
+ "Microsoft.VisualStudio.RemoteControl": "16.3.52",
+ "Microsoft.VisualStudio.RpcContracts": "17.8.9",
+ "Microsoft.VisualStudio.Sdk.Analyzers": "16.10.10",
+ "Microsoft.VisualStudio.Setup.Configuration.Interop": "3.8.2112",
+ "Microsoft.VisualStudio.Shell.15.0": "17.8.37221",
+ "Microsoft.VisualStudio.Shell.Framework": "17.8.37221",
+ "Microsoft.VisualStudio.Telemetry": "17.8.143",
+ "Microsoft.VisualStudio.Threading": "17.8.14",
+ "Microsoft.VisualStudio.Threading.Analyzers": "17.8.14",
+ "Microsoft.VisualStudio.Utilities": "17.8.37221",
+ "Microsoft.VisualStudio.Utilities.Internal": "16.3.56",
+ "Microsoft.VisualStudio.Validation": "17.8.8",
+ "Microsoft.Win32.Registry": "5.0.0",
+ "Nerdbank.Streams": "2.10.69",
+ "Newtonsoft.Json": "13.0.3",
+ "StreamJsonRpc": "2.17.8",
+ "System.Buffers": "4.5.1",
+ "System.Collections.Immutable": "7.0.0",
+ "System.ComponentModel.Composition": "7.0.0",
+ "System.Composition": "7.0.0",
+ "System.Composition.AttributedModel": "7.0.0",
+ "System.Composition.Convention": "7.0.0",
+ "System.Composition.Hosting": "7.0.0",
+ "System.Composition.Runtime": "7.0.0",
+ "System.Composition.TypedParts": "7.0.0",
+ "System.Diagnostics.DiagnosticSource": "7.0.2",
+ "System.IO.Pipelines": "7.0.0",
+ "System.Memory": "4.5.5",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Reflection.Metadata": "7.0.0",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.Security.AccessControl": "6.0.0",
+ "System.Security.Principal.Windows": "5.0.0",
+ "System.Text.Encodings.Web": "7.0.0",
+ "System.Text.Json": "7.0.3",
+ "System.Threading.AccessControl": "7.0.0",
+ "System.Threading.Tasks.Dataflow": "7.0.0",
+ "System.Threading.Tasks.Extensions": "4.5.4",
+ "System.ValueTuple": "4.5.0"
+ }
+ },
+ "Microsoft.VisualStudio.ProjectAggregator": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "AM2c7nRnmQHK1XE8NarE3xFZQI00G4DHvj+LiSoD6J5fOKT6/1xrnX+Ju+2vt7b8LddOdbBiEtml2UkAmOFQ/w=="
+ },
+ "Microsoft.VisualStudio.RemoteControl": {
+ "type": "Transitive",
+ "resolved": "16.3.52",
+ "contentHash": "+MgP1+Rtt1uJZyqhf7+H6KAQ57wc7v00ixuLhEgFggIbmW2/29YXfPK7gLvXw+vU7vimuM47cqAHrnB7RWYqtg==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Utilities.Internal": "16.3.42"
+ }
+ },
+ "Microsoft.VisualStudio.RpcContracts": {
+ "type": "Transitive",
+ "resolved": "17.8.9",
+ "contentHash": "uzcz/ZEFO6XaKBQPS14g94+5vBYflTanV76X9MDVFBhd5AtxXhiGVpVFxGq0CCc5co0Z3KI0Rd0zHwBoBww46w==",
+ "dependencies": {
+ "Microsoft.ServiceHub.Framework": "4.2.100",
+ "System.Threading.Tasks.Dataflow": "7.0.0"
+ }
+ },
+ "Microsoft.VisualStudio.SDK.Analyzers": {
+ "type": "Transitive",
+ "resolved": "16.10.10",
+ "contentHash": "LuhBHy7MJJ5SjpS7J2GuHqPyL1VeqXUwYc+mTagaUCzXbNwJmLcSUAioCyQyAzPIn6qtnzuM5Lz6ULOQS3ifUA==",
+ "dependencies": {
+ "Microsoft.CodeAnalysis.BannedApiAnalyzers": "3.3.2",
+ "Microsoft.VisualStudio.Threading.Analyzers": "16.10.56"
+ }
+ },
+ "Microsoft.VisualStudio.Setup.Configuration.Interop": {
+ "type": "Transitive",
+ "resolved": "3.8.2112",
+ "contentHash": "5qYOpReBk1mc+c+2L3WCsaWAOPTG8VhF0oP3Spm//nj1ArNhAwnax09cW9lWcfVVGcTY35t/ORoydr3uUb98Ow=="
+ },
+ "Microsoft.VisualStudio.Shell.15.0": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "qEOrOnHgCpGcL3tpXzFmpYRgCQh04GoEcEZwBZBNNu2hKRdOSZrAgtDnBQLy/XYOg/R75jdTIUa1Cc5dOgQNxw==",
+ "dependencies": {
+ "MessagePack": "2.5.108",
+ "MessagePack.Annotations": "2.5.108",
+ "Microsoft.Bcl.AsyncInterfaces": "7.0.0",
+ "Microsoft.Build.Framework": "17.8.3",
+ "Microsoft.IO.Redist": "6.0.0",
+ "Microsoft.NET.StringTools": "17.8.3",
+ "Microsoft.ServiceHub.Analyzers": "4.4.16",
+ "Microsoft.ServiceHub.Framework": "4.4.16",
+ "Microsoft.ServiceHub.Resources": "4.4.2142",
+ "Microsoft.VisualStudio.ComponentModelHost": "17.8.222",
+ "Microsoft.VisualStudio.Composition": "17.7.26",
+ "Microsoft.VisualStudio.Composition.Analyzers": "17.7.26",
+ "Microsoft.VisualStudio.GraphModel": "17.8.37221",
+ "Microsoft.VisualStudio.ImageCatalog": "17.8.37221",
+ "Microsoft.VisualStudio.Imaging": "17.8.37221",
+ "Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime": "17.8.37221",
+ "Microsoft.VisualStudio.Interop": "17.8.37221",
+ "Microsoft.VisualStudio.ProjectAggregator": "17.8.37221",
+ "Microsoft.VisualStudio.RemoteControl": "16.3.52",
+ "Microsoft.VisualStudio.RpcContracts": "17.8.9",
+ "Microsoft.VisualStudio.SDK.Analyzers": "16.10.10",
+ "Microsoft.VisualStudio.Setup.Configuration.Interop": "3.8.2112",
+ "Microsoft.VisualStudio.Shell.Framework": "17.8.37221",
+ "Microsoft.VisualStudio.Telemetry": "17.8.143",
+ "Microsoft.VisualStudio.Threading": "17.8.14",
+ "Microsoft.VisualStudio.Threading.Analyzers": "17.8.14",
+ "Microsoft.VisualStudio.Utilities": "17.8.37221",
+ "Microsoft.VisualStudio.Utilities.Internal": "16.3.56",
+ "Microsoft.VisualStudio.Validation": "17.8.8",
+ "Microsoft.Win32.Registry": "5.0.0",
+ "Nerdbank.Streams": "2.10.69",
+ "Newtonsoft.Json": "13.0.3",
+ "StreamJsonRpc": "2.17.8",
+ "System.Buffers": "4.5.1",
+ "System.Collections.Immutable": "7.0.0",
+ "System.ComponentModel.Composition": "7.0.0",
+ "System.Composition": "7.0.0",
+ "System.Composition.AttributedModel": "7.0.0",
+ "System.Composition.Convention": "7.0.0",
+ "System.Composition.Hosting": "7.0.0",
+ "System.Composition.Runtime": "7.0.0",
+ "System.Composition.TypedParts": "7.0.0",
+ "System.Diagnostics.DiagnosticSource": "7.0.2",
+ "System.IO.Pipelines": "7.0.0",
+ "System.Memory": "4.5.5",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Reflection.Metadata": "7.0.0",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.Security.AccessControl": "6.0.0",
+ "System.Security.Principal.Windows": "5.0.0",
+ "System.Text.Encodings.Web": "7.0.0",
+ "System.Text.Json": "7.0.3",
+ "System.Threading.AccessControl": "7.0.0",
+ "System.Threading.Tasks.Dataflow": "7.0.0",
+ "System.Threading.Tasks.Extensions": "4.5.4",
+ "System.ValueTuple": "4.5.0"
+ }
+ },
+ "Microsoft.VisualStudio.Shell.Design": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "jZlEX8hM+VQv3owkes9eyKHJ92rWPdHbaJIMaiF6rNX6svVXSsVFrtYNXrZqrsHD2zfjCeTPbNFsJQ10rXGsFg==",
+ "dependencies": {
+ "MessagePack": "2.5.108",
+ "MessagePack.Annotations": "2.5.108",
+ "Microsoft.Bcl.AsyncInterfaces": "7.0.0",
+ "Microsoft.Build.Framework": "17.8.3",
+ "Microsoft.CodeAnalysis.BannedApiAnalyzers": "3.3.2",
+ "Microsoft.IO.Redist": "6.0.0",
+ "Microsoft.NET.StringTools": "17.8.3",
+ "Microsoft.ServiceHub.Analyzers": "4.4.16",
+ "Microsoft.ServiceHub.Framework": "4.4.16",
+ "Microsoft.ServiceHub.Resources": "4.4.2142",
+ "Microsoft.VisualStudio.ComponentModelHost": "17.8.222",
+ "Microsoft.VisualStudio.Composition": "17.7.26",
+ "Microsoft.VisualStudio.Composition.Analyzers": "17.7.26",
+ "Microsoft.VisualStudio.ImageCatalog": "17.8.37221",
+ "Microsoft.VisualStudio.Interop": "17.8.37221",
+ "Microsoft.VisualStudio.RemoteControl": "16.3.52",
+ "Microsoft.VisualStudio.RpcContracts": "17.8.9",
+ "Microsoft.VisualStudio.Sdk.Analyzers": "16.10.10",
+ "Microsoft.VisualStudio.Setup.Configuration.Interop": "3.8.2112",
+ "Microsoft.VisualStudio.Shell.15.0": "17.8.37221",
+ "Microsoft.VisualStudio.Shell.Framework": "17.8.37221",
+ "Microsoft.VisualStudio.Telemetry": "17.8.143",
+ "Microsoft.VisualStudio.Threading": "17.8.14",
+ "Microsoft.VisualStudio.Threading.Analyzers": "17.8.14",
+ "Microsoft.VisualStudio.Utilities.Internal": "16.3.56",
+ "Microsoft.Win32.Registry": "5.0.0",
+ "Nerdbank.Streams": "2.10.69",
+ "Newtonsoft.Json": "13.0.3",
+ "StreamJsonRpc": "2.17.8",
+ "System.Buffers": "4.5.1",
+ "System.Collections.Immutable": "7.0.0",
+ "System.ComponentModel.Composition": "7.0.0",
+ "System.Composition": "7.0.0",
+ "System.Composition.AttributedModel": "7.0.0",
+ "System.Composition.Convention": "7.0.0",
+ "System.Composition.Hosting": "7.0.0",
+ "System.Composition.Runtime": "7.0.0",
+ "System.Composition.TypedParts": "7.0.0",
+ "System.Diagnostics.DiagnosticSource": "7.0.2",
+ "System.IO.Pipelines": "7.0.0",
+ "System.Memory": "4.5.5",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Reflection.Metadata": "7.0.0",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.Security.AccessControl": "6.0.0",
+ "System.Security.Principal.Windows": "5.0.0",
+ "System.Text.Encodings.Web": "7.0.0",
+ "System.Text.Json": "7.0.3",
+ "System.Threading.AccessControl": "7.0.0",
+ "System.Threading.Tasks.Dataflow": "7.0.0",
+ "System.Threading.Tasks.Extensions": "4.5.4",
+ "System.ValueTuple": "4.5.0"
+ }
+ },
+ "Microsoft.VisualStudio.Shell.Framework": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "EWsvORgVWQBpcBnUPbkc7is9ROQS3noVlnxGl9wVJbD5VZBh0Qk82KIpJR1GGVXGgaXbX+tUVSF0SxaVGzqVDg==",
+ "dependencies": {
+ "MessagePack": "2.5.108",
+ "MessagePack.Annotations": "2.5.108",
+ "Microsoft.Bcl.AsyncInterfaces": "7.0.0",
+ "Microsoft.Build.Framework": "17.8.3",
+ "Microsoft.IO.Redist": "6.0.0",
+ "Microsoft.NET.StringTools": "17.8.3",
+ "Microsoft.ServiceHub.Analyzers": "4.4.16",
+ "Microsoft.ServiceHub.Framework": "4.4.16",
+ "Microsoft.ServiceHub.Resources": "4.4.2142",
+ "Microsoft.VisualStudio.Composition": "17.7.26",
+ "Microsoft.VisualStudio.Composition.Analyzers": "17.7.26",
+ "Microsoft.VisualStudio.GraphModel": "17.8.37221",
+ "Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime": "17.8.37221",
+ "Microsoft.VisualStudio.Interop": "17.8.37221",
+ "Microsoft.VisualStudio.RemoteControl": "16.3.52",
+ "Microsoft.VisualStudio.RpcContracts": "17.8.9",
+ "Microsoft.VisualStudio.SDK.Analyzers": "16.10.10",
+ "Microsoft.VisualStudio.Setup.Configuration.Interop": "3.8.2112",
+ "Microsoft.VisualStudio.Telemetry": "17.8.143",
+ "Microsoft.VisualStudio.Threading": "17.8.14",
+ "Microsoft.VisualStudio.Threading.Analyzers": "17.8.14",
+ "Microsoft.VisualStudio.Utilities": "17.8.37221",
+ "Microsoft.VisualStudio.Utilities.Internal": "16.3.56",
+ "Microsoft.VisualStudio.Validation": "17.8.8",
+ "Microsoft.Win32.Registry": "5.0.0",
+ "Nerdbank.Streams": "2.10.69",
+ "Newtonsoft.Json": "13.0.3",
+ "StreamJsonRpc": "2.17.8",
+ "System.Buffers": "4.5.1",
+ "System.Collections.Immutable": "7.0.0",
+ "System.ComponentModel.Composition": "7.0.0",
+ "System.Composition": "7.0.0",
+ "System.Composition.AttributedModel": "7.0.0",
+ "System.Composition.Convention": "7.0.0",
+ "System.Composition.Hosting": "7.0.0",
+ "System.Composition.Runtime": "7.0.0",
+ "System.Composition.TypedParts": "7.0.0",
+ "System.Diagnostics.DiagnosticSource": "7.0.2",
+ "System.IO.Pipelines": "7.0.0",
+ "System.Memory": "4.5.5",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Reflection.Metadata": "7.0.0",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.Security.AccessControl": "6.0.0",
+ "System.Security.Principal.Windows": "5.0.0",
+ "System.Text.Encodings.Web": "7.0.0",
+ "System.Text.Json": "7.0.3",
+ "System.Threading.AccessControl": "7.0.0",
+ "System.Threading.Tasks.Dataflow": "7.0.0",
+ "System.Threading.Tasks.Extensions": "4.5.4",
+ "System.ValueTuple": "4.5.0"
+ }
+ },
+ "Microsoft.VisualStudio.Shell.Interop": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "ppy9MZDNeIEjBwUw5D2Q1e63VRqk9zCCSvvM6pW6JU0iwFnlYBuCfV1VBkpv5pI+SiWvLPzUU4ZIEyHb4WnXFw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "Microsoft.VisualStudio.Shell.Interop.10.0": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "0MDQb5vfoH0FQRdpJrSr+WEK2+1h+8/gs+S+KYaSPjeBAImHip0STdGhzRBpZF8cQzoiaOYW3Oa8DreE1XGIaw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "Microsoft.VisualStudio.Shell.Interop.11.0": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "0goNsUPqsFULdUw3seP/1RzZqEQYJdXTUj3rut5585n/LYY3KJwQRCF4+/+Swm6cqZRtV8cX8t/FPbeRvB1+RQ==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "Microsoft.VisualStudio.Shell.Interop.12.0": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "53pu98L05Qhs2HwXFmf3+voZ7sUT/J6tRD1cIfi8gALZ8r4B3/9NyEc8MbZAHO3aHocwM9V9p0XlpqCLaORFNA==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "Microsoft.VisualStudio.Shell.Interop.8.0": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "D7TWtofzk2/80qDgSBddEBQjvqOb136j9yiqAhATQKor0OCAVVmiRFOWRC6qmh+7Mrnf/2EuXaz6eSPGovIDWA==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "Microsoft.VisualStudio.Shell.Interop.9.0": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "ViDsyQaqrvDMqzXX/iXKLTLzbkLTyNC+NvlY/OKlGlPrXxev7GtH5BTOL6uesaw9yQOEnZ96ulEwt6lADu0kMw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "Microsoft.VisualStudio.TaskRunnerExplorer.14.0": {
+ "type": "Transitive",
+ "resolved": "14.0.0",
+ "contentHash": "iZpAv8bEWjkyxFF1GIcSOfldqP/umopJKnJGKHa0vg8KR7ZY3u3dWtJmwO4w3abIx+176SIkQe78y5A+/Md7FA=="
+ },
+ "Microsoft.VisualStudio.Telemetry": {
+ "type": "Transitive",
+ "resolved": "17.8.143",
+ "contentHash": "i54TOU0GoR0Dd/jxCYmLmuXmVun9P+WBjU2TWQ1Ef2rfnpgHHkxa9wK7Nfxzv6W6iVzeXSW5D6GwcGOGlJ9nQg==",
+ "dependencies": {
+ "Microsoft.CSharp": "4.7.0",
+ "Microsoft.VisualStudio.RemoteControl": "16.3.52",
+ "Microsoft.VisualStudio.Utilities.Internal": "16.3.56",
+ "Newtonsoft.Json": "13.0.1"
+ }
+ },
+ "Microsoft.VisualStudio.Text.Data": {
+ "type": "Transitive",
+ "resolved": "17.8.222",
+ "contentHash": "DUYhyjDP9PfB8Iz5i38j86VQY9L6uX3fkfgPPiU2/pAkEldMY2H5leUh8YmogXfcdpmzPuRys+QpFYIwj+5Nww==",
+ "dependencies": {
+ "Microsoft.VisualStudio.CoreUtility": "17.8.222",
+ "Microsoft.VisualStudio.Threading": "17.8.14",
+ "Microsoft.VisualStudio.Threading.Analyzers": "17.8.14",
+ "Microsoft.VisualStudio.Validation": "17.8.8",
+ "Microsoft.Win32.Registry": "5.0.0",
+ "System.Collections.Immutable": "7.0.0",
+ "System.ComponentModel.Composition": "7.0.0",
+ "System.Memory": "4.5.5",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "Microsoft.VisualStudio.Text.Logic": {
+ "type": "Transitive",
+ "resolved": "17.8.222",
+ "contentHash": "UV1YF9gevSwA6Na2zX1ubqA+LLMNSthVFYECL+xjlSr7CSXu6edzvCZMkXHCIKa0aB4XGd7LyKzXBsaKCNq8nQ==",
+ "dependencies": {
+ "Microsoft.VisualStudio.CoreUtility": "17.8.222",
+ "Microsoft.VisualStudio.Text.Data": "17.8.222",
+ "Microsoft.VisualStudio.Threading": "17.8.14",
+ "Microsoft.VisualStudio.Threading.Analyzers": "17.8.14",
+ "Microsoft.VisualStudio.Validation": "17.8.8",
+ "Microsoft.Win32.Registry": "5.0.0",
+ "System.Collections.Immutable": "7.0.0",
+ "System.ComponentModel.Composition": "7.0.0",
+ "System.Memory": "4.5.5",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "Microsoft.VisualStudio.Text.UI": {
+ "type": "Transitive",
+ "resolved": "17.8.222",
+ "contentHash": "NWusA+UuIJfVmIiPbCQ/TTw+44jHQ+n/mFYgPaGX+dGB+XflS7EI5tSAR6TH3hy9V8cSurGHNRTuhG4RTfsUYw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.CoreUtility": "17.8.222",
+ "Microsoft.VisualStudio.Text.Data": "17.8.222",
+ "Microsoft.VisualStudio.Text.Logic": "17.8.222",
+ "Microsoft.VisualStudio.Threading": "17.8.14",
+ "Microsoft.VisualStudio.Threading.Analyzers": "17.8.14",
+ "Microsoft.VisualStudio.Validation": "17.8.8",
+ "Microsoft.Win32.Registry": "5.0.0",
+ "System.Collections.Immutable": "7.0.0",
+ "System.ComponentModel.Composition": "7.0.0",
+ "System.Memory": "4.5.5",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "Microsoft.VisualStudio.Text.UI.Wpf": {
+ "type": "Transitive",
+ "resolved": "17.8.222",
+ "contentHash": "FYbp5JYbxWHuA0G834RaoDefY16zd7a9Z0hXgWMivLs/BJP5aSNi2rqJgkL+njxZ/M3n0Rly6s6YgQQ6EFaRCw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.CoreUtility": "17.8.222",
+ "Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime": "17.8.36541",
+ "Microsoft.VisualStudio.Text.Data": "17.8.222",
+ "Microsoft.VisualStudio.Text.Logic": "17.8.222",
+ "Microsoft.VisualStudio.Text.UI": "17.8.222",
+ "Microsoft.VisualStudio.Threading": "17.8.14",
+ "Microsoft.VisualStudio.Threading.Analyzers": "17.8.14",
+ "Microsoft.VisualStudio.Validation": "17.8.8",
+ "Microsoft.Win32.Registry": "5.0.0",
+ "System.Collections.Immutable": "7.0.0",
+ "System.ComponentModel.Composition": "7.0.0",
+ "System.Memory": "4.5.5",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "Microsoft.VisualStudio.TextManager.Interop": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "oRbKPTOrHtOxnC3K2UFUnCy7GRZV6B/+uGs/bykzUN6jI+slGJGUxp8yBTcYNbUy1zv7NcFuGhdYIeyjRgLeNg==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "Microsoft.VisualStudio.TextManager.Interop.10.0": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "7ZxViIvN0EvL37hPJS0ND7dSfOABavXJYjIbMNw28hspslEqzRsOtxSOf7NOMgU6X4P2VUuelS1TaeX71cH0lQ==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "Microsoft.VisualStudio.TextManager.Interop.11.0": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "/ubZohCnJIQ56ZXhkfp0685JmGggUG+XNSOd/lDltvPBAfTkkIEAFILsFOIvNxc7uCPAXVsjDroviv01k9R67g==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "Microsoft.VisualStudio.TextManager.Interop.12.0": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "zj31Qh1loeLRGq6AuEpFfD9NPqfAkrBwY/qBZ13CzqDN0tpYnmf02mI6iTniNfU9WAyXjeXWL3NBnx3MVJemxg==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "Microsoft.VisualStudio.TextManager.Interop.8.0": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "oDIhMN+FPg/FjI4cO9QioFk/knvaGN26v3GLPzqWKp8Y3xBOkX2OgT1loV0axXTxXR2Nzo+AficjY8/A2TnVow==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "Microsoft.VisualStudio.TextManager.Interop.9.0": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "n9HDbqOVR02twO0QA0GrpTm4HBgC1OkkK4G+eyw3bsM+QLXOFTYwtHrGAwrn21W1pPUjEju1OhFTcIaPCkcYuQ==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "Microsoft.VisualStudio.TextTemplating.VSHost": {
+ "type": "Transitive",
+ "resolved": "17.8.37222",
+ "contentHash": "LMQ+tEcSsO/ACyDLDf4hcEVABJDNxmabWaCY4o05c/4pJd//SqHDZzKRO1/H5vI6IVwOe8I/8FPqqY2IcFgsmg==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Validation": "17.8.8",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "Microsoft.VisualStudio.Threading": {
+ "type": "Transitive",
+ "resolved": "17.8.14",
+ "contentHash": "WDr8GX/5aTD446tkwGgie4Fjq0yd9aEtx3GG+IwwFEcLAjvDBcfd0+uo9ZPUNvKQlByepZ5Eocuw1OQ7vKs+Fw==",
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "7.0.0",
+ "Microsoft.VisualStudio.Threading.Analyzers": "17.8.14",
+ "Microsoft.VisualStudio.Validation": "17.8.8",
+ "Microsoft.Win32.Registry": "5.0.0",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ }
+ },
+ "Microsoft.VisualStudio.Threading.Analyzers": {
+ "type": "Transitive",
+ "resolved": "17.8.14",
+ "contentHash": "/j6+pl6ckiOPAWZmhwugA/cXmu7cQ7Hx2xmf70sQcZLVWqKrjgdoE4Gww2dJXN1M3x4NLotnpiwBR2ryG2J+9w=="
+ },
+ "Microsoft.VisualStudio.Utilities": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "zWPoDyyt/PEl8cgFHKGVDxIcuqxcBzXJVJk0qJ93cnmnhXcSqKDLr1SpK99V23g1CI6PZlUtD5azeWRsZG3txA==",
+ "dependencies": {
+ "MessagePack": "2.5.108",
+ "MessagePack.Annotations": "2.5.108",
+ "Microsoft.Bcl.AsyncInterfaces": "7.0.0",
+ "Microsoft.IO.Redist": "6.0.0",
+ "Microsoft.NET.StringTools": "17.8.3",
+ "Microsoft.ServiceHub.Framework": "4.4.16",
+ "Microsoft.ServiceHub.Resources": "4.4.2142",
+ "Microsoft.VisualStudio.Composition": "17.7.26",
+ "Microsoft.VisualStudio.Composition.Analyzers": "17.7.26",
+ "Microsoft.VisualStudio.RemoteControl": "16.3.52",
+ "Microsoft.VisualStudio.RpcContracts": "17.8.9",
+ "Microsoft.VisualStudio.Telemetry": "17.8.143",
+ "Microsoft.VisualStudio.Threading": "17.8.14",
+ "Microsoft.VisualStudio.Threading.Analyzers": "17.8.14",
+ "Microsoft.VisualStudio.Utilities.Internal": "16.3.56",
+ "Microsoft.VisualStudio.Validation": "17.8.8",
+ "Microsoft.Win32.Registry": "5.0.0",
+ "Nerdbank.Streams": "2.10.69",
+ "Newtonsoft.Json": "13.0.3",
+ "StreamJsonRpc": "2.17.8",
+ "System.Buffers": "4.5.1",
+ "System.Collections.Immutable": "7.0.0",
+ "System.ComponentModel.Composition": "7.0.0",
+ "System.Composition": "7.0.0",
+ "System.Composition.AttributedModel": "7.0.0",
+ "System.Composition.Convention": "7.0.0",
+ "System.Composition.Hosting": "7.0.0",
+ "System.Composition.Runtime": "7.0.0",
+ "System.Composition.TypedParts": "7.0.0",
+ "System.Diagnostics.DiagnosticSource": "7.0.2",
+ "System.IO.Pipelines": "7.0.0",
+ "System.Memory": "4.5.5",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Reflection.Metadata": "7.0.0",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.Security.AccessControl": "6.0.0",
+ "System.Security.Principal.Windows": "5.0.0",
+ "System.Text.Encodings.Web": "7.0.0",
+ "System.Text.Json": "7.0.3",
+ "System.Threading.AccessControl": "7.0.0",
+ "System.Threading.Tasks.Dataflow": "7.0.0",
+ "System.Threading.Tasks.Extensions": "4.5.4",
+ "System.ValueTuple": "4.5.0"
+ }
+ },
+ "Microsoft.VisualStudio.Utilities.Internal": {
+ "type": "Transitive",
+ "resolved": "16.3.56",
+ "contentHash": "QX5UVVk4+/rPu3Xy3QRAntNBy/3VMl2whwSlt73Ksp6MRf5ersUopgmHbkEnWSTX6e/SZf+mfqTmvdk67URH2Q=="
+ },
+ "Microsoft.VisualStudio.Validation": {
+ "type": "Transitive",
+ "resolved": "17.8.8",
+ "contentHash": "rWXThIpyQd4YIXghNkiv2+VLvzS+MCMKVRDR0GAMlflsdo+YcAN2g2r5U1Ah98OFjQMRexTFtXQQ2LkajxZi3g=="
+ },
+ "Microsoft.VisualStudio.VCProjectEngine": {
+ "type": "Transitive",
+ "resolved": "17.8.37222",
+ "contentHash": "sc1pQebadAuZTP5PAIcocb3oPvlpPsOEqeXrx1O+9iL/easBSIua258lWs8MYopGVMvGM4jjYdYBIAWY90ikLg=="
+ },
+ "Microsoft.VisualStudio.VSHelp": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "LdXVTh0HvpbU73Crzqn0obtEAYqTHoWsehGjsDN5BMV0vfl5Xd8wqLwZ9pJFCc8jYD6LpJILop3buZfeITaZTQ==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "Microsoft.VisualStudio.VSHelp80": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "Kj/vkqyrqqPSUIygYZtdQC4xciNVoGGVKUggE1zbx9WiWTjN5AxaATDNa+Y2qKPbZs5+1GSDx2ypJ8VpqhltjQ==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "Microsoft.VisualStudio.WCFReference.Interop": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "m+3jAnxJm0KxB8PSPZK1/CqHAnYcXe9X3lyoiLBNEzCZIhVPER4MkwZ7sq64NA2PIbmzbAeG7O0VKV4+GZrmIw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "Microsoft.VisualStudio.Web.BrowserLink.12.0": {
+ "type": "Transitive",
+ "resolved": "12.0.0",
+ "contentHash": "HeuaZh8+wNVdwx7VF8guFGH2Z2zH+FYxWBsRNp+FjjlmrhCfM7GUQV5azaTv/bN5TPaK8ALJoP9UX5o1FB5k1A=="
+ },
+ "Microsoft.VsSDK.CompatibilityAnalyzer": {
+ "type": "Transitive",
+ "resolved": "17.8.2365",
+ "contentHash": "3ck80U81JLI3vWE73Rs+4onBbpHh3/XrKKSGDB3ZAgSuy8Q3BBnxTVtt5ApfmVa9n181TBabZEDDxQ6G03vTag=="
+ },
+ "Microsoft.Win32.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA=="
+ },
+ "Microsoft.Windows.SDK.Contracts": {
+ "type": "Transitive",
+ "resolved": "10.0.18362.2005",
+ "contentHash": "3R3uDDGRSdeRdHpor1SyN3qg/VmseKjcKFIAQJ0iRnzoCPvnlCcnSGaNsjqVSzHQHbBSBtSKVBxBS2GyEw8qhw==",
+ "dependencies": {
+ "System.Runtime.WindowsRuntime": "4.6.0",
+ "System.Runtime.WindowsRuntime.UI.Xaml": "4.6.0"
+ }
+ },
+ "morelinq": {
+ "type": "Transitive",
+ "resolved": "3.3.2",
+ "contentHash": "MQc8GppZJLmjvcpEdf3EkC6ovsp7gRWt2e5mC7dcIOrgwSc+yjFd3JQ0iRqr3XrUT6rb/phv0IkEmBtbfVA7AQ==",
+ "dependencies": {
+ "System.ValueTuple": "4.5.0"
+ }
+ },
+ "Nerdbank.Streams": {
+ "type": "Transitive",
+ "resolved": "2.10.69",
+ "contentHash": "YIudzeVyQRJAqytjpo1jdHkh2t+vqQqyusBqb2sFSOAOGEnyOXhcHx/rQqSuCIXUDr50a3XuZnamGRfQVBOf4g==",
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "7.0.0",
+ "Microsoft.VisualStudio.Threading": "17.6.40",
+ "Microsoft.VisualStudio.Validation": "17.6.11",
+ "System.IO.Pipelines": "7.0.0",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "Newtonsoft.Json": {
+ "type": "Transitive",
+ "resolved": "13.0.3",
+ "contentHash": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ=="
+ },
+ "Nito.AsyncEx.Tasks": {
+ "type": "Transitive",
+ "resolved": "5.1.2",
+ "contentHash": "jEkCfR2/M26OK/U4G7SEN063EU/F4LiVA06TtpZILMdX/quIHCg+wn31Zerl2LC+u1cyFancjTY3cNAr2/89PA==",
+ "dependencies": {
+ "Nito.Disposables": "2.2.1"
+ }
+ },
+ "Nito.Disposables": {
+ "type": "Transitive",
+ "resolved": "2.2.1",
+ "contentHash": "6sZ5uynQeAE9dPWBQGKebNmxbY4xsvcc5VplB5WkYEESUS7oy4AwnFp0FhqxTSKm/PaFrFqLrYr696CYN8cugg==",
+ "dependencies": {
+ "System.Collections.Immutable": "1.7.1"
+ }
+ },
+ "Serilog": {
+ "type": "Transitive",
+ "resolved": "2.10.0",
+ "contentHash": "+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA=="
+ },
+ "stdole": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "17tZzufw5ltS6R3M6MFK7aRz/hMP2Vo1QMz2oO35qWfmRZEpixG1Lop8HFHGnRdVTfC8ClATyaeGiy/X5r3ZaQ==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "StreamJsonRpc": {
+ "type": "Transitive",
+ "resolved": "2.17.8",
+ "contentHash": "XxxYqGwcaH/3uBel6Ur54ldMIdW2sd80B0nbN4iqMyBXkiBoiVDmtyJv6ow3jaCkRmJLEFrX2/PEWvSsdBldlw==",
+ "dependencies": {
+ "MessagePack": "2.5.108",
+ "Microsoft.Bcl.AsyncInterfaces": "7.0.0",
+ "Microsoft.VisualStudio.Threading": "17.7.35",
+ "Microsoft.VisualStudio.Threading.Analyzers": "17.7.35",
+ "Microsoft.VisualStudio.Validation": "17.6.11",
+ "Nerdbank.Streams": "2.10.69",
+ "Newtonsoft.Json": "13.0.1",
+ "System.Collections.Immutable": "7.0.0",
+ "System.Diagnostics.DiagnosticSource": "7.0.2",
+ "System.IO.Pipelines": "7.0.0",
+ "System.Text.Encodings.Web": "7.0.0",
+ "System.Text.Json": "7.0.3",
+ "System.Threading.Tasks.Dataflow": "7.0.0"
+ }
+ },
+ "System.Buffers": {
+ "type": "Transitive",
+ "resolved": "4.5.1",
+ "contentHash": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg=="
+ },
+ "System.Collections.Immutable": {
+ "type": "Transitive",
+ "resolved": "7.0.0",
+ "contentHash": "dQPcs0U1IKnBdRDBkrCTi1FoajSTBzLcVTpjO4MBCMC7f4pDOIPzgBoX8JjG7X6uZRJ8EBxsi8+DR1JuwjnzOQ==",
+ "dependencies": {
+ "System.Memory": "4.5.5",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "System.ComponentModel.Composition": {
+ "type": "Transitive",
+ "resolved": "7.0.0",
+ "contentHash": "orv0h38ZVPCPo/FW0LGv8/TigXwX8cIwXeQcaNYhikkqELDm8sUFLMcof/Sjcq5EvYCm5NA7MV3hG4u75H44UQ=="
+ },
+ "System.Composition": {
+ "type": "Transitive",
+ "resolved": "7.0.0",
+ "contentHash": "tRwgcAkDd85O8Aq6zHDANzQaq380cek9lbMg5Qma46u5BZXq/G+XvIYmu+UI+BIIZ9zssXLYrkTykEqxxvhcmg==",
+ "dependencies": {
+ "System.Composition.AttributedModel": "7.0.0",
+ "System.Composition.Convention": "7.0.0",
+ "System.Composition.Hosting": "7.0.0",
+ "System.Composition.Runtime": "7.0.0",
+ "System.Composition.TypedParts": "7.0.0"
+ }
+ },
+ "System.Composition.AttributedModel": {
+ "type": "Transitive",
+ "resolved": "7.0.0",
+ "contentHash": "2QzClqjElKxgI1jK1Jztnq44/8DmSuTSGGahXqQ4TdEV0h9s2KikQZIgcEqVzR7OuWDFPGLHIprBJGQEPr8fAQ=="
+ },
+ "System.Composition.Convention": {
+ "type": "Transitive",
+ "resolved": "7.0.0",
+ "contentHash": "IMhTlpCs4HmlD8B+J8/kWfwX7vrBBOs6xyjSTzBlYSs7W4OET4tlkR/Sg9NG8jkdJH9Mymq0qGdYS1VPqRTBnQ==",
+ "dependencies": {
+ "System.Composition.AttributedModel": "7.0.0"
+ }
+ },
+ "System.Composition.Hosting": {
+ "type": "Transitive",
+ "resolved": "7.0.0",
+ "contentHash": "eB6gwN9S+54jCTBJ5bpwMOVerKeUfGGTYCzz3QgDr1P55Gg/Wb27ShfPIhLMjmZ3MoAKu8uUSv6fcCdYJTN7Bg==",
+ "dependencies": {
+ "System.Composition.Runtime": "7.0.0"
+ }
+ },
+ "System.Composition.Runtime": {
+ "type": "Transitive",
+ "resolved": "7.0.0",
+ "contentHash": "aZJ1Zr5Txe925rbo4742XifEyW0MIni1eiUebmcrP3HwLXZ3IbXUj4MFMUH/RmnJOAQiS401leg/2Sz1MkApDw=="
+ },
+ "System.Composition.TypedParts": {
+ "type": "Transitive",
+ "resolved": "7.0.0",
+ "contentHash": "ZK0KNPfbtxVceTwh+oHNGUOYV2WNOHReX2AXipuvkURC7s/jPwoWfsu3SnDBDgofqbiWr96geofdQ2erm/KTHg==",
+ "dependencies": {
+ "System.Composition.AttributedModel": "7.0.0",
+ "System.Composition.Hosting": "7.0.0",
+ "System.Composition.Runtime": "7.0.0"
+ }
+ },
+ "System.Drawing.Common": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg=="
+ },
+ "System.IO.Compression": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg=="
+ },
+ "System.IO.Pipelines": {
+ "type": "Transitive",
+ "resolved": "7.0.0",
+ "contentHash": "jRn6JYnNPW6xgQazROBLSfpdoczRw694vO5kKvMcNnpXuolEixUyw6IBuBs2Y2mlSX/LdLvyyWmfXhaI3ND1Yg==",
+ "dependencies": {
+ "System.Buffers": "4.5.1",
+ "System.Memory": "4.5.5",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ }
+ },
+ "System.IO.Pipes.AccessControl": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "uqKLJb0Cukb8vG6JVKbJXOAmMWUWOue4ZTjMn7qrfGLZHww3iV8xV1amipI238kmmoFQx6I8GP2bjDM/ss5pQQ==",
+ "dependencies": {
+ "System.Security.AccessControl": "4.5.0",
+ "System.Security.Principal.Windows": "4.5.0"
+ }
+ },
+ "System.Memory": {
+ "type": "Transitive",
+ "resolved": "4.5.5",
+ "contentHash": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
+ "dependencies": {
+ "System.Buffers": "4.5.1",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.5.3"
+ }
+ },
+ "System.Numerics.Vectors": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ=="
+ },
+ "System.Private.Uri": {
+ "type": "Transitive",
+ "resolved": "4.3.2",
+ "contentHash": "o1+7RJnu3Ik3PazR7Z7tJhjPdE000Eq2KGLLWhqJJKXj04wrS8lwb1OFtDF9jzXXADhUuZNJZlPc98uwwqmpFA==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.1",
+ "Microsoft.NETCore.Targets": "1.1.3"
+ }
+ },
+ "System.Reflection.Emit": {
+ "type": "Transitive",
+ "resolved": "4.7.0",
+ "contentHash": "VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ=="
+ },
+ "System.Reflection.Emit.Lightweight": {
+ "type": "Transitive",
+ "resolved": "4.7.0",
+ "contentHash": "a4OLB4IITxAXJeV74MDx49Oq2+PsF6Sml54XAFv+2RyWwtDBcabzoxiiJRhdhx+gaohLh4hEGCLQyBozXoQPqA=="
+ },
+ "System.Reflection.Metadata": {
+ "type": "Transitive",
+ "resolved": "7.0.0",
+ "contentHash": "MclTG61lsD9sYdpNz9xsKBzjsmsfCtcMZYXz/IUr2zlhaTaABonlr1ESeompTgM+Xk+IwtGYU7/voh3YWB/fWw==",
+ "dependencies": {
+ "System.Collections.Immutable": "7.0.0",
+ "System.Memory": "4.5.5"
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg=="
+ },
+ "System.Runtime.InteropServices.RuntimeInformation": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw=="
+ },
+ "System.Runtime.WindowsRuntime": {
+ "type": "Transitive",
+ "resolved": "4.6.0",
+ "contentHash": "IWrs1TmbxP65ZZjIglNyvDkFNoV5q2Pofg5WO7I8RKQOpLdFprQSh3xesOoClBqR4JHr4nEB1Xk1MqLPW1jPuQ=="
+ },
+ "System.Runtime.WindowsRuntime.UI.Xaml": {
+ "type": "Transitive",
+ "resolved": "4.6.0",
+ "contentHash": "r4tNw5v5kqRJ9HikWpcyNf3suGw7DjX93svj9iBjtdeLqL8jt9Z+7f+s4wrKZJr84u8IMsrIjt8K6jYvkRqMSg==",
+ "dependencies": {
+ "System.Runtime.WindowsRuntime": "4.6.0"
+ }
+ },
+ "System.Security.AccessControl": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==",
+ "dependencies": {
+ "System.Security.Principal.Windows": "5.0.0"
+ }
+ },
+ "System.Security.Principal.Windows": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA=="
+ },
+ "System.Text.Encodings.Web": {
+ "type": "Transitive",
+ "resolved": "7.0.0",
+ "contentHash": "OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==",
+ "dependencies": {
+ "System.Buffers": "4.5.1",
+ "System.Memory": "4.5.5",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "System.Text.Json": {
+ "type": "Transitive",
+ "resolved": "7.0.3",
+ "contentHash": "AyjhwXN1zTFeIibHimfJn6eAsZ7rTBib79JQpzg8WAuR/HKDu9JGNHTuu3nbbXQ/bgI+U4z6HtZmCHNXB1QXrQ==",
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "7.0.0",
+ "System.Buffers": "4.5.1",
+ "System.Memory": "4.5.5",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.Text.Encodings.Web": "7.0.0",
+ "System.Threading.Tasks.Extensions": "4.5.4",
+ "System.ValueTuple": "4.5.0"
+ }
+ },
+ "System.Threading.AccessControl": {
+ "type": "Transitive",
+ "resolved": "7.0.0",
+ "contentHash": "J3pA1tD7H8ZKzKczlAYgMG0ZO227YsmoyyOh/YttwtomokMhNbPRwlf5h37a+xQE420nGVuvwsFoV5YBUY+TpA==",
+ "dependencies": {
+ "System.Security.AccessControl": "6.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ }
+ },
+ "System.Threading.Tasks.Dataflow": {
+ "type": "Transitive",
+ "resolved": "7.0.0",
+ "contentHash": "BmSJ4b0e2nlplV/RdWVxvH7WECTHACofv06dx/JwOYc0n56eK1jIWdQKNYYsReSO4w8n1QA5stOzSQcfaVBkJg=="
+ },
+ "System.Threading.Tasks.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.5.4",
+ "contentHash": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "4.5.3"
+ }
+ },
+ "System.ValueTuple": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ=="
+ },
+ "VSLangProj": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "FaBbOqiWzIxp/yvakj4urj4KsC1yk8bbhnr7KkrWW5A/eNy6K0Yr1CSWvJvITw0VMPkj92z8KYISk2PwEbDtjw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "VSLangProj100": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "4OjSQj80drPpRQY9CxQldvprOH3lKtNvRswfCDwft9C2du1rIx7ZBETz6F1qbXVCfOyomdmdgOBsBOLoCTkHhA==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "VSLangProj110": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "UiFe1bmaboXfGEmV9bWQjXHhyX98nJk2v1rtC12eh7BoJsctpUFjf5AnWyqn+ET8E0vhoV5z5yQRTZQH68df6A==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "VSLangProj140": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "z3vVSf4G16mO32yrXb9hziFFLxfryMrBI65QjTrjMfPYMRofMjjA3FSg8rjEiXRTOLe5uzQdRNKebJ4HfiP6+g==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "VSLangProj150": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "zojqRZsRCtpOwkbvB+/tyL5/ZD9r/Ly6QwtvNQkPuLthHMd51mB/B5pqahTdQyPNcBKgm6t6Bf+R1U6u3uED1A==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "VSLangProj157": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "Dmf0c9nsYpveFDpdNLBITz1Sh0rbaCx14Hg7otZEQ4MIJ3qzB64ihTKtrZARap3S2nsYrNlI21n8JDoN+CnGBw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "VSLangProj158": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "EZuxDKUDSnsuaaxrFLJLJLGdNSyBuBveuG/qTRoJGJ5kTxPKgVstgZS4V4mQdRHRpXUQW62SsCuhVnrwv5IpVg==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "VSLangProj165": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "Vo0zUJ7SUPlph2/E6uY30uSGj13H4b2l6oby3n1BOT18bkYk7WftVY01RdH85jY20oBulnv9ktqZqaz9S5mBQg==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "VSLangProj2": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "eAdoVAiTrp19k1dsXAXldU/phAz6dh7Sbg7+9IhR0AbCw4eLBbN1LlNEeUqPgwnrxiGhul4vwlWpMKrlEtEANg==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "VSLangProj80": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "eKKx8EKZh8HZc3fJOVqUbvqNMcWmXl6LW52hMxyB/O0th7HfePIwjkBU1hO6+gVZlyHuR3r06wEQbWQL6LsxOQ==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "VSLangProj90": {
+ "type": "Transitive",
+ "resolved": "17.8.37221",
+ "contentHash": "JhJhs6PyG0VYz70nfYfiA2g1RDCbzYQOE30gZPuHs9Tmv3tOTML53gztkRedzuM+OZGXyoJqGa9KJmwAfwSusA==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Interop": "17.8.37221"
+ }
+ },
+ "YamlDotNet": {
+ "type": "Transitive",
+ "resolved": "9.1.0",
+ "contentHash": "fuvGXU4Ec5HrsmEc+BiFTNPCRf1cGBI2kh/3RzMWgddM2M4ALhbSPoI3X3mhXZUD1qqQd9oSkFAtWjpz8z9eRg=="
+ },
+ "common": {
+ "type": "Project",
+ "dependencies": {
+ "Microsoft.Win32.Registry": "[4.5.0, )",
+ "Newtonsoft.Json": "[9.0.1, )",
+ "PowerShellProTools.VSCode": "[1.0.0, )",
+ "PowerShellStandard.Library": "[5.1.0, )",
+ "Serilog.Sinks.File": "[5.0.0, )"
+ }
+ },
+ "formdesigner.common": {
+ "type": "Project"
+ },
+ "formdesigner.generator": {
+ "type": "Project",
+ "dependencies": {
+ "PowerShellStandard.Library": "[5.1.0, )"
+ }
+ },
+ "PowerShellProTools.VSCode": {
+ "type": "Project",
+ "dependencies": {
+ "FormDesigner.Generator": "[1.0.0, )",
+ "ICSharpCode.Decompiler": "[7.0.0.6488, )",
+ "Newtonsoft.Json": "[9.0.1, )",
+ "PowerShellStandard.Library": "[5.1.0, )"
+ }
+ },
+ "powershelltools.testadapter": {
+ "type": "Project",
+ "dependencies": {
+ "PowerShellStandard.Library": "[5.1.0, )"
+ }
+ },
+ "powershelltoolspro.cmdlets": {
+ "type": "Project",
+ "dependencies": {
+ "Common": "[1.0.0, )",
+ "FormDesigner.Generator": "[1.0.0, )",
+ "PowerShellStandard.Library": "[5.1.0, )",
+ "PowerShellToolsPro.Packager": "[2.0.0, )",
+ "StrongNamer": "[0.2.5, )",
+ "System.IO.Pipes.AccessControl": "[4.5.0, )",
+ "YamlDotNet": "[9.1.0, )",
+ "morelinq": "[3.3.2, )"
+ }
+ },
+ "powershelltoolspro.msbuild": {
+ "type": "Project",
+ "dependencies": {
+ "Microsoft.Build": "[15.9.20, )",
+ "Microsoft.Build.Tasks.Core": "[15.9.20, )",
+ "Microsoft.Build.Utilities.Core": "[15.9.20, )",
+ "PowerShellStandard.Library": "[5.1.0, )",
+ "PowerShellToolsPro.Cmdlets": "[1.0.0, )",
+ "PowerShellToolsPro.Packager": "[2.0.0, )"
+ }
+ },
+ "powershelltoolspro.packager": {
+ "type": "Project",
+ "dependencies": {
+ "PowerShellStandard.Library": "[5.1.0, )",
+ "StrongNamer": "[0.2.5, )",
+ "System.Drawing.Common": "[6.0.0, )",
+ "System.Text.Json": "[4.6.0, )"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/PowerShellTools.Shared/PowerShellTools.Shared.shproj b/PowerShellTools.Shared/PowerShellTools.Shared.shproj
index 71b6ba8..058dc99 100644
--- a/PowerShellTools.Shared/PowerShellTools.Shared.shproj
+++ b/PowerShellTools.Shared/PowerShellTools.Shared.shproj
@@ -1,8 +1,10 @@
-
+
112d4ae2-c8c8-4b7f-833d-46d4ff945180
14.0
+ true
diff --git a/PowerShellTools.Test/PowerShellTools.Test.csproj b/PowerShellTools.Test/PowerShellTools.Test.csproj
index 6ac77b1..d5f566f 100644
--- a/PowerShellTools.Test/PowerShellTools.Test.csproj
+++ b/PowerShellTools.Test/PowerShellTools.Test.csproj
@@ -1,5 +1,6 @@
-
+
Debug
@@ -18,6 +19,7 @@
UnitTest
v4.7.2
+ true
AnyCPU
diff --git a/PowerShellTools.Test/packages.lock.json b/PowerShellTools.Test/packages.lock.json
new file mode 100644
index 0000000..69e84f8
--- /dev/null
+++ b/PowerShellTools.Test/packages.lock.json
@@ -0,0 +1,1299 @@
+{
+ "version": 1,
+ "dependencies": {
+ ".NETFramework,Version=v4.7.2": {
+ "Microsoft.PowerShell.SDK": {
+ "type": "Direct",
+ "requested": "[7.1.4, )",
+ "resolved": "7.1.4",
+ "contentHash": "KpMfgi285u6lckqF75UIBR15amcsJdMxrCUI88w5RasOadVJLcoI1YK+5QXWqVVr5zDZk9fBGuVcliM+A6RWiQ=="
+ },
+ "Microsoft.VisualStudio.SDK": {
+ "type": "Direct",
+ "requested": "[15.0.1, )",
+ "resolved": "15.0.1",
+ "contentHash": "gXRQicFwdaN2kK9LYJ+vBmSz4zhDvZkF2uCooSp2EMBmUbLW8/tgk+Zf6+qM0nmyhDs27Jzu3HN/XK2eV8Uyow==",
+ "dependencies": {
+ "EnvDTE100": "10.0.3",
+ "Microsoft.VisualStudio.CommandBars": "8.0.0",
+ "Microsoft.VisualStudio.ComponentModelHost": "15.0.26228",
+ "Microsoft.VisualStudio.CoreUtility": "15.0.26228",
+ "Microsoft.VisualStudio.Debugger.Engine": "15.0.26228",
+ "Microsoft.VisualStudio.Debugger.Interop.10.0": "10.0.30320",
+ "Microsoft.VisualStudio.Debugger.Interop.12.0": "12.0.21006",
+ "Microsoft.VisualStudio.Debugger.Interop.14.0": "14.3.25408",
+ "Microsoft.VisualStudio.Debugger.Interop.15.0": "15.0.26228",
+ "Microsoft.VisualStudio.Debugger.InteropA": "9.0.21023",
+ "Microsoft.VisualStudio.Designer.Interfaces": "1.1.4323",
+ "Microsoft.VisualStudio.DpiAwareness": "6.0.28727",
+ "Microsoft.VisualStudio.Editor": "15.0.26228",
+ "Microsoft.VisualStudio.ImageCatalog": "15.0.26228",
+ "Microsoft.VisualStudio.Imaging": "15.0.26228",
+ "Microsoft.VisualStudio.Language.Intellisense": "15.0.26228",
+ "Microsoft.VisualStudio.Language.NavigateTo.Interfaces": "15.0.26228",
+ "Microsoft.VisualStudio.Language.StandardClassification": "15.0.26228",
+ "Microsoft.VisualStudio.OLE.Interop": "7.10.6071",
+ "Microsoft.VisualStudio.Package.LanguageService.15.0": "15.0.26228",
+ "Microsoft.VisualStudio.ProjectAggregator": "8.0.50728",
+ "Microsoft.VisualStudio.SDK.Analyzers": "16.3.14",
+ "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "15.0.27",
+ "Microsoft.VisualStudio.Setup.Configuration.Interop": "1.16.30",
+ "Microsoft.VisualStudio.Shell.15.0": "15.0.26228",
+ "Microsoft.VisualStudio.Shell.Design": "15.0.26228",
+ "Microsoft.VisualStudio.Shell.Embeddable": "15.0.26228",
+ "Microsoft.VisualStudio.Shell.Framework": "15.0.26228",
+ "Microsoft.VisualStudio.Shell.Interop": "7.10.6072",
+ "Microsoft.VisualStudio.Shell.Interop.12.1.DesignTime": "12.1.30329",
+ "Microsoft.VisualStudio.Shell.Interop.14.0.DesignTime": "14.3.26929",
+ "Microsoft.VisualStudio.Shell.Interop.15.0.DesignTime": "15.0.26201",
+ "Microsoft.VisualStudio.TaskRunnerExplorer.14.0": "14.0.0",
+ "Microsoft.VisualStudio.Text.Logic": "15.0.26228",
+ "Microsoft.VisualStudio.TextManager.Interop.12.1.DesignTime": "12.1.30330",
+ "Microsoft.VisualStudio.TextTemplating.15.0": "15.0.26228",
+ "Microsoft.VisualStudio.TextTemplating.Interfaces.15.0": "15.0.26228",
+ "Microsoft.VisualStudio.TextTemplating.VSHost.15.0": "15.0.26228",
+ "Microsoft.VisualStudio.Threading": "15.0.240",
+ "Microsoft.VisualStudio.Web.BrowserLink.12.0": "12.0.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "Newtonsoft.Json": "8.0.3",
+ "System.Collections.Immutable": "1.3.1",
+ "System.ComponentModel.Composition": "4.5.0",
+ "VSLangProj100": "10.0.30320",
+ "VSLangProj110": "11.0.61031",
+ "VSLangProj140": "14.0.25030",
+ "VSLangProj150": "15.0.26229",
+ "VSLangProj2": "7.0.5001"
+ }
+ },
+ "Microsoft.Win32.Registry": {
+ "type": "Direct",
+ "requested": "[5.0.0, )",
+ "resolved": "5.0.0",
+ "contentHash": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
+ "dependencies": {
+ "System.Security.AccessControl": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ }
+ },
+ "Moq": {
+ "type": "Direct",
+ "requested": "[4.10.1, )",
+ "resolved": "4.10.1",
+ "contentHash": "9VA2mB8JELXG0aDGABn2UlHB0hB8E9LFriDt4ukeS1noCEzEkQ0wpDo+w1qJxLYyhY+Z3Kf+2OgbebFL9XtLjg==",
+ "dependencies": {
+ "Castle.Core": "4.3.1",
+ "System.Threading.Tasks.Extensions": "4.5.1"
+ }
+ },
+ "NSubstitute": {
+ "type": "Direct",
+ "requested": "[4.2.2, )",
+ "resolved": "4.2.2",
+ "contentHash": "s+H1fUo+WSymYxNdZlwhekdNDLv4w0ZvmwYheMEe4tWACcMDNoqfcDpeL66RyWfurNvvIYQJNP3VUwX2aAC1gw==",
+ "dependencies": {
+ "Castle.Core": "4.4.0",
+ "System.Threading.Tasks.Extensions": "4.3.0"
+ }
+ },
+ "System.Diagnostics.DiagnosticSource": {
+ "type": "Direct",
+ "requested": "[5.0.1, )",
+ "resolved": "5.0.1",
+ "contentHash": "uXQEYqav2V3zP6OwkOKtLv+qIi6z3m1hsGyKwXX7ZA7htT4shoVccGxnJ9kVRFPNAsi1ArZTq2oh7WOto6GbkQ==",
+ "dependencies": {
+ "System.Memory": "4.5.4",
+ "System.Runtime.CompilerServices.Unsafe": "5.0.0"
+ }
+ },
+ "System.Threading.Tasks.Extensions": {
+ "type": "Direct",
+ "requested": "[4.5.4, )",
+ "resolved": "4.5.4",
+ "contentHash": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "4.5.3"
+ }
+ },
+ "System.ValueTuple": {
+ "type": "Direct",
+ "requested": "[4.5.0, )",
+ "resolved": "4.5.0",
+ "contentHash": "okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ=="
+ },
+ "xunit": {
+ "type": "Direct",
+ "requested": "[2.4.1, )",
+ "resolved": "2.4.1",
+ "contentHash": "XNR3Yz9QTtec16O0aKcO6+baVNpXmOnPUxDkCY97J+8krUYxPvXT1szYYEUdKk4sB8GOI2YbAjRIOm8ZnXRfzQ==",
+ "dependencies": {
+ "xunit.analyzers": "0.10.0",
+ "xunit.assert": "[2.4.1]",
+ "xunit.core": "[2.4.1]"
+ }
+ },
+ "Castle.Core": {
+ "type": "Transitive",
+ "resolved": "4.4.0",
+ "contentHash": "b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ=="
+ },
+ "EnvDTE": {
+ "type": "Transitive",
+ "resolved": "8.0.2",
+ "contentHash": "u8Blk4h4kYywOVR5kgApLe1gbEj5BDAhK1k21nYv1gDmmISS3efziVN1j6REoiqROk7XuMX2Kk87Kv0whFqLBA==",
+ "dependencies": {
+ "stdole": "7.0.3302"
+ }
+ },
+ "EnvDTE100": {
+ "type": "Transitive",
+ "resolved": "10.0.3",
+ "contentHash": "s2HfFPFLn0MX/CeCX7QthpJrFqB8uzR3zC4VL+h7TTsmTVB1NpY5HCG/1tmH4XRzFlz12o5/8aPUgo0nA+Ge1Q==",
+ "dependencies": {
+ "EnvDTE90a": "9.0.3",
+ "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "15.0.16"
+ }
+ },
+ "EnvDTE80": {
+ "type": "Transitive",
+ "resolved": "8.0.3",
+ "contentHash": "31qmvJGDGgKAb4+1Kox54TfSwrGqd2HTiGGX/PiRDeVzK7EjgKhKAv/mvjO/CccVnH/xoIAGGk+K0mjHEndpTQ==",
+ "dependencies": {
+ "EnvDTE": "8.0.2",
+ "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "15.0.16"
+ }
+ },
+ "EnvDTE90": {
+ "type": "Transitive",
+ "resolved": "9.0.3",
+ "contentHash": "dYnEoZAp3xVmDhvGZxtXkgmv2OHetmIrkzGrvcMuyw/WUO5v2Spre/nZqd9CLjsgDaFE57D4CPKIGyZM4UD8Ew==",
+ "dependencies": {
+ "EnvDTE80": "8.0.3",
+ "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "15.0.16"
+ }
+ },
+ "EnvDTE90a": {
+ "type": "Transitive",
+ "resolved": "9.0.3",
+ "contentHash": "Kl7mDCzxPVbQZqMF5v00viFrgLdq+mYRXDZhFm9FQ5nZCEPbob7FbP0+sMfgYsCB9qYBr/AHdAB+pOnaS82RdQ==",
+ "dependencies": {
+ "EnvDTE90": "9.0.3",
+ "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "15.0.16"
+ }
+ },
+ "ICSharpCode.Decompiler": {
+ "type": "Transitive",
+ "resolved": "7.0.0.6488",
+ "contentHash": "1enxZGgiZgnka6VcHpBxkcuuNo462+YVPzRYUfe2/eF3tcDuLk9/yKEfQnXC265sRKnDhks+2Xhk0PlyagM5EA==",
+ "dependencies": {
+ "System.Collections.Immutable": "5.0.0",
+ "System.Reflection.Metadata": "5.0.0"
+ }
+ },
+ "Microsoft.ApplicationInsights": {
+ "type": "Transitive",
+ "resolved": "2.20.0",
+ "contentHash": "mb+EC5j06Msn5HhKrhrsMAst6JxvYUnphQMGY2cixCabgGAO3q79Y8o/p1Zce1Azgd1IVkRKAMzAV4vDCbXOqA==",
+ "dependencies": {
+ "System.Diagnostics.DiagnosticSource": "5.0.0"
+ }
+ },
+ "Microsoft.Bcl.AsyncInterfaces": {
+ "type": "Transitive",
+ "resolved": "1.0.0",
+ "contentHash": "K63Y4hORbBcKLWH5wnKgzyn7TOfYzevIEwIedQHBIkmkEBA9SCqgvom+XTuE+fAFGvINGkhFItaZ2dvMGdT5iw==",
+ "dependencies": {
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ }
+ },
+ "Microsoft.Build": {
+ "type": "Transitive",
+ "resolved": "15.9.20",
+ "contentHash": "b42hOwbOknlaqSjvmGdBRSgK6uKqsK3SL5977KGXgPkCJPcpb9hUIisjuFygVe9xuCEcKPZx8CRB+q6pf2M4Yg==",
+ "dependencies": {
+ "Microsoft.Build.Framework": "15.9.20",
+ "Microsoft.VisualStudio.Setup.Configuration.Interop": "1.16.30",
+ "System.Collections.Immutable": "1.5.0",
+ "System.IO.Compression": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
+ "System.Threading.Tasks.Dataflow": "4.5.24"
+ }
+ },
+ "Microsoft.Build.Framework": {
+ "type": "Transitive",
+ "resolved": "15.9.20",
+ "contentHash": "j7KrBtZrD+YQPAu+8K1a0J7HgDf0X18bSnqu5llKXxHZ5Cb1t3eSlEtZPUDFqsv3RCBzByggjIBaxrmdvHxLqA=="
+ },
+ "Microsoft.Build.Tasks.Core": {
+ "type": "Transitive",
+ "resolved": "15.9.20",
+ "contentHash": "q1YB/wGcivg8BrdTmq/ZtIKhViNPZ9jdf8dqh//lE9mQp36qSgwn+Qb+6ZyD/THMS+tLC1SJaC/QKO0v6+hBqg==",
+ "dependencies": {
+ "Microsoft.Build.Framework": "15.9.20",
+ "Microsoft.Build.Utilities.Core": "15.9.20",
+ "Microsoft.VisualStudio.Setup.Configuration.Interop": "1.16.30",
+ "System.Collections.Immutable": "1.5.0",
+ "System.Threading.Tasks.Dataflow": "4.5.24"
+ }
+ },
+ "Microsoft.Build.Utilities.Core": {
+ "type": "Transitive",
+ "resolved": "15.9.20",
+ "contentHash": "s5F2IDARivpFJ+RiwOBnCt6Higu88nhDYfaUWwJ2ecBSf83HZsc3E/EjyQIs+4fPAeS5IZsL2ak7gOdxEXubSA==",
+ "dependencies": {
+ "Microsoft.Build.Framework": "15.9.20",
+ "Microsoft.VisualStudio.Setup.Configuration.Interop": "1.16.30",
+ "System.Collections.Immutable": "1.5.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0"
+ }
+ },
+ "Microsoft.CodeAnalysis.BannedApiAnalyzers": {
+ "type": "Transitive",
+ "resolved": "2.9.4",
+ "contentHash": "hOZfdDpP/z24UwIdFk8hhY5PW33CBWyiQwyk3Mh8lv8NR5BdyH2KqyJelIdKkFVL057oaUot13SsCqC7dBt3uA=="
+ },
+ "Microsoft.Extensions.Configuration": {
+ "type": "Transitive",
+ "resolved": "2.2.0",
+ "contentHash": "nOP8R1mVb/6mZtm2qgAJXn/LFm/2kMjHDAg/QJLFG6CuWYJtaD3p1BwQhufBVvRzL9ceJ/xF0SQ0qsI2GkDQAA==",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "2.2.0"
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions": {
+ "type": "Transitive",
+ "resolved": "2.2.0",
+ "contentHash": "65MrmXCziWaQFrI0UHkQbesrX5wTwf9XPjY5yFm/VkgJKFJ5gqvXRoXjIZcf2wLi5ZlwGz/oMYfyURVCWbM5iw==",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "2.2.0"
+ }
+ },
+ "Microsoft.Extensions.Configuration.Binder": {
+ "type": "Transitive",
+ "resolved": "2.2.0",
+ "contentHash": "vJ9xvOZCnUAIHcGC3SU35r3HKmHTVIeHzo6u/qzlHAqD8m6xv92MLin4oJntTvkpKxVX3vI1GFFkIQtU3AdlsQ==",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "2.2.0"
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection": {
+ "type": "Transitive",
+ "resolved": "2.2.0",
+ "contentHash": "MZtBIwfDFork5vfjpJdG5g8wuJFt7d/y3LOSVVtDK/76wlbtz6cjltfKHqLx2TKVqTj5/c41t77m1+h20zqtPA==",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0"
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions": {
+ "type": "Transitive",
+ "resolved": "2.2.0",
+ "contentHash": "f9hstgjVmr6rmrfGSpfsVOl2irKAgr1QjrSi3FgnS7kulxband50f2brRLwySAQTADPZeTdow0mpSMcoAdadCw=="
+ },
+ "Microsoft.Extensions.Logging": {
+ "type": "Transitive",
+ "resolved": "2.2.0",
+ "contentHash": "Nxqhadc9FCmFHzU+fz3oc8sFlE6IadViYg8dfUdGzJZ2JUxnCsRghBhhOWdM4B2zSZqEc+0BjliBh/oNdRZuig==",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Binder": "2.2.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Options": "2.2.0"
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions": {
+ "type": "Transitive",
+ "resolved": "2.2.0",
+ "contentHash": "B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A=="
+ },
+ "Microsoft.Extensions.Options": {
+ "type": "Transitive",
+ "resolved": "2.2.0",
+ "contentHash": "UpZLNLBpIZ0GTebShui7xXYh6DmBHjWM8NxGxZbdQh/bPZ5e6YswqI+bru6BnEL5eWiOdodsXtEz3FROcgi/qg==",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Primitives": "2.2.0",
+ "System.ComponentModel.Annotations": "4.5.0"
+ }
+ },
+ "Microsoft.Extensions.Primitives": {
+ "type": "Transitive",
+ "resolved": "2.2.0",
+ "contentHash": "azyQtqbm4fSaDzZHD/J+V6oWMFaf2tWP4WEGIYePLCMw3+b2RQdj9ybgbQyjCshcitQKQ4lEDOZjmSlTTrHxUg==",
+ "dependencies": {
+ "System.Memory": "4.5.1",
+ "System.Runtime.CompilerServices.Unsafe": "4.5.1"
+ }
+ },
+ "Microsoft.TestPlatform.ObjectModel": {
+ "type": "Transitive",
+ "resolved": "15.9.0",
+ "contentHash": "O6J4QhackLTvuCuunhxUfXaySRIY6PjLrO6msAdeRjF46et2PYPtRdg9gV9MLRlb/khwBE2ahmOKILP7NWSDfg==",
+ "dependencies": {
+ "System.Reflection.Metadata": "1.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0"
+ }
+ },
+ "Microsoft.VisualStudio.CommandBars": {
+ "type": "Transitive",
+ "resolved": "8.0.0",
+ "contentHash": "U5u6Yvwg1p8+V9VkQ1RZAYAhMJIw+qB+sGrCuPl2R3HHYSmkJ39cCBIBXeDunkAOguKD+1th/ciWOcCPIYXgRQ=="
+ },
+ "Microsoft.VisualStudio.ComponentModelHost": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "988RiP69R/zvzTUfm+rwZ/ugURZKONzVS4ttK+npBLx7PNQC2L6fmUzv3XQv7nwk9pvHkznaFYR78QWOwtgVRw=="
+ },
+ "Microsoft.VisualStudio.CoreUtility": {
+ "type": "Transitive",
+ "resolved": "15.8.525",
+ "contentHash": "VdXRQoiV5ZqZEkx8aHU8oJQx8H7XP86sYs0SBSmMS6009+V1JlNiEj1U2P7yl4Kh2OsYPLBo3ESYB02dAlhnoA==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Threading": "15.3.23",
+ "System.ValueTuple": "4.3.0"
+ }
+ },
+ "Microsoft.VisualStudio.Debugger.Engine": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "RVxkXDQJhwQ0FKaPsdxljNKDijM1e4QxhF0dT54beCQREtSHAAuDZZawfi3m/dtzpl5uFwfy+SBsyeH+aanWpQ==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Debugger.Interop.11.0": "11.0.50727",
+ "Microsoft.VisualStudio.Debugger.InteropA": "9.0.21022"
+ }
+ },
+ "Microsoft.VisualStudio.Debugger.Interop.10.0": {
+ "type": "Transitive",
+ "resolved": "10.0.30320",
+ "contentHash": "sErGOQTd5MkBrpG02xUGDJA6IbHSUubQ3aE8d424QKMAlgZoyS4ewiCgfKQN12VcrHde3nTiL6gsY/HUOvkVRQ==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Debugger.InteropA": "9.0.21023"
+ }
+ },
+ "Microsoft.VisualStudio.Debugger.Interop.11.0": {
+ "type": "Transitive",
+ "resolved": "11.0.50728",
+ "contentHash": "+6jmYT+biLP69qsEKIHKehhoab+15PtQQHwGcLUGV+wgKIeNdyyInjL5lY1NYT1eiO2BTXBtBfv6UrsjM5BvUw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Debugger.InteropA": "9.0.21023"
+ }
+ },
+ "Microsoft.VisualStudio.Debugger.Interop.12.0": {
+ "type": "Transitive",
+ "resolved": "12.0.21006",
+ "contentHash": "Zn9VnHBcu9gbxaSOeQJL4A5qs/G0/z670hE+DWTd3YBkanESuAxDyBKxYzEtHJDO84hfoWJQmqMm0GlT8cvHVQ==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Debugger.InteropA": "9.0.21023"
+ }
+ },
+ "Microsoft.VisualStudio.Debugger.Interop.14.0": {
+ "type": "Transitive",
+ "resolved": "14.3.25408",
+ "contentHash": "xMgjHZ2QAmsSfCLq8u72bx+5OmTO23inuwDtmBVpDk1m8iwD8wt1+QdrhFy69djpCqqb6To0jljYiqMZG2qajg==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Debugger.Interop.11.0": "11.0.50728"
+ }
+ },
+ "Microsoft.VisualStudio.Debugger.Interop.15.0": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "qHCJ/ADV7sq2ylscH9lw8CNstVMscf+gxBYtwg9dceNwUFC1/SHoblbC6M1skhfZb/oXPGvKtiH2ryk6thQK+A==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Debugger.InteropA": "9.0.21022"
+ }
+ },
+ "Microsoft.VisualStudio.Debugger.InteropA": {
+ "type": "Transitive",
+ "resolved": "9.0.21023",
+ "contentHash": "GUOG8vlZPDfUENsBbxasoSNtUmi6tS6VqeA0HF6vZ7Dk9HgeWAdICUZd1/Kiw4ujsMCPdC8+xjZcfXOnnQX0NQ=="
+ },
+ "Microsoft.VisualStudio.Designer.Interfaces": {
+ "type": "Transitive",
+ "resolved": "1.1.4323",
+ "contentHash": "OPCJsu0Ashev1cyzdywOKdPggOwOCw+vhazBU9psA1GWjNHwrG77fDlrmVdJjs5y2Vx/jetyR6BQcN448fGZ8Q=="
+ },
+ "Microsoft.VisualStudio.DpiAwareness": {
+ "type": "Transitive",
+ "resolved": "6.0.28727",
+ "contentHash": "MnsTIFgiy/UNf6O9/iVf/iJ31HYa2OZ8C+3MmkOuXsym95Urz6UfugBPKohudzegWDTHye1jnVuiR/38kZ09Kg=="
+ },
+ "Microsoft.VisualStudio.Editor": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "iVyyBELkXlu+9biTLuc65D0ozrRFaZpRvpH1XnnZ7I4xdTbXXKKTQVtf0RBpKqIhqgi+r1Uf4tT73Vk+08cQHg==",
+ "dependencies": {
+ "Microsoft.VisualStudio.CoreUtility": "15.0.26228",
+ "Microsoft.VisualStudio.OLE.Interop": "7.10.6070",
+ "Microsoft.VisualStudio.Text.Data": "15.0.26228",
+ "Microsoft.VisualStudio.Text.Logic": "15.0.26228",
+ "Microsoft.VisualStudio.Text.UI": "15.0.26228",
+ "Microsoft.VisualStudio.Text.UI.Wpf": "15.0.26228",
+ "Microsoft.VisualStudio.TextManager.Interop": "7.10.6070",
+ "Microsoft.VisualStudio.TextManager.Interop.8.0": "8.0.50727"
+ }
+ },
+ "Microsoft.VisualStudio.ImageCatalog": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "QULWo81bg8bmKyKjKD7LELLSFUlvViNbeP4HCCrbEAYkDUOJ+yyWVFZxFplyl8ptIcRAh2sPUE9N45m8P5WQFA=="
+ },
+ "Microsoft.VisualStudio.Imaging": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "msJjqbs2cccoT6arcozmosjGji6i8m5f35Ndsq0OKT7U5gRUmzfcLPwu/dr6M+wzrqakV6l0ZHi8hSSpDCx33A==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Utilities": "15.0.26228"
+ }
+ },
+ "Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime": {
+ "type": "Transitive",
+ "resolved": "14.3.26930",
+ "contentHash": "5nwZt9F6INTWWU+NLWTp/SKKUv1y2/uZ1riLlkdIILWgBG1+BaaFjEfBO5PQK3aMl/sDLTmGa6qJib77dmqvww==",
+ "dependencies": {
+ "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "15.0.16"
+ }
+ },
+ "Microsoft.VisualStudio.Language": {
+ "type": "Transitive",
+ "resolved": "15.8.525",
+ "contentHash": "f1o+jtcIefuaRgxxr7IANXVifBpfkll47otTK8MGZGIncsCWM+5sRKF83ahabg+NfMD8YMpXzv2vp2Rp7GnpBw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.CoreUtility": "15.8.525",
+ "Microsoft.VisualStudio.Text.Data": "15.8.525",
+ "Microsoft.VisualStudio.Text.Logic": "15.8.525",
+ "Microsoft.VisualStudio.Text.UI": "15.8.525",
+ "Newtonsoft.Json": "9.0.1",
+ "StreamJsonRpc": "1.3.6",
+ "System.Collections.Immutable": "1.3.1"
+ }
+ },
+ "Microsoft.VisualStudio.Language.Intellisense": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "leVikeYIm+7jN6jjMXMh3e7+i9Ifo4r2CHwGRppv7OefBC993uMsJyR3yw5+tqk0ITqlt9cKWCUIyETbnRhCFw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.CoreUtility": "15.0.26228",
+ "Microsoft.VisualStudio.Text.Data": "15.0.26228",
+ "Microsoft.VisualStudio.Text.UI": "15.0.26228"
+ }
+ },
+ "Microsoft.VisualStudio.Language.NavigateTo.Interfaces": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "zx6Q0qMDJCbb6MLn6SuTmTmfSJ41lg9WLvOhMSDta5vAI+xSNLz0sOOybBBxA/cDeSaPJK/I+zeuJR3+PRV5UA==",
+ "dependencies": {
+ "Microsoft.VisualStudio.CoreUtility": "15.0.26228",
+ "Microsoft.VisualStudio.Text.Data": "15.0.26228"
+ }
+ },
+ "Microsoft.VisualStudio.Language.StandardClassification": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "yhlqwNGcn/z/gGmcElF8KbCgduJW5m9qE5PxIUN2Hfrar1sYgNtXMRciKGTqJTWibsoz86jYRwsjcrLHgBTZHQ==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Text.Logic": "15.0.26228"
+ }
+ },
+ "Microsoft.VisualStudio.OLE.Interop": {
+ "type": "Transitive",
+ "resolved": "7.10.6071",
+ "contentHash": "PuINhJH41DbKfkNU+qcyC4Wlt/z0DgI/ViZv6gjUclylnFbUIpCdqm4fK+PKJDfiarHTKnGWkxjKuOIS1Bqs5Q=="
+ },
+ "Microsoft.VisualStudio.Package.LanguageService.15.0": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "j8bJFOpPFsWomR1FyhDGA4vdIlkzXg3Rud/r9iev1lvb9UPcO2hvfHIDgH9g4tMHtChHBCsEM9WYLBlEy/bgxw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.OLE.Interop": "7.10.6070",
+ "Microsoft.VisualStudio.Shell.15.0": "15.0.26228",
+ "Microsoft.VisualStudio.Shell.Interop": "7.10.6071",
+ "Microsoft.VisualStudio.TextManager.Interop": "7.10.6070",
+ "Microsoft.VisualStudio.TextManager.Interop.8.0": "8.0.50727"
+ }
+ },
+ "Microsoft.VisualStudio.ProjectAggregator": {
+ "type": "Transitive",
+ "resolved": "8.0.50728",
+ "contentHash": "//wv15F1WjMkOWwdmhTktUtias6M4pWDDztVW9la14T2eKBbmw6niqiZL3bB23EZ4l0J5wafQcWgZusv4UI//w=="
+ },
+ "Microsoft.VisualStudio.SDK.Analyzers": {
+ "type": "Transitive",
+ "resolved": "16.3.14",
+ "contentHash": "3XoSGzWLGWwVN7LpAOrMDa/hcqooVmep3tF2Dg6P95ioUa+nRlIUNLIkoKxEy/Yadhnc/kQ/4FIXxQfa5hWE9w==",
+ "dependencies": {
+ "Microsoft.CodeAnalysis.BannedApiAnalyzers": "2.9.4",
+ "Microsoft.VisualStudio.Threading.Analyzers": "16.3.52"
+ }
+ },
+ "Microsoft.VisualStudio.SDK.EmbedInteropTypes": {
+ "type": "Transitive",
+ "resolved": "15.0.27",
+ "contentHash": "rZNw+lD53U0DMFMiHEe3TnIr2RyWPaqr+kNVITrKVZHwI3y27KQ0sbj8w7o/BoMilR8dFJwzcKn60SXITYdkzA=="
+ },
+ "Microsoft.VisualStudio.Setup.Configuration.Interop": {
+ "type": "Transitive",
+ "resolved": "1.16.30",
+ "contentHash": "lC6SqNkraWUSY7cyF5GUmXSECoTMwslBc/r1dguChjsi0D0BlF7G6PLsvXD0NFCwnpKlgVzUYrIq7DQakdGerw=="
+ },
+ "Microsoft.VisualStudio.Shell.15.0": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "2hM2owplA4W0z9D/MkPQgLl07HoTaVuHOHjsLGPt5iTym1C1wspc/5fuWWZjL9pzaZXx2Q1tEZrwnPzX9gSaPA==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Imaging": "15.0.26228",
+ "Microsoft.VisualStudio.OLE.Interop": "7.10.6070",
+ "Microsoft.VisualStudio.Shell.Framework": "15.0.26228",
+ "Microsoft.VisualStudio.Shell.Interop": "7.10.6071",
+ "Microsoft.VisualStudio.Shell.Interop.8.0": "8.0.50727",
+ "Microsoft.VisualStudio.Shell.Interop.9.0": "9.0.30729",
+ "Microsoft.VisualStudio.TextManager.Interop": "7.10.6070",
+ "Microsoft.VisualStudio.Threading": "15.0.240",
+ "Microsoft.VisualStudio.Utilities": "15.0.26228"
+ }
+ },
+ "Microsoft.VisualStudio.Shell.Design": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "6fDy20wh2dyxZR/f7c8A485w/XXLPjcHJSEjxNZDKc+1xI0qVaocKM478/pcCVx/Bovah8YLNB4dU/NqZdLabg==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Shell.Framework": "15.0.26228",
+ "Microsoft.VisualStudio.Shell.Interop": "7.10.6071",
+ "Microsoft.VisualStudio.Shell.Interop.8.0": "8.0.50727",
+ "Microsoft.VisualStudio.TextManager.Interop": "7.10.6070"
+ }
+ },
+ "Microsoft.VisualStudio.Shell.Embeddable": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "FuEwL1Ju8ShsmxNm+X5Zzc9eYAUFdC0LXX5NgVCycC6gnHXyQYF59nsPWXR7Em7e6ubIayoMI8XbZnRUCP/TSA=="
+ },
+ "Microsoft.VisualStudio.Shell.Framework": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "llNX2IqaxexoOF5vErKx4510Pmtm1bA9u7Nti3VLzmddMX3LjjyF4YXT0hLKn/ZMB2AlLWdC/PEsBAo1bXmmbw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.CoreUtility": "15.0.26228",
+ "Microsoft.VisualStudio.OLE.Interop": "7.10.6070",
+ "Microsoft.VisualStudio.Utilities": "15.0.26228"
+ }
+ },
+ "Microsoft.VisualStudio.Shell.Interop": {
+ "type": "Transitive",
+ "resolved": "7.10.6072",
+ "contentHash": "+7MhWXWaSYnTh56NVhMSMqDu7f1Xf7/yCPrM16QcBPyCTEV/l3/QPQG3xeVR9et81YeemlWFtAjA1hnskOkvVw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.TextManager.Interop": "7.10.6071"
+ }
+ },
+ "Microsoft.VisualStudio.Shell.Interop.10.0": {
+ "type": "Transitive",
+ "resolved": "10.0.30320",
+ "contentHash": "6pxD6MmXolmZBeTMnnB7rQHRap0S17fUM28odRxGNL/2XCa9w3Jn3pXUNBKmq8v0b5Ao43VOkQZfZAiP8t2gRg==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Shell.Interop.8.0": "8.0.50728"
+ }
+ },
+ "Microsoft.VisualStudio.Shell.Interop.11.0": {
+ "type": "Transitive",
+ "resolved": "11.0.61031",
+ "contentHash": "DBEBFtxFnLf7agWO/rgO/nSWZBUkTFdgHU07klrkNBbE65lKFc08sbm9hGe9LmLIoVDOAOhwiuCMphvB0wBIRg==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Shell.Interop.10.0": "10.0.30320"
+ }
+ },
+ "Microsoft.VisualStudio.Shell.Interop.12.0": {
+ "type": "Transitive",
+ "resolved": "12.0.30111",
+ "contentHash": "T7zNd9P55EbSEXDXztHTLoFeoxFYt1bq+qJdc9VwAESQk528Fm/QUy7GrtwCipJFOn0cgXUMAo6xjlT5JVJxJA==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Shell.Interop.11.0": "11.0.61031"
+ }
+ },
+ "Microsoft.VisualStudio.Shell.Interop.12.1.DesignTime": {
+ "type": "Transitive",
+ "resolved": "12.1.30329",
+ "contentHash": "RUfkSSRWVI6jC7+887uk4A2FQTBNO3XexNgCWap4ngGhjdAf4tSAmZRvja9hWHRPtJcbGdttPR6h+OQtip4Shw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "15.0.16",
+ "Microsoft.VisualStudio.Shell.Interop.12.0": "12.0.30111"
+ }
+ },
+ "Microsoft.VisualStudio.Shell.Interop.14.0.DesignTime": {
+ "type": "Transitive",
+ "resolved": "14.3.26929",
+ "contentHash": "MleLRfMCBppdh5vc4QTdJijbe6cdhcklu4yqzRYaEa2skvUTS1CgOykex/80gq1Iihz1hR0zRU72rUYxWxcReA==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime": "14.3.26930",
+ "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "15.0.16",
+ "Microsoft.VisualStudio.Shell.Interop.12.0": "12.0.30111"
+ }
+ },
+ "Microsoft.VisualStudio.Shell.Interop.15.0.DesignTime": {
+ "type": "Transitive",
+ "resolved": "15.0.26201",
+ "contentHash": "iq+pfcSJhwSdl3j75NrDRFqyrOIx5xJOW9yBV8sRXxyzJxihNoba/MbE0jO62ZMYGMG4+On6P7rROF8j1tMaKw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Shell.Interop": "7.10.6071",
+ "Microsoft.VisualStudio.Shell.Interop.12.0": "12.0.30110"
+ }
+ },
+ "Microsoft.VisualStudio.Shell.Interop.8.0": {
+ "type": "Transitive",
+ "resolved": "8.0.50728",
+ "contentHash": "2F0OrBJg5bhw3ZPVji98I5bJSD7DWBmCfsGbl4SEoas0FPvQZCcLTrQgx5uX2WPLbjUd4ZY7Umk2JSYjDBfhtw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Shell.Interop": "7.10.6072",
+ "Microsoft.VisualStudio.TextManager.Interop.8.0": "8.0.50728"
+ }
+ },
+ "Microsoft.VisualStudio.Shell.Interop.9.0": {
+ "type": "Transitive",
+ "resolved": "9.0.30729",
+ "contentHash": "Qolo2V47CYOwS44mlfCpC7ie+juK44MLBNtBxDSeImolTjvLdY8INv8PtQM1WX51XRcgQBV+g3QiSdScJTtOSQ==",
+ "dependencies": {
+ "Microsoft.VisualStudio.OLE.Interop": "7.10.6070",
+ "Microsoft.VisualStudio.Shell.Interop": "7.10.6071",
+ "Microsoft.VisualStudio.Shell.Interop.8.0": "8.0.50727",
+ "Microsoft.VisualStudio.TextManager.Interop": "7.10.6070"
+ }
+ },
+ "Microsoft.VisualStudio.TaskRunnerExplorer.14.0": {
+ "type": "Transitive",
+ "resolved": "14.0.0",
+ "contentHash": "iZpAv8bEWjkyxFF1GIcSOfldqP/umopJKnJGKHa0vg8KR7ZY3u3dWtJmwO4w3abIx+176SIkQe78y5A+/Md7FA=="
+ },
+ "Microsoft.VisualStudio.Text.Data": {
+ "type": "Transitive",
+ "resolved": "15.8.525",
+ "contentHash": "8ms8yMvVv9UXqZNTqjNg8HQm/6prziEY2wV+kYPLpIeqd5UO6IBRVareg2Hh1HMmYgc6NJoSncvczMA/L9r1TQ==",
+ "dependencies": {
+ "Microsoft.VisualStudio.CoreUtility": "15.8.525",
+ "Microsoft.VisualStudio.Threading": "15.3.23"
+ }
+ },
+ "Microsoft.VisualStudio.Text.Logic": {
+ "type": "Transitive",
+ "resolved": "15.8.525",
+ "contentHash": "LKpaU5oNdA0g5qAgATPggldy7zHnYoRxPeHKyZK1YvuQv1Su7wXhW/UuGdpDmBctoyhsNlVR5jLPzhdoOrVsPg==",
+ "dependencies": {
+ "Microsoft.VisualStudio.CoreUtility": "15.8.525",
+ "Microsoft.VisualStudio.Text.Data": "15.8.525",
+ "System.Collections.Immutable": "1.3.1"
+ }
+ },
+ "Microsoft.VisualStudio.Text.UI": {
+ "type": "Transitive",
+ "resolved": "15.8.525",
+ "contentHash": "xrkh3foP+IeDstYkqXhBprYCTSBoVgoNmqPlzoe3H952WZs5ksGHEJhRIC6L3Pst9OzxONlbcBReKEg84TqTeA==",
+ "dependencies": {
+ "Microsoft.VisualStudio.CoreUtility": "15.8.525",
+ "Microsoft.VisualStudio.Text.Data": "15.8.525",
+ "Microsoft.VisualStudio.Text.Logic": "15.8.525"
+ }
+ },
+ "Microsoft.VisualStudio.Text.UI.Wpf": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "G/GMgm2KOnsKRHcYOfJ3FeSW776JjBqaQyzjD1LTPXvf6lBWMNSFFLDjY3Q8MdoXCE28PvheP+3lWItssBy/jw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.CoreUtility": "15.0.26228",
+ "Microsoft.VisualStudio.Text.Data": "15.0.26228",
+ "Microsoft.VisualStudio.Text.Logic": "15.0.26228",
+ "Microsoft.VisualStudio.Text.UI": "15.0.26228"
+ }
+ },
+ "Microsoft.VisualStudio.TextManager.Interop": {
+ "type": "Transitive",
+ "resolved": "7.10.6071",
+ "contentHash": "2g+TsUdrY3ygz0j4NgPMWZWQGfFqoNYBU2RjWHQtyRxiruA6d3hsDXufY55PfvLI02gFplC5d1lG1r7JCMHQeA==",
+ "dependencies": {
+ "Microsoft.VisualStudio.OLE.Interop": "7.10.6071"
+ }
+ },
+ "Microsoft.VisualStudio.TextManager.Interop.12.1.DesignTime": {
+ "type": "Transitive",
+ "resolved": "12.1.30330",
+ "contentHash": "dJPJ0wAv2XFLmiZdAVeZmJDnyjtudPWwDQdYV+M9VDNS2Uk4aG0EK39QTJtaPU3JkKjclK7VjF7NxKMJz+c6Sg==",
+ "dependencies": {
+ "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "15.0.16"
+ }
+ },
+ "Microsoft.VisualStudio.TextManager.Interop.8.0": {
+ "type": "Transitive",
+ "resolved": "8.0.50728",
+ "contentHash": "PmnaaYeARYBn3oJGG0w8jy6ICXKoqQMZ6xEJOiY9kMiHq28inhH0vqy1zK3U+YzgojHiGB4X2U0VJUaMKVtUaA==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Shell.Interop": "7.10.6072"
+ }
+ },
+ "Microsoft.VisualStudio.TextTemplating.15.0": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "OgFNoaYkp/uAizxjLQNm2KJKeV+xupcxqZfzrebxHRj4Dal3G6kDhTxwEABhgfOfJrR0BGuWKJdvn9NTH8KdEw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.TextTemplating.Interfaces.10.0": "10.0.30319",
+ "Microsoft.VisualStudio.TextTemplating.Interfaces.11.0": "11.0.50727"
+ }
+ },
+ "Microsoft.VisualStudio.TextTemplating.Interfaces.10.0": {
+ "type": "Transitive",
+ "resolved": "10.0.30319",
+ "contentHash": "+v2xDJNKbjOytR4ruf33T4jws+OT18EKfrx29XaFhThXbIT8n+mOh1NLL9nsmuGoEY7etBRgSIWkizVHS4W5MQ=="
+ },
+ "Microsoft.VisualStudio.TextTemplating.Interfaces.11.0": {
+ "type": "Transitive",
+ "resolved": "11.0.50727",
+ "contentHash": "7352YCr0fJjylWC0RdTpQryRLAk7td/URkEsn1bMR8a2aCcedOgIeuexeKwjakWYvHnZX8W2beB66/2Xzt54+Q==",
+ "dependencies": {
+ "Microsoft.VisualStudio.TextTemplating.Interfaces.10.0": "10.0.30319"
+ }
+ },
+ "Microsoft.VisualStudio.TextTemplating.Interfaces.15.0": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "GFoI+WPSw7SBtQXp1rEGMqpT6hOiC540AiSw5lKryZOqXRqeXM05Mala/nHRWPczIIDO7iy53OCouwEh430ufg=="
+ },
+ "Microsoft.VisualStudio.TextTemplating.VSHost.15.0": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "6Ehp0Tgy74B13gz0nvpHsz7mZE7HymVaBILH8siuncuQGx51kXQrjV2MmaDz+4467q/x2g4M7Csu5+1qTSJ7vA==",
+ "dependencies": {
+ "Microsoft.VisualStudio.OLE.Interop": "7.10.6070",
+ "Microsoft.VisualStudio.Shell.15.0": "15.0.26228",
+ "Microsoft.VisualStudio.Shell.Framework": "15.0.26228",
+ "Microsoft.VisualStudio.Shell.Interop": "7.10.6071",
+ "Microsoft.VisualStudio.Shell.Interop.8.0": "8.0.50727",
+ "Microsoft.VisualStudio.TextTemplating.15.0": "15.0.26228",
+ "Microsoft.VisualStudio.TextTemplating.Interfaces.11.0": "11.0.50727"
+ }
+ },
+ "Microsoft.VisualStudio.Threading": {
+ "type": "Transitive",
+ "resolved": "15.3.23",
+ "contentHash": "prLnnKpT2fip/uyqwl5WuSt+YShOmO2qH7cdXqpB/dw1+eGdHVaYRbuBpt7nYXSJaPleSYqoKljoK0Zmh3VU4Q==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Validation": "15.3.15"
+ }
+ },
+ "Microsoft.VisualStudio.Threading.Analyzers": {
+ "type": "Transitive",
+ "resolved": "16.3.52",
+ "contentHash": "qTaG5K8gCHOhQfOI4fCJc0UGLnT8vqipkmzux6dI4TTA6EfxOkAd+7r3tRWn7pqbX9xLJaO+O1cNY1IpPm1wEA=="
+ },
+ "Microsoft.VisualStudio.Utilities": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "sMo3p9QmkomisbvBWdbWgdbd1Y6xGLqvxG8HPjCsRKeK5x8EW8qkpo7D53Cumo2Q1cCaDSgb2si2Q2bCmZeaZg=="
+ },
+ "Microsoft.VisualStudio.Validation": {
+ "type": "Transitive",
+ "resolved": "15.3.15",
+ "contentHash": "bvJIwuCLqu7YKXcZqY85VJy0ljtm9QSRkq4CD2bpO/GHynsm72uZxjBDa050VY7kElXS8mb7VW5JNUfg4D/UBA=="
+ },
+ "Microsoft.VisualStudio.Web.BrowserLink.12.0": {
+ "type": "Transitive",
+ "resolved": "12.0.0",
+ "contentHash": "HeuaZh8+wNVdwx7VF8guFGH2Z2zH+FYxWBsRNp+FjjlmrhCfM7GUQV5azaTv/bN5TPaK8ALJoP9UX5o1FB5k1A=="
+ },
+ "Microsoft.VisualStudio.Workspace": {
+ "type": "Transitive",
+ "resolved": "15.0.485",
+ "contentHash": "5268C17MKsfN1XzKncTHjjx94p3bxMfqHac0+8RIUmhw+KYE3jUK4JBN8vjgGdnvWDIDXRO/MjxFs0moQQovtQ=="
+ },
+ "Microsoft.VSSDK.VsixSignTool": {
+ "type": "Transitive",
+ "resolved": "16.2.29116.78",
+ "contentHash": "HMivXxSU2deRjrDLzYhW48BuYcWOaGcFPMur9VtK5SU/YDFa+55LrT8hikE1wsOSEGMWwC5nthYcsA3UqJISjA=="
+ },
+ "Microsoft.Win32.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA=="
+ },
+ "Microsoft.Windows.SDK.Contracts": {
+ "type": "Transitive",
+ "resolved": "10.0.18362.2005",
+ "contentHash": "3R3uDDGRSdeRdHpor1SyN3qg/VmseKjcKFIAQJ0iRnzoCPvnlCcnSGaNsjqVSzHQHbBSBtSKVBxBS2GyEw8qhw==",
+ "dependencies": {
+ "System.Runtime.WindowsRuntime": "4.6.0",
+ "System.Runtime.WindowsRuntime.UI.Xaml": "4.6.0"
+ }
+ },
+ "ModernWpfUI.Signed": {
+ "type": "Transitive",
+ "resolved": "0.9.4",
+ "contentHash": "hTv9N5TgsSe9XD+ZeDsyBXTVXewJoFpPCMDYmnKndgZLl8eqXRP9CvzmJTA/+L+Dyk01vQP2fPsf/imkQGqwug==",
+ "dependencies": {
+ "Microsoft.Windows.SDK.Contracts": "10.0.18362.2005",
+ "System.ValueTuple": "4.5.0"
+ }
+ },
+ "morelinq": {
+ "type": "Transitive",
+ "resolved": "3.3.2",
+ "contentHash": "MQc8GppZJLmjvcpEdf3EkC6ovsp7gRWt2e5mC7dcIOrgwSc+yjFd3JQ0iRqr3XrUT6rb/phv0IkEmBtbfVA7AQ==",
+ "dependencies": {
+ "System.ValueTuple": "4.5.0"
+ }
+ },
+ "Newtonsoft.Json": {
+ "type": "Transitive",
+ "resolved": "9.0.1",
+ "contentHash": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw=="
+ },
+ "Nito.AsyncEx.Context": {
+ "type": "Transitive",
+ "resolved": "5.1.0",
+ "contentHash": "EE7M37c5E/kvulzEkpUR6v1AnK34b2wysOLJHSjl78p/3hL7grte0XCPRqCfLZDwq98AD9GHMTCRfZy7TEeHhw==",
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.1.0"
+ }
+ },
+ "Nito.AsyncEx.Tasks": {
+ "type": "Transitive",
+ "resolved": "5.1.0",
+ "contentHash": "tU3Ib4zs8ivM+uS8n7F7ReWZlA3mODyLqwPE+v+WJI94hZ8xLXl+a9npfj/IcmeXo9a6fGKLWkswKQHOeTWqwA==",
+ "dependencies": {
+ "Nito.Disposables": "2.2.0"
+ }
+ },
+ "Nito.Disposables": {
+ "type": "Transitive",
+ "resolved": "2.2.0",
+ "contentHash": "QcL+uBwUCEoK8GKp/WzjdCiG8/3G1WLlVNJgLJUNG7bIIVAcEV+Mro4s53VT4Nd8xMSplv0gy+Priw44vRvLaA==",
+ "dependencies": {
+ "System.Collections.Immutable": "1.4.0"
+ }
+ },
+ "PowerShellStandard.Library": {
+ "type": "Transitive",
+ "resolved": "5.1.0",
+ "contentHash": "iYaRvQsM1fow9h3uEmio+2m2VXfulgI16AYHaTZ8Sf7erGe27Qc8w/h6QL5UPuwv1aXR40QfzMEwcCeiYJp2cw=="
+ },
+ "PowerShellTools.Interfaces": {
+ "type": "Transitive",
+ "resolved": "1.0.2",
+ "contentHash": "Rm19y9nWEa7cWI9riU8uM+GRbzWb5dI7k7bVna9Gn9W5jVtGwtT/kvZEfJV7Zrg9AMe60kblnIC28lOot+GtAA=="
+ },
+ "Serilog": {
+ "type": "Transitive",
+ "resolved": "2.10.0",
+ "contentHash": "+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA=="
+ },
+ "Serilog.Sinks.File": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==",
+ "dependencies": {
+ "Serilog": "2.10.0"
+ }
+ },
+ "stdole": {
+ "type": "Transitive",
+ "resolved": "7.0.3302",
+ "contentHash": "2314LjTYA+nRknLNzqKY/qrJH21jKhEp/bMTOCTPyidoVYI+3EtyI73Y91NOzCFP2OgzeYnk+uKbTWWuGIMLjA=="
+ },
+ "StreamJsonRpc": {
+ "type": "Transitive",
+ "resolved": "1.4.134",
+ "contentHash": "D1uNq+mAIrFzIajERZQonbmCbJsNcvT+qdWcXaFaZSPdnEimawEbdQmyZrnauST66DlrlJ0lBfbcgWqahtLNTg==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Threading": "15.3.20",
+ "Newtonsoft.Json": "9.0.1",
+ "System.Net.Http": "4.3.3",
+ "System.Reflection.Emit": "4.3.0"
+ }
+ },
+ "StrongNamer": {
+ "type": "Transitive",
+ "resolved": "0.2.5",
+ "contentHash": "1IWl8gYnsTC6NXHz63iDpXL8r0y5x0M/Cnq/Ju5uM17gTOQYSeclMkgQsvmGglJEqAwVxayY1sIUR3bb2MAy5Q=="
+ },
+ "System.Buffers": {
+ "type": "Transitive",
+ "resolved": "4.5.1",
+ "contentHash": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg=="
+ },
+ "System.Collections.Immutable": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
+ "dependencies": {
+ "System.Memory": "4.5.4"
+ }
+ },
+ "System.ComponentModel.Annotations": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg=="
+ },
+ "System.ComponentModel.Composition": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "+iB9FoZnfdqMEGq6np28X6YNSUrse16CakmIhV3h6PxEWt7jYxUN3Txs1D8MZhhf4QmyvK0F/EcIN0f4gGN0dA=="
+ },
+ "System.Drawing.Common": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg=="
+ },
+ "System.IO": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg=="
+ },
+ "System.IO.Compression": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg=="
+ },
+ "System.IO.Pipes.AccessControl": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "uqKLJb0Cukb8vG6JVKbJXOAmMWUWOue4ZTjMn7qrfGLZHww3iV8xV1amipI238kmmoFQx6I8GP2bjDM/ss5pQQ==",
+ "dependencies": {
+ "System.Security.AccessControl": "4.5.0",
+ "System.Security.Principal.Windows": "4.5.0"
+ }
+ },
+ "System.Memory": {
+ "type": "Transitive",
+ "resolved": "4.5.4",
+ "contentHash": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
+ "dependencies": {
+ "System.Buffers": "4.5.1",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.5.3"
+ }
+ },
+ "System.Net.Http": {
+ "type": "Transitive",
+ "resolved": "4.3.4",
+ "contentHash": "aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==",
+ "dependencies": {
+ "System.Security.Cryptography.X509Certificates": "4.3.0"
+ }
+ },
+ "System.Numerics.Vectors": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ=="
+ },
+ "System.Reflection.Emit": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg=="
+ },
+ "System.Reflection.Metadata": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==",
+ "dependencies": {
+ "System.Collections.Immutable": "5.0.0"
+ }
+ },
+ "System.Runtime": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw=="
+ },
+ "System.Runtime.CompilerServices.Unsafe": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA=="
+ },
+ "System.Runtime.InteropServices.RuntimeInformation": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw=="
+ },
+ "System.Runtime.WindowsRuntime": {
+ "type": "Transitive",
+ "resolved": "4.6.0",
+ "contentHash": "IWrs1TmbxP65ZZjIglNyvDkFNoV5q2Pofg5WO7I8RKQOpLdFprQSh3xesOoClBqR4JHr4nEB1Xk1MqLPW1jPuQ=="
+ },
+ "System.Runtime.WindowsRuntime.UI.Xaml": {
+ "type": "Transitive",
+ "resolved": "4.6.0",
+ "contentHash": "r4tNw5v5kqRJ9HikWpcyNf3suGw7DjX93svj9iBjtdeLqL8jt9Z+7f+s4wrKZJr84u8IMsrIjt8K6jYvkRqMSg==",
+ "dependencies": {
+ "System.Runtime.WindowsRuntime": "4.6.0"
+ }
+ },
+ "System.Security.AccessControl": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
+ "dependencies": {
+ "System.Security.Principal.Windows": "5.0.0"
+ }
+ },
+ "System.Security.Cryptography.Algorithms": {
+ "type": "Transitive",
+ "resolved": "4.3.1",
+ "contentHash": "DVUblnRfnarrI5olEC2B/OCsJQd0anjVaObQMndHSc43efbc88/RMOlDyg/EyY0ix5ecyZMXS8zMksb5ukebZA==",
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.Encoding": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw=="
+ },
+ "System.Security.Cryptography.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg=="
+ },
+ "System.Security.Cryptography.X509Certificates": {
+ "type": "Transitive",
+ "resolved": "4.3.2",
+ "contentHash": "uwlfOnvJd7rXRvP3aV126Q9XebIIEGEaZ245Rd5/ZwOg7U7AU+AmpE0vRh2F0DFjfOTuk7MAexv4nYiNP/RYnQ==",
+ "dependencies": {
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0"
+ }
+ },
+ "System.Security.Principal.Windows": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA=="
+ },
+ "System.Text.Encodings.Web": {
+ "type": "Transitive",
+ "resolved": "4.6.0",
+ "contentHash": "BXgFO8Yi7ao7hVA/nklD0Hre1Bbce048ZqryGZVFifGNPuh+2jqF1i/jLJLMfFGZIzUOw+nCIeH24SQhghDSPw==",
+ "dependencies": {
+ "System.Memory": "4.5.3"
+ }
+ },
+ "System.Text.Json": {
+ "type": "Transitive",
+ "resolved": "4.6.0",
+ "contentHash": "4F8Xe+JIkVoDJ8hDAZ7HqLkjctN/6WItJIzQaifBwClC7wmoLSda/Sv2i6i1kycqDb3hWF4JCVbpAweyOKHEUA==",
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "1.0.0",
+ "System.Buffers": "4.5.0",
+ "System.Memory": "4.5.3",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.6.0",
+ "System.Text.Encodings.Web": "4.6.0",
+ "System.Threading.Tasks.Extensions": "4.5.2",
+ "System.ValueTuple": "4.5.0"
+ }
+ },
+ "System.Threading.Tasks.Dataflow": {
+ "type": "Transitive",
+ "resolved": "4.9.0",
+ "contentHash": "dTS+3D/GtG2/Pvc3E5YzVvAa7aQJgLDlZDIzukMOJjYudVOQOUXEU68y6Zi3Nn/jqIeB5kOCwrGbQFAKHVzXEQ=="
+ },
+ "VSLangProj": {
+ "type": "Transitive",
+ "resolved": "7.0.3301",
+ "contentHash": "J4ehf4H38FQmgqda7d//s7n7sQb0q8X0u1PYN2nwTkgaIHK/+0u7LfCrgfa9t8VYueZbgSrtJNeeQHxGzXuIiQ==",
+ "dependencies": {
+ "EnvDTE": "8.0.2"
+ }
+ },
+ "VSLangProj100": {
+ "type": "Transitive",
+ "resolved": "10.0.30320",
+ "contentHash": "c1t1WtXDuJQUHIIg4+8/jBdShIgAWWtbNiZKCFbwcZFpUlRo3ylrwaDmy72USPXcdDpjo9Uwjr49dd+cMASmdw=="
+ },
+ "VSLangProj110": {
+ "type": "Transitive",
+ "resolved": "11.0.61031",
+ "contentHash": "YWY6SmLLB7tu19PVYAXPl7IsN7uY8DMMCp2AmQp6KThw6HO/c94ziqy6Z+dyVPL/u1ubj8qyiFowbYt85/QISA==",
+ "dependencies": {
+ "VSLangProj80": "8.0.50728",
+ "VSLangProj90": "9.0.30730"
+ }
+ },
+ "VSLangProj140": {
+ "type": "Transitive",
+ "resolved": "14.0.25030",
+ "contentHash": "2q8fycwqph6KOU8z2z+gNf92H/OSdN3vl7U0Y9yw9kBhr95ZXux4bUpEEn2nf1T31RtRUfNDGO4fViLWeuZcfg==",
+ "dependencies": {
+ "VSLangProj80": "8.0.50728"
+ }
+ },
+ "VSLangProj150": {
+ "type": "Transitive",
+ "resolved": "15.0.26229",
+ "contentHash": "CTziuvrAgyv0hHlfkKzP/vCDrMkFjianXSGsHjQWQWPT0gcjrduxGn5IK5LgmxHgMVI4f+7V1sPACbZBGle+WA=="
+ },
+ "VSLangProj2": {
+ "type": "Transitive",
+ "resolved": "7.0.5001",
+ "contentHash": "M3/sA+tzxK9DPnE4VCaSM+tSrZEKj3WqnyEqxkukEmBWzBmf7obYnQgYAT3Rw1hNZjQ/KYeibnG+IrT+B4yKrg==",
+ "dependencies": {
+ "VSLangProj": "7.0.3301"
+ }
+ },
+ "VSLangProj80": {
+ "type": "Transitive",
+ "resolved": "8.0.50728",
+ "contentHash": "LLC2ipldip9JJCkOCwRlX7IlBHZAVc6yDWgKVEgWfX/5tdsrod/gZ3NOh+2f4Omqo6VHcps9afoLTunHRISiEw==",
+ "dependencies": {
+ "VSLangProj2": "7.0.5001"
+ }
+ },
+ "VSLangProj90": {
+ "type": "Transitive",
+ "resolved": "9.0.30730",
+ "contentHash": "3SXRUT8dV5zcHxED1e6vuPmBBj7rjPbOHBBHYVwDE+RADL2T2FBtKhx2kvbzxJU+Wlr7zdyjmkiGXn7thesIEg=="
+ },
+ "xunit.abstractions": {
+ "type": "Transitive",
+ "resolved": "2.0.3",
+ "contentHash": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg=="
+ },
+ "xunit.analyzers": {
+ "type": "Transitive",
+ "resolved": "0.10.0",
+ "contentHash": "4/IDFCJfIeg6bix9apmUtIMwvOsiwqdEexeO/R2D4GReIGPLIRODTpId/l4LRSrAJk9lEO3Zx1H0Zx6uohJDNg=="
+ },
+ "xunit.assert": {
+ "type": "Transitive",
+ "resolved": "2.4.1",
+ "contentHash": "O/Oe0BS5RmSsM+LQOb041TzuPo5MdH2Rov+qXGS37X+KFG1Hxz7kopYklM5+1Y+tRGeXrOx5+Xne1RuqLFQoyQ=="
+ },
+ "xunit.core": {
+ "type": "Transitive",
+ "resolved": "2.4.1",
+ "contentHash": "Zsj5OMU6JasNGERXZy8s72+pcheG6Q15atS5XpZXqAtULuyQiQ6XNnUsp1gyfC6WgqScqMvySiEHmHcOG6Eg0Q==",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.4.1]",
+ "xunit.extensibility.execution": "[2.4.1]"
+ }
+ },
+ "xunit.extensibility.core": {
+ "type": "Transitive",
+ "resolved": "2.4.1",
+ "contentHash": "yKZKm/8QNZnBnGZFD9SewkllHBiK0DThybQD/G4PiAmQjKtEZyHi6ET70QPU9KtSMJGRYS6Syk7EyR2EVDU4Kg==",
+ "dependencies": {
+ "xunit.abstractions": "2.0.3"
+ }
+ },
+ "xunit.extensibility.execution": {
+ "type": "Transitive",
+ "resolved": "2.4.1",
+ "contentHash": "7e/1jqBpcb7frLkB6XDrHCGXAbKN4Rtdb88epYxCSRQuZDRW8UtTfdTEVpdTl8s4T56e07hOBVd4G0OdCxIY2A==",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.4.1]"
+ }
+ },
+ "YamlDotNet": {
+ "type": "Transitive",
+ "resolved": "9.1.0",
+ "contentHash": "fuvGXU4Ec5HrsmEc+BiFTNPCRf1cGBI2kh/3RzMWgddM2M4ALhbSPoI3X3mhXZUD1qqQd9oSkFAtWjpz8z9eRg=="
+ },
+ "common": {
+ "type": "Project",
+ "dependencies": {
+ "Microsoft.Win32.Registry": "[4.5.0, )",
+ "Newtonsoft.Json": "[9.0.1, )",
+ "PowerShellProTools.VSCode": "[1.0.0, )",
+ "PowerShellStandard.Library": "[5.1.0, )",
+ "Serilog.Sinks.File": "[5.0.0, )"
+ }
+ },
+ "formdesigner.common": {
+ "type": "Project"
+ },
+ "formdesigner.generator": {
+ "type": "Project",
+ "dependencies": {
+ "PowerShellStandard.Library": "[5.1.0, )"
+ }
+ },
+ "PowerShellProTools.VSCode": {
+ "type": "Project",
+ "dependencies": {
+ "FormDesigner.Generator": "[1.0.0, )",
+ "ICSharpCode.Decompiler": "[7.0.0.6488, )",
+ "Newtonsoft.Json": "[9.0.1, )",
+ "PowerShellStandard.Library": "[5.1.0, )"
+ }
+ },
+ "PowerShellTools.2024.7.1": {
+ "type": "Project",
+ "dependencies": {
+ "Castle.Core": "[4.4.0, )",
+ "Common": "[1.0.0, )",
+ "FormDesigner.Common": "[1.0.0, )",
+ "Microsoft.ApplicationInsights": "[2.20.0, )",
+ "Microsoft.Build": "[15.9.20, )",
+ "Microsoft.Build.Utilities.Core": "[15.9.20, )",
+ "Microsoft.Extensions.DependencyInjection": "[2.2.0, )",
+ "Microsoft.Extensions.Logging": "[2.2.0, )",
+ "Microsoft.TestPlatform.ObjectModel": "[15.9.0, )",
+ "Microsoft.VSSDK.Vsixsigntool": "[16.2.29116.78, )",
+ "Microsoft.VisualStudio.Language": "[15.8.525, )",
+ "Microsoft.VisualStudio.SDK": "[15.0.1, )",
+ "Microsoft.VisualStudio.Workspace": "[15.0.485, )",
+ "Microsoft.Win32.Registry": "[4.5.0, )",
+ "ModernWpfUI.Signed": "[0.9.4, )",
+ "Nito.AsyncEx.Context": "[5.1.0, )",
+ "PowerShellProTools.VSCode": "[1.0.0, )",
+ "PowerShellStandard.Library": "[5.1.0, )",
+ "PowerShellTools.Interfaces": "[1.0.2, )",
+ "PowerShellTools.TestAdapter": "[1.0.0, )",
+ "PowerShellToolsPro.MsBuild": "[1.0.0, )",
+ "PowerShellToolsPro.Packager": "[2.0.0, )",
+ "Serilog.Sinks.File": "[5.0.0, )",
+ "StreamJsonRpc": "[1.4.134, )",
+ "StrongNamer": "[0.2.5, )",
+ "System.Diagnostics.DiagnosticSource": "[4.6.0, )",
+ "System.Net.Http": "[4.3.4, )",
+ "System.Security.Cryptography.Algorithms": "[4.3.1, )",
+ "System.Security.Cryptography.X509Certificates": "[4.3.2, )",
+ "System.Threading.Tasks.Dataflow": "[4.9.0, )",
+ "System.Threading.Tasks.Extensions": "[4.3.0, )",
+ "System.ValueTuple": "[4.5.0, )"
+ }
+ },
+ "powershelltools.testadapter": {
+ "type": "Project",
+ "dependencies": {
+ "PowerShellStandard.Library": "[5.1.0, )"
+ }
+ },
+ "powershelltoolspro.cmdlets": {
+ "type": "Project",
+ "dependencies": {
+ "Common": "[1.0.0, )",
+ "FormDesigner.Generator": "[1.0.0, )",
+ "PowerShellStandard.Library": "[5.1.0, )",
+ "PowerShellToolsPro.Packager": "[2.0.0, )",
+ "StrongNamer": "[0.2.5, )",
+ "System.IO.Pipes.AccessControl": "[4.5.0, )",
+ "YamlDotNet": "[9.1.0, )",
+ "morelinq": "[3.3.2, )"
+ }
+ },
+ "powershelltoolspro.msbuild": {
+ "type": "Project",
+ "dependencies": {
+ "Microsoft.Build": "[15.9.20, )",
+ "Microsoft.Build.Tasks.Core": "[15.9.20, )",
+ "Microsoft.Build.Utilities.Core": "[15.9.20, )",
+ "PowerShellStandard.Library": "[5.1.0, )",
+ "PowerShellToolsPro.Cmdlets": "[1.0.0, )",
+ "PowerShellToolsPro.Packager": "[2.0.0, )"
+ }
+ },
+ "powershelltoolspro.packager": {
+ "type": "Project",
+ "dependencies": {
+ "PowerShellStandard.Library": "[5.1.0, )",
+ "StrongNamer": "[0.2.5, )",
+ "System.Drawing.Common": "[6.0.0, )",
+ "System.Text.Json": "[4.6.0, )"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/PowerShellTools.TestAdapter/PowerShellTools.TestAdapter.csproj b/PowerShellTools.TestAdapter/PowerShellTools.TestAdapter.csproj
index 12fb516..ab66a05 100644
--- a/PowerShellTools.TestAdapter/PowerShellTools.TestAdapter.csproj
+++ b/PowerShellTools.TestAdapter/PowerShellTools.TestAdapter.csproj
@@ -5,6 +5,7 @@
true
false
..\Build\FinalPublicKey.snk
+ true
@@ -27,5 +28,5 @@
5.1.0
-
+
diff --git a/PowerShellTools.TestAdapter/packages.lock.json b/PowerShellTools.TestAdapter/packages.lock.json
new file mode 100644
index 0000000..81632ed
--- /dev/null
+++ b/PowerShellTools.TestAdapter/packages.lock.json
@@ -0,0 +1,27 @@
+{
+ "version": 1,
+ "dependencies": {
+ ".NETStandard,Version=v2.0": {
+ "NETStandard.Library": {
+ "type": "Direct",
+ "requested": "[2.0.3, )",
+ "resolved": "2.0.3",
+ "contentHash": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0"
+ }
+ },
+ "PowerShellStandard.Library": {
+ "type": "Direct",
+ "requested": "[5.1.0, )",
+ "resolved": "5.1.0",
+ "contentHash": "iYaRvQsM1fow9h3uEmio+2m2VXfulgI16AYHaTZ8Sf7erGe27Qc8w/h6QL5UPuwv1aXR40QfzMEwcCeiYJp2cw=="
+ },
+ "Microsoft.NETCore.Platforms": {
+ "type": "Transitive",
+ "resolved": "1.1.0",
+ "contentHash": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A=="
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/PowerShellTools.sln b/PowerShellTools.sln
index 612bdf3..890715d 100644
--- a/PowerShellTools.sln
+++ b/PowerShellTools.sln
@@ -169,7 +169,6 @@ Global
{41FF979F-3129-4EFE-94A3-37EBE32B508C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{41FF979F-3129-4EFE-94A3-37EBE32B508C}.Release|Any CPU.Build.0 = Release|Any CPU
{41FF979F-3129-4EFE-94A3-37EBE32B508C}.Release|x64.ActiveCfg = Release|Any CPU
- {41FF979F-3129-4EFE-94A3-37EBE32B508C}.Release|x64.Build.0 = Release|Any CPU
{41FF979F-3129-4EFE-94A3-37EBE32B508C}.Release|x86.ActiveCfg = Release|Any CPU
{41FF979F-3129-4EFE-94A3-37EBE32B508C}.Release|x86.Build.0 = Release|Any CPU
{57FF419D-7401-411E-A413-46B43E7C5B70}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
diff --git a/PowerShellTools/PowerShellTools.csproj b/PowerShellTools/PowerShellTools.csproj
index 4721ee8..ef186a9 100644
--- a/PowerShellTools/PowerShellTools.csproj
+++ b/PowerShellTools/PowerShellTools.csproj
@@ -1,5 +1,6 @@
-
+
false
@@ -7,6 +8,7 @@
15.0
+ true
diff --git a/PowerShellTools/packages.lock.json b/PowerShellTools/packages.lock.json
new file mode 100644
index 0000000..a313aa7
--- /dev/null
+++ b/PowerShellTools/packages.lock.json
@@ -0,0 +1,1202 @@
+{
+ "version": 1,
+ "dependencies": {
+ ".NETFramework,Version=v4.7.2": {
+ "Castle.Core": {
+ "type": "Direct",
+ "requested": "[4.4.0, )",
+ "resolved": "4.4.0",
+ "contentHash": "b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ=="
+ },
+ "Microsoft.ApplicationInsights": {
+ "type": "Direct",
+ "requested": "[2.20.0, )",
+ "resolved": "2.20.0",
+ "contentHash": "mb+EC5j06Msn5HhKrhrsMAst6JxvYUnphQMGY2cixCabgGAO3q79Y8o/p1Zce1Azgd1IVkRKAMzAV4vDCbXOqA==",
+ "dependencies": {
+ "System.Diagnostics.DiagnosticSource": "5.0.0"
+ }
+ },
+ "Microsoft.Build": {
+ "type": "Direct",
+ "requested": "[15.9.20, )",
+ "resolved": "15.9.20",
+ "contentHash": "b42hOwbOknlaqSjvmGdBRSgK6uKqsK3SL5977KGXgPkCJPcpb9hUIisjuFygVe9xuCEcKPZx8CRB+q6pf2M4Yg==",
+ "dependencies": {
+ "Microsoft.Build.Framework": "15.9.20",
+ "Microsoft.VisualStudio.Setup.Configuration.Interop": "1.16.30",
+ "System.Collections.Immutable": "1.5.0",
+ "System.IO.Compression": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
+ "System.Threading.Tasks.Dataflow": "4.5.24"
+ }
+ },
+ "Microsoft.Build.Utilities.Core": {
+ "type": "Direct",
+ "requested": "[15.9.20, )",
+ "resolved": "15.9.20",
+ "contentHash": "s5F2IDARivpFJ+RiwOBnCt6Higu88nhDYfaUWwJ2ecBSf83HZsc3E/EjyQIs+4fPAeS5IZsL2ak7gOdxEXubSA==",
+ "dependencies": {
+ "Microsoft.Build.Framework": "15.9.20",
+ "Microsoft.VisualStudio.Setup.Configuration.Interop": "1.16.30",
+ "System.Collections.Immutable": "1.5.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0"
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection": {
+ "type": "Direct",
+ "requested": "[2.2.0, )",
+ "resolved": "2.2.0",
+ "contentHash": "MZtBIwfDFork5vfjpJdG5g8wuJFt7d/y3LOSVVtDK/76wlbtz6cjltfKHqLx2TKVqTj5/c41t77m1+h20zqtPA==",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0"
+ }
+ },
+ "Microsoft.Extensions.Logging": {
+ "type": "Direct",
+ "requested": "[2.2.0, )",
+ "resolved": "2.2.0",
+ "contentHash": "Nxqhadc9FCmFHzU+fz3oc8sFlE6IadViYg8dfUdGzJZ2JUxnCsRghBhhOWdM4B2zSZqEc+0BjliBh/oNdRZuig==",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Binder": "2.2.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Options": "2.2.0"
+ }
+ },
+ "Microsoft.TestPlatform.ObjectModel": {
+ "type": "Direct",
+ "requested": "[15.9.0, )",
+ "resolved": "15.9.0",
+ "contentHash": "O6J4QhackLTvuCuunhxUfXaySRIY6PjLrO6msAdeRjF46et2PYPtRdg9gV9MLRlb/khwBE2ahmOKILP7NWSDfg==",
+ "dependencies": {
+ "System.Reflection.Metadata": "1.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0"
+ }
+ },
+ "Microsoft.VisualStudio.Language": {
+ "type": "Direct",
+ "requested": "[15.8.525, )",
+ "resolved": "15.8.525",
+ "contentHash": "f1o+jtcIefuaRgxxr7IANXVifBpfkll47otTK8MGZGIncsCWM+5sRKF83ahabg+NfMD8YMpXzv2vp2Rp7GnpBw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.CoreUtility": "15.8.525",
+ "Microsoft.VisualStudio.Text.Data": "15.8.525",
+ "Microsoft.VisualStudio.Text.Logic": "15.8.525",
+ "Microsoft.VisualStudio.Text.UI": "15.8.525",
+ "Newtonsoft.Json": "9.0.1",
+ "StreamJsonRpc": "1.3.6",
+ "System.Collections.Immutable": "1.3.1"
+ }
+ },
+ "Microsoft.VisualStudio.SDK": {
+ "type": "Direct",
+ "requested": "[15.0.1, )",
+ "resolved": "15.0.1",
+ "contentHash": "gXRQicFwdaN2kK9LYJ+vBmSz4zhDvZkF2uCooSp2EMBmUbLW8/tgk+Zf6+qM0nmyhDs27Jzu3HN/XK2eV8Uyow==",
+ "dependencies": {
+ "EnvDTE100": "10.0.3",
+ "Microsoft.VisualStudio.CommandBars": "8.0.0",
+ "Microsoft.VisualStudio.ComponentModelHost": "15.0.26228",
+ "Microsoft.VisualStudio.CoreUtility": "15.0.26228",
+ "Microsoft.VisualStudio.Debugger.Engine": "15.0.26228",
+ "Microsoft.VisualStudio.Debugger.Interop.10.0": "10.0.30320",
+ "Microsoft.VisualStudio.Debugger.Interop.12.0": "12.0.21006",
+ "Microsoft.VisualStudio.Debugger.Interop.14.0": "14.3.25408",
+ "Microsoft.VisualStudio.Debugger.Interop.15.0": "15.0.26228",
+ "Microsoft.VisualStudio.Debugger.InteropA": "9.0.21023",
+ "Microsoft.VisualStudio.Designer.Interfaces": "1.1.4323",
+ "Microsoft.VisualStudio.DpiAwareness": "6.0.28727",
+ "Microsoft.VisualStudio.Editor": "15.0.26228",
+ "Microsoft.VisualStudio.ImageCatalog": "15.0.26228",
+ "Microsoft.VisualStudio.Imaging": "15.0.26228",
+ "Microsoft.VisualStudio.Language.Intellisense": "15.0.26228",
+ "Microsoft.VisualStudio.Language.NavigateTo.Interfaces": "15.0.26228",
+ "Microsoft.VisualStudio.Language.StandardClassification": "15.0.26228",
+ "Microsoft.VisualStudio.OLE.Interop": "7.10.6071",
+ "Microsoft.VisualStudio.Package.LanguageService.15.0": "15.0.26228",
+ "Microsoft.VisualStudio.ProjectAggregator": "8.0.50728",
+ "Microsoft.VisualStudio.SDK.Analyzers": "16.3.14",
+ "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "15.0.27",
+ "Microsoft.VisualStudio.Setup.Configuration.Interop": "1.16.30",
+ "Microsoft.VisualStudio.Shell.15.0": "15.0.26228",
+ "Microsoft.VisualStudio.Shell.Design": "15.0.26228",
+ "Microsoft.VisualStudio.Shell.Embeddable": "15.0.26228",
+ "Microsoft.VisualStudio.Shell.Framework": "15.0.26228",
+ "Microsoft.VisualStudio.Shell.Interop": "7.10.6072",
+ "Microsoft.VisualStudio.Shell.Interop.12.1.DesignTime": "12.1.30329",
+ "Microsoft.VisualStudio.Shell.Interop.14.0.DesignTime": "14.3.26929",
+ "Microsoft.VisualStudio.Shell.Interop.15.0.DesignTime": "15.0.26201",
+ "Microsoft.VisualStudio.TaskRunnerExplorer.14.0": "14.0.0",
+ "Microsoft.VisualStudio.Text.Logic": "15.0.26228",
+ "Microsoft.VisualStudio.TextManager.Interop.12.1.DesignTime": "12.1.30330",
+ "Microsoft.VisualStudio.TextTemplating.15.0": "15.0.26228",
+ "Microsoft.VisualStudio.TextTemplating.Interfaces.15.0": "15.0.26228",
+ "Microsoft.VisualStudio.TextTemplating.VSHost.15.0": "15.0.26228",
+ "Microsoft.VisualStudio.Threading": "15.0.240",
+ "Microsoft.VisualStudio.Web.BrowserLink.12.0": "12.0.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "Newtonsoft.Json": "8.0.3",
+ "System.Collections.Immutable": "1.3.1",
+ "System.ComponentModel.Composition": "4.5.0",
+ "VSLangProj100": "10.0.30320",
+ "VSLangProj110": "11.0.61031",
+ "VSLangProj140": "14.0.25030",
+ "VSLangProj150": "15.0.26229",
+ "VSLangProj2": "7.0.5001"
+ }
+ },
+ "Microsoft.VisualStudio.Workspace": {
+ "type": "Direct",
+ "requested": "[15.0.485, )",
+ "resolved": "15.0.485",
+ "contentHash": "5268C17MKsfN1XzKncTHjjx94p3bxMfqHac0+8RIUmhw+KYE3jUK4JBN8vjgGdnvWDIDXRO/MjxFs0moQQovtQ=="
+ },
+ "Microsoft.VSSDK.VsixSignTool": {
+ "type": "Direct",
+ "requested": "[16.2.29116.78, )",
+ "resolved": "16.2.29116.78",
+ "contentHash": "HMivXxSU2deRjrDLzYhW48BuYcWOaGcFPMur9VtK5SU/YDFa+55LrT8hikE1wsOSEGMWwC5nthYcsA3UqJISjA=="
+ },
+ "Microsoft.Win32.Registry": {
+ "type": "Direct",
+ "requested": "[4.5.0, )",
+ "resolved": "4.5.0",
+ "contentHash": "+FWlwd//+Tt56316p00hVePBCouXyEzT86Jb3+AuRotTND0IYn0OO3obs1gnQEs/txEnt+rF2JBGLItTG+Be6A==",
+ "dependencies": {
+ "System.Security.AccessControl": "4.5.0",
+ "System.Security.Principal.Windows": "4.5.0"
+ }
+ },
+ "ModernWpfUI.Signed": {
+ "type": "Direct",
+ "requested": "[0.9.4, )",
+ "resolved": "0.9.4",
+ "contentHash": "hTv9N5TgsSe9XD+ZeDsyBXTVXewJoFpPCMDYmnKndgZLl8eqXRP9CvzmJTA/+L+Dyk01vQP2fPsf/imkQGqwug==",
+ "dependencies": {
+ "Microsoft.Windows.SDK.Contracts": "10.0.18362.2005",
+ "System.ValueTuple": "4.5.0"
+ }
+ },
+ "Nito.AsyncEx.Context": {
+ "type": "Direct",
+ "requested": "[5.1.0, )",
+ "resolved": "5.1.0",
+ "contentHash": "EE7M37c5E/kvulzEkpUR6v1AnK34b2wysOLJHSjl78p/3hL7grte0XCPRqCfLZDwq98AD9GHMTCRfZy7TEeHhw==",
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.1.0"
+ }
+ },
+ "PowerShellStandard.Library": {
+ "type": "Direct",
+ "requested": "[5.1.0, )",
+ "resolved": "5.1.0",
+ "contentHash": "iYaRvQsM1fow9h3uEmio+2m2VXfulgI16AYHaTZ8Sf7erGe27Qc8w/h6QL5UPuwv1aXR40QfzMEwcCeiYJp2cw=="
+ },
+ "PowerShellTools.Interfaces": {
+ "type": "Direct",
+ "requested": "[1.0.2, )",
+ "resolved": "1.0.2",
+ "contentHash": "Rm19y9nWEa7cWI9riU8uM+GRbzWb5dI7k7bVna9Gn9W5jVtGwtT/kvZEfJV7Zrg9AMe60kblnIC28lOot+GtAA=="
+ },
+ "Serilog.Sinks.File": {
+ "type": "Direct",
+ "requested": "[5.0.0, )",
+ "resolved": "5.0.0",
+ "contentHash": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==",
+ "dependencies": {
+ "Serilog": "2.10.0"
+ }
+ },
+ "StreamJsonRpc": {
+ "type": "Direct",
+ "requested": "[1.4.134, )",
+ "resolved": "1.4.134",
+ "contentHash": "D1uNq+mAIrFzIajERZQonbmCbJsNcvT+qdWcXaFaZSPdnEimawEbdQmyZrnauST66DlrlJ0lBfbcgWqahtLNTg==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Threading": "15.3.20",
+ "Newtonsoft.Json": "9.0.1",
+ "System.Net.Http": "4.3.3",
+ "System.Reflection.Emit": "4.3.0"
+ }
+ },
+ "StrongNamer": {
+ "type": "Direct",
+ "requested": "[0.2.5, )",
+ "resolved": "0.2.5",
+ "contentHash": "1IWl8gYnsTC6NXHz63iDpXL8r0y5x0M/Cnq/Ju5uM17gTOQYSeclMkgQsvmGglJEqAwVxayY1sIUR3bb2MAy5Q=="
+ },
+ "System.Diagnostics.DiagnosticSource": {
+ "type": "Direct",
+ "requested": "[4.6.0, )",
+ "resolved": "4.6.0",
+ "contentHash": "mbBgoR0rRfl2uimsZ2avZY8g7Xnh1Mza0rJZLPcxqiMWlkGukjmRkuMJ/er+AhQuiRIh80CR/Hpeztr80seV5g==",
+ "dependencies": {
+ "System.Memory": "4.5.3"
+ }
+ },
+ "System.Net.Http": {
+ "type": "Direct",
+ "requested": "[4.3.4, )",
+ "resolved": "4.3.4",
+ "contentHash": "aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==",
+ "dependencies": {
+ "System.Security.Cryptography.X509Certificates": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.Algorithms": {
+ "type": "Direct",
+ "requested": "[4.3.1, )",
+ "resolved": "4.3.1",
+ "contentHash": "DVUblnRfnarrI5olEC2B/OCsJQd0anjVaObQMndHSc43efbc88/RMOlDyg/EyY0ix5ecyZMXS8zMksb5ukebZA==",
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.X509Certificates": {
+ "type": "Direct",
+ "requested": "[4.3.2, )",
+ "resolved": "4.3.2",
+ "contentHash": "uwlfOnvJd7rXRvP3aV126Q9XebIIEGEaZ245Rd5/ZwOg7U7AU+AmpE0vRh2F0DFjfOTuk7MAexv4nYiNP/RYnQ==",
+ "dependencies": {
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0"
+ }
+ },
+ "System.Threading.Tasks.Dataflow": {
+ "type": "Direct",
+ "requested": "[4.9.0, )",
+ "resolved": "4.9.0",
+ "contentHash": "dTS+3D/GtG2/Pvc3E5YzVvAa7aQJgLDlZDIzukMOJjYudVOQOUXEU68y6Zi3Nn/jqIeB5kOCwrGbQFAKHVzXEQ=="
+ },
+ "System.Threading.Tasks.Extensions": {
+ "type": "Direct",
+ "requested": "[4.3.0, )",
+ "resolved": "4.3.0",
+ "contentHash": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug=="
+ },
+ "System.ValueTuple": {
+ "type": "Direct",
+ "requested": "[4.5.0, )",
+ "resolved": "4.5.0",
+ "contentHash": "okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ=="
+ },
+ "EnvDTE": {
+ "type": "Transitive",
+ "resolved": "8.0.2",
+ "contentHash": "u8Blk4h4kYywOVR5kgApLe1gbEj5BDAhK1k21nYv1gDmmISS3efziVN1j6REoiqROk7XuMX2Kk87Kv0whFqLBA==",
+ "dependencies": {
+ "stdole": "7.0.3302"
+ }
+ },
+ "EnvDTE100": {
+ "type": "Transitive",
+ "resolved": "10.0.3",
+ "contentHash": "s2HfFPFLn0MX/CeCX7QthpJrFqB8uzR3zC4VL+h7TTsmTVB1NpY5HCG/1tmH4XRzFlz12o5/8aPUgo0nA+Ge1Q==",
+ "dependencies": {
+ "EnvDTE90a": "9.0.3",
+ "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "15.0.16"
+ }
+ },
+ "EnvDTE80": {
+ "type": "Transitive",
+ "resolved": "8.0.3",
+ "contentHash": "31qmvJGDGgKAb4+1Kox54TfSwrGqd2HTiGGX/PiRDeVzK7EjgKhKAv/mvjO/CccVnH/xoIAGGk+K0mjHEndpTQ==",
+ "dependencies": {
+ "EnvDTE": "8.0.2",
+ "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "15.0.16"
+ }
+ },
+ "EnvDTE90": {
+ "type": "Transitive",
+ "resolved": "9.0.3",
+ "contentHash": "dYnEoZAp3xVmDhvGZxtXkgmv2OHetmIrkzGrvcMuyw/WUO5v2Spre/nZqd9CLjsgDaFE57D4CPKIGyZM4UD8Ew==",
+ "dependencies": {
+ "EnvDTE80": "8.0.3",
+ "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "15.0.16"
+ }
+ },
+ "EnvDTE90a": {
+ "type": "Transitive",
+ "resolved": "9.0.3",
+ "contentHash": "Kl7mDCzxPVbQZqMF5v00viFrgLdq+mYRXDZhFm9FQ5nZCEPbob7FbP0+sMfgYsCB9qYBr/AHdAB+pOnaS82RdQ==",
+ "dependencies": {
+ "EnvDTE90": "9.0.3",
+ "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "15.0.16"
+ }
+ },
+ "ICSharpCode.Decompiler": {
+ "type": "Transitive",
+ "resolved": "7.0.0.6488",
+ "contentHash": "1enxZGgiZgnka6VcHpBxkcuuNo462+YVPzRYUfe2/eF3tcDuLk9/yKEfQnXC265sRKnDhks+2Xhk0PlyagM5EA==",
+ "dependencies": {
+ "System.Collections.Immutable": "5.0.0",
+ "System.Reflection.Metadata": "5.0.0"
+ }
+ },
+ "Microsoft.Bcl.AsyncInterfaces": {
+ "type": "Transitive",
+ "resolved": "1.0.0",
+ "contentHash": "K63Y4hORbBcKLWH5wnKgzyn7TOfYzevIEwIedQHBIkmkEBA9SCqgvom+XTuE+fAFGvINGkhFItaZ2dvMGdT5iw==",
+ "dependencies": {
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ }
+ },
+ "Microsoft.Build.Framework": {
+ "type": "Transitive",
+ "resolved": "15.9.20",
+ "contentHash": "j7KrBtZrD+YQPAu+8K1a0J7HgDf0X18bSnqu5llKXxHZ5Cb1t3eSlEtZPUDFqsv3RCBzByggjIBaxrmdvHxLqA=="
+ },
+ "Microsoft.Build.Tasks.Core": {
+ "type": "Transitive",
+ "resolved": "15.9.20",
+ "contentHash": "q1YB/wGcivg8BrdTmq/ZtIKhViNPZ9jdf8dqh//lE9mQp36qSgwn+Qb+6ZyD/THMS+tLC1SJaC/QKO0v6+hBqg==",
+ "dependencies": {
+ "Microsoft.Build.Framework": "15.9.20",
+ "Microsoft.Build.Utilities.Core": "15.9.20",
+ "Microsoft.VisualStudio.Setup.Configuration.Interop": "1.16.30",
+ "System.Collections.Immutable": "1.5.0",
+ "System.Threading.Tasks.Dataflow": "4.5.24"
+ }
+ },
+ "Microsoft.CodeAnalysis.BannedApiAnalyzers": {
+ "type": "Transitive",
+ "resolved": "2.9.4",
+ "contentHash": "hOZfdDpP/z24UwIdFk8hhY5PW33CBWyiQwyk3Mh8lv8NR5BdyH2KqyJelIdKkFVL057oaUot13SsCqC7dBt3uA=="
+ },
+ "Microsoft.Extensions.Configuration": {
+ "type": "Transitive",
+ "resolved": "2.2.0",
+ "contentHash": "nOP8R1mVb/6mZtm2qgAJXn/LFm/2kMjHDAg/QJLFG6CuWYJtaD3p1BwQhufBVvRzL9ceJ/xF0SQ0qsI2GkDQAA==",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "2.2.0"
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions": {
+ "type": "Transitive",
+ "resolved": "2.2.0",
+ "contentHash": "65MrmXCziWaQFrI0UHkQbesrX5wTwf9XPjY5yFm/VkgJKFJ5gqvXRoXjIZcf2wLi5ZlwGz/oMYfyURVCWbM5iw==",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "2.2.0"
+ }
+ },
+ "Microsoft.Extensions.Configuration.Binder": {
+ "type": "Transitive",
+ "resolved": "2.2.0",
+ "contentHash": "vJ9xvOZCnUAIHcGC3SU35r3HKmHTVIeHzo6u/qzlHAqD8m6xv92MLin4oJntTvkpKxVX3vI1GFFkIQtU3AdlsQ==",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "2.2.0"
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions": {
+ "type": "Transitive",
+ "resolved": "2.2.0",
+ "contentHash": "f9hstgjVmr6rmrfGSpfsVOl2irKAgr1QjrSi3FgnS7kulxband50f2brRLwySAQTADPZeTdow0mpSMcoAdadCw=="
+ },
+ "Microsoft.Extensions.Logging.Abstractions": {
+ "type": "Transitive",
+ "resolved": "2.2.0",
+ "contentHash": "B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A=="
+ },
+ "Microsoft.Extensions.Options": {
+ "type": "Transitive",
+ "resolved": "2.2.0",
+ "contentHash": "UpZLNLBpIZ0GTebShui7xXYh6DmBHjWM8NxGxZbdQh/bPZ5e6YswqI+bru6BnEL5eWiOdodsXtEz3FROcgi/qg==",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Primitives": "2.2.0",
+ "System.ComponentModel.Annotations": "4.5.0"
+ }
+ },
+ "Microsoft.Extensions.Primitives": {
+ "type": "Transitive",
+ "resolved": "2.2.0",
+ "contentHash": "azyQtqbm4fSaDzZHD/J+V6oWMFaf2tWP4WEGIYePLCMw3+b2RQdj9ybgbQyjCshcitQKQ4lEDOZjmSlTTrHxUg==",
+ "dependencies": {
+ "System.Memory": "4.5.1",
+ "System.Runtime.CompilerServices.Unsafe": "4.5.1"
+ }
+ },
+ "Microsoft.VisualStudio.CommandBars": {
+ "type": "Transitive",
+ "resolved": "8.0.0",
+ "contentHash": "U5u6Yvwg1p8+V9VkQ1RZAYAhMJIw+qB+sGrCuPl2R3HHYSmkJ39cCBIBXeDunkAOguKD+1th/ciWOcCPIYXgRQ=="
+ },
+ "Microsoft.VisualStudio.ComponentModelHost": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "988RiP69R/zvzTUfm+rwZ/ugURZKONzVS4ttK+npBLx7PNQC2L6fmUzv3XQv7nwk9pvHkznaFYR78QWOwtgVRw=="
+ },
+ "Microsoft.VisualStudio.CoreUtility": {
+ "type": "Transitive",
+ "resolved": "15.8.525",
+ "contentHash": "VdXRQoiV5ZqZEkx8aHU8oJQx8H7XP86sYs0SBSmMS6009+V1JlNiEj1U2P7yl4Kh2OsYPLBo3ESYB02dAlhnoA==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Threading": "15.3.23",
+ "System.ValueTuple": "4.3.0"
+ }
+ },
+ "Microsoft.VisualStudio.Debugger.Engine": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "RVxkXDQJhwQ0FKaPsdxljNKDijM1e4QxhF0dT54beCQREtSHAAuDZZawfi3m/dtzpl5uFwfy+SBsyeH+aanWpQ==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Debugger.Interop.11.0": "11.0.50727",
+ "Microsoft.VisualStudio.Debugger.InteropA": "9.0.21022"
+ }
+ },
+ "Microsoft.VisualStudio.Debugger.Interop.10.0": {
+ "type": "Transitive",
+ "resolved": "10.0.30320",
+ "contentHash": "sErGOQTd5MkBrpG02xUGDJA6IbHSUubQ3aE8d424QKMAlgZoyS4ewiCgfKQN12VcrHde3nTiL6gsY/HUOvkVRQ==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Debugger.InteropA": "9.0.21023"
+ }
+ },
+ "Microsoft.VisualStudio.Debugger.Interop.11.0": {
+ "type": "Transitive",
+ "resolved": "11.0.50728",
+ "contentHash": "+6jmYT+biLP69qsEKIHKehhoab+15PtQQHwGcLUGV+wgKIeNdyyInjL5lY1NYT1eiO2BTXBtBfv6UrsjM5BvUw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Debugger.InteropA": "9.0.21023"
+ }
+ },
+ "Microsoft.VisualStudio.Debugger.Interop.12.0": {
+ "type": "Transitive",
+ "resolved": "12.0.21006",
+ "contentHash": "Zn9VnHBcu9gbxaSOeQJL4A5qs/G0/z670hE+DWTd3YBkanESuAxDyBKxYzEtHJDO84hfoWJQmqMm0GlT8cvHVQ==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Debugger.InteropA": "9.0.21023"
+ }
+ },
+ "Microsoft.VisualStudio.Debugger.Interop.14.0": {
+ "type": "Transitive",
+ "resolved": "14.3.25408",
+ "contentHash": "xMgjHZ2QAmsSfCLq8u72bx+5OmTO23inuwDtmBVpDk1m8iwD8wt1+QdrhFy69djpCqqb6To0jljYiqMZG2qajg==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Debugger.Interop.11.0": "11.0.50728"
+ }
+ },
+ "Microsoft.VisualStudio.Debugger.Interop.15.0": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "qHCJ/ADV7sq2ylscH9lw8CNstVMscf+gxBYtwg9dceNwUFC1/SHoblbC6M1skhfZb/oXPGvKtiH2ryk6thQK+A==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Debugger.InteropA": "9.0.21022"
+ }
+ },
+ "Microsoft.VisualStudio.Debugger.InteropA": {
+ "type": "Transitive",
+ "resolved": "9.0.21023",
+ "contentHash": "GUOG8vlZPDfUENsBbxasoSNtUmi6tS6VqeA0HF6vZ7Dk9HgeWAdICUZd1/Kiw4ujsMCPdC8+xjZcfXOnnQX0NQ=="
+ },
+ "Microsoft.VisualStudio.Designer.Interfaces": {
+ "type": "Transitive",
+ "resolved": "1.1.4323",
+ "contentHash": "OPCJsu0Ashev1cyzdywOKdPggOwOCw+vhazBU9psA1GWjNHwrG77fDlrmVdJjs5y2Vx/jetyR6BQcN448fGZ8Q=="
+ },
+ "Microsoft.VisualStudio.DpiAwareness": {
+ "type": "Transitive",
+ "resolved": "6.0.28727",
+ "contentHash": "MnsTIFgiy/UNf6O9/iVf/iJ31HYa2OZ8C+3MmkOuXsym95Urz6UfugBPKohudzegWDTHye1jnVuiR/38kZ09Kg=="
+ },
+ "Microsoft.VisualStudio.Editor": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "iVyyBELkXlu+9biTLuc65D0ozrRFaZpRvpH1XnnZ7I4xdTbXXKKTQVtf0RBpKqIhqgi+r1Uf4tT73Vk+08cQHg==",
+ "dependencies": {
+ "Microsoft.VisualStudio.CoreUtility": "15.0.26228",
+ "Microsoft.VisualStudio.OLE.Interop": "7.10.6070",
+ "Microsoft.VisualStudio.Text.Data": "15.0.26228",
+ "Microsoft.VisualStudio.Text.Logic": "15.0.26228",
+ "Microsoft.VisualStudio.Text.UI": "15.0.26228",
+ "Microsoft.VisualStudio.Text.UI.Wpf": "15.0.26228",
+ "Microsoft.VisualStudio.TextManager.Interop": "7.10.6070",
+ "Microsoft.VisualStudio.TextManager.Interop.8.0": "8.0.50727"
+ }
+ },
+ "Microsoft.VisualStudio.ImageCatalog": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "QULWo81bg8bmKyKjKD7LELLSFUlvViNbeP4HCCrbEAYkDUOJ+yyWVFZxFplyl8ptIcRAh2sPUE9N45m8P5WQFA=="
+ },
+ "Microsoft.VisualStudio.Imaging": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "msJjqbs2cccoT6arcozmosjGji6i8m5f35Ndsq0OKT7U5gRUmzfcLPwu/dr6M+wzrqakV6l0ZHi8hSSpDCx33A==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Utilities": "15.0.26228"
+ }
+ },
+ "Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime": {
+ "type": "Transitive",
+ "resolved": "14.3.26930",
+ "contentHash": "5nwZt9F6INTWWU+NLWTp/SKKUv1y2/uZ1riLlkdIILWgBG1+BaaFjEfBO5PQK3aMl/sDLTmGa6qJib77dmqvww==",
+ "dependencies": {
+ "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "15.0.16"
+ }
+ },
+ "Microsoft.VisualStudio.Language.Intellisense": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "leVikeYIm+7jN6jjMXMh3e7+i9Ifo4r2CHwGRppv7OefBC993uMsJyR3yw5+tqk0ITqlt9cKWCUIyETbnRhCFw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.CoreUtility": "15.0.26228",
+ "Microsoft.VisualStudio.Text.Data": "15.0.26228",
+ "Microsoft.VisualStudio.Text.UI": "15.0.26228"
+ }
+ },
+ "Microsoft.VisualStudio.Language.NavigateTo.Interfaces": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "zx6Q0qMDJCbb6MLn6SuTmTmfSJ41lg9WLvOhMSDta5vAI+xSNLz0sOOybBBxA/cDeSaPJK/I+zeuJR3+PRV5UA==",
+ "dependencies": {
+ "Microsoft.VisualStudio.CoreUtility": "15.0.26228",
+ "Microsoft.VisualStudio.Text.Data": "15.0.26228"
+ }
+ },
+ "Microsoft.VisualStudio.Language.StandardClassification": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "yhlqwNGcn/z/gGmcElF8KbCgduJW5m9qE5PxIUN2Hfrar1sYgNtXMRciKGTqJTWibsoz86jYRwsjcrLHgBTZHQ==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Text.Logic": "15.0.26228"
+ }
+ },
+ "Microsoft.VisualStudio.OLE.Interop": {
+ "type": "Transitive",
+ "resolved": "7.10.6071",
+ "contentHash": "PuINhJH41DbKfkNU+qcyC4Wlt/z0DgI/ViZv6gjUclylnFbUIpCdqm4fK+PKJDfiarHTKnGWkxjKuOIS1Bqs5Q=="
+ },
+ "Microsoft.VisualStudio.Package.LanguageService.15.0": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "j8bJFOpPFsWomR1FyhDGA4vdIlkzXg3Rud/r9iev1lvb9UPcO2hvfHIDgH9g4tMHtChHBCsEM9WYLBlEy/bgxw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.OLE.Interop": "7.10.6070",
+ "Microsoft.VisualStudio.Shell.15.0": "15.0.26228",
+ "Microsoft.VisualStudio.Shell.Interop": "7.10.6071",
+ "Microsoft.VisualStudio.TextManager.Interop": "7.10.6070",
+ "Microsoft.VisualStudio.TextManager.Interop.8.0": "8.0.50727"
+ }
+ },
+ "Microsoft.VisualStudio.ProjectAggregator": {
+ "type": "Transitive",
+ "resolved": "8.0.50728",
+ "contentHash": "//wv15F1WjMkOWwdmhTktUtias6M4pWDDztVW9la14T2eKBbmw6niqiZL3bB23EZ4l0J5wafQcWgZusv4UI//w=="
+ },
+ "Microsoft.VisualStudio.SDK.Analyzers": {
+ "type": "Transitive",
+ "resolved": "16.3.14",
+ "contentHash": "3XoSGzWLGWwVN7LpAOrMDa/hcqooVmep3tF2Dg6P95ioUa+nRlIUNLIkoKxEy/Yadhnc/kQ/4FIXxQfa5hWE9w==",
+ "dependencies": {
+ "Microsoft.CodeAnalysis.BannedApiAnalyzers": "2.9.4",
+ "Microsoft.VisualStudio.Threading.Analyzers": "16.3.52"
+ }
+ },
+ "Microsoft.VisualStudio.SDK.EmbedInteropTypes": {
+ "type": "Transitive",
+ "resolved": "15.0.27",
+ "contentHash": "rZNw+lD53U0DMFMiHEe3TnIr2RyWPaqr+kNVITrKVZHwI3y27KQ0sbj8w7o/BoMilR8dFJwzcKn60SXITYdkzA=="
+ },
+ "Microsoft.VisualStudio.Setup.Configuration.Interop": {
+ "type": "Transitive",
+ "resolved": "1.16.30",
+ "contentHash": "lC6SqNkraWUSY7cyF5GUmXSECoTMwslBc/r1dguChjsi0D0BlF7G6PLsvXD0NFCwnpKlgVzUYrIq7DQakdGerw=="
+ },
+ "Microsoft.VisualStudio.Shell.15.0": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "2hM2owplA4W0z9D/MkPQgLl07HoTaVuHOHjsLGPt5iTym1C1wspc/5fuWWZjL9pzaZXx2Q1tEZrwnPzX9gSaPA==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Imaging": "15.0.26228",
+ "Microsoft.VisualStudio.OLE.Interop": "7.10.6070",
+ "Microsoft.VisualStudio.Shell.Framework": "15.0.26228",
+ "Microsoft.VisualStudio.Shell.Interop": "7.10.6071",
+ "Microsoft.VisualStudio.Shell.Interop.8.0": "8.0.50727",
+ "Microsoft.VisualStudio.Shell.Interop.9.0": "9.0.30729",
+ "Microsoft.VisualStudio.TextManager.Interop": "7.10.6070",
+ "Microsoft.VisualStudio.Threading": "15.0.240",
+ "Microsoft.VisualStudio.Utilities": "15.0.26228"
+ }
+ },
+ "Microsoft.VisualStudio.Shell.Design": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "6fDy20wh2dyxZR/f7c8A485w/XXLPjcHJSEjxNZDKc+1xI0qVaocKM478/pcCVx/Bovah8YLNB4dU/NqZdLabg==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Shell.Framework": "15.0.26228",
+ "Microsoft.VisualStudio.Shell.Interop": "7.10.6071",
+ "Microsoft.VisualStudio.Shell.Interop.8.0": "8.0.50727",
+ "Microsoft.VisualStudio.TextManager.Interop": "7.10.6070"
+ }
+ },
+ "Microsoft.VisualStudio.Shell.Embeddable": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "FuEwL1Ju8ShsmxNm+X5Zzc9eYAUFdC0LXX5NgVCycC6gnHXyQYF59nsPWXR7Em7e6ubIayoMI8XbZnRUCP/TSA=="
+ },
+ "Microsoft.VisualStudio.Shell.Framework": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "llNX2IqaxexoOF5vErKx4510Pmtm1bA9u7Nti3VLzmddMX3LjjyF4YXT0hLKn/ZMB2AlLWdC/PEsBAo1bXmmbw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.CoreUtility": "15.0.26228",
+ "Microsoft.VisualStudio.OLE.Interop": "7.10.6070",
+ "Microsoft.VisualStudio.Utilities": "15.0.26228"
+ }
+ },
+ "Microsoft.VisualStudio.Shell.Interop": {
+ "type": "Transitive",
+ "resolved": "7.10.6072",
+ "contentHash": "+7MhWXWaSYnTh56NVhMSMqDu7f1Xf7/yCPrM16QcBPyCTEV/l3/QPQG3xeVR9et81YeemlWFtAjA1hnskOkvVw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.TextManager.Interop": "7.10.6071"
+ }
+ },
+ "Microsoft.VisualStudio.Shell.Interop.10.0": {
+ "type": "Transitive",
+ "resolved": "10.0.30320",
+ "contentHash": "6pxD6MmXolmZBeTMnnB7rQHRap0S17fUM28odRxGNL/2XCa9w3Jn3pXUNBKmq8v0b5Ao43VOkQZfZAiP8t2gRg==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Shell.Interop.8.0": "8.0.50728"
+ }
+ },
+ "Microsoft.VisualStudio.Shell.Interop.11.0": {
+ "type": "Transitive",
+ "resolved": "11.0.61031",
+ "contentHash": "DBEBFtxFnLf7agWO/rgO/nSWZBUkTFdgHU07klrkNBbE65lKFc08sbm9hGe9LmLIoVDOAOhwiuCMphvB0wBIRg==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Shell.Interop.10.0": "10.0.30320"
+ }
+ },
+ "Microsoft.VisualStudio.Shell.Interop.12.0": {
+ "type": "Transitive",
+ "resolved": "12.0.30111",
+ "contentHash": "T7zNd9P55EbSEXDXztHTLoFeoxFYt1bq+qJdc9VwAESQk528Fm/QUy7GrtwCipJFOn0cgXUMAo6xjlT5JVJxJA==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Shell.Interop.11.0": "11.0.61031"
+ }
+ },
+ "Microsoft.VisualStudio.Shell.Interop.12.1.DesignTime": {
+ "type": "Transitive",
+ "resolved": "12.1.30329",
+ "contentHash": "RUfkSSRWVI6jC7+887uk4A2FQTBNO3XexNgCWap4ngGhjdAf4tSAmZRvja9hWHRPtJcbGdttPR6h+OQtip4Shw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "15.0.16",
+ "Microsoft.VisualStudio.Shell.Interop.12.0": "12.0.30111"
+ }
+ },
+ "Microsoft.VisualStudio.Shell.Interop.14.0.DesignTime": {
+ "type": "Transitive",
+ "resolved": "14.3.26929",
+ "contentHash": "MleLRfMCBppdh5vc4QTdJijbe6cdhcklu4yqzRYaEa2skvUTS1CgOykex/80gq1Iihz1hR0zRU72rUYxWxcReA==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime": "14.3.26930",
+ "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "15.0.16",
+ "Microsoft.VisualStudio.Shell.Interop.12.0": "12.0.30111"
+ }
+ },
+ "Microsoft.VisualStudio.Shell.Interop.15.0.DesignTime": {
+ "type": "Transitive",
+ "resolved": "15.0.26201",
+ "contentHash": "iq+pfcSJhwSdl3j75NrDRFqyrOIx5xJOW9yBV8sRXxyzJxihNoba/MbE0jO62ZMYGMG4+On6P7rROF8j1tMaKw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Shell.Interop": "7.10.6071",
+ "Microsoft.VisualStudio.Shell.Interop.12.0": "12.0.30110"
+ }
+ },
+ "Microsoft.VisualStudio.Shell.Interop.8.0": {
+ "type": "Transitive",
+ "resolved": "8.0.50728",
+ "contentHash": "2F0OrBJg5bhw3ZPVji98I5bJSD7DWBmCfsGbl4SEoas0FPvQZCcLTrQgx5uX2WPLbjUd4ZY7Umk2JSYjDBfhtw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Shell.Interop": "7.10.6072",
+ "Microsoft.VisualStudio.TextManager.Interop.8.0": "8.0.50728"
+ }
+ },
+ "Microsoft.VisualStudio.Shell.Interop.9.0": {
+ "type": "Transitive",
+ "resolved": "9.0.30729",
+ "contentHash": "Qolo2V47CYOwS44mlfCpC7ie+juK44MLBNtBxDSeImolTjvLdY8INv8PtQM1WX51XRcgQBV+g3QiSdScJTtOSQ==",
+ "dependencies": {
+ "Microsoft.VisualStudio.OLE.Interop": "7.10.6070",
+ "Microsoft.VisualStudio.Shell.Interop": "7.10.6071",
+ "Microsoft.VisualStudio.Shell.Interop.8.0": "8.0.50727",
+ "Microsoft.VisualStudio.TextManager.Interop": "7.10.6070"
+ }
+ },
+ "Microsoft.VisualStudio.TaskRunnerExplorer.14.0": {
+ "type": "Transitive",
+ "resolved": "14.0.0",
+ "contentHash": "iZpAv8bEWjkyxFF1GIcSOfldqP/umopJKnJGKHa0vg8KR7ZY3u3dWtJmwO4w3abIx+176SIkQe78y5A+/Md7FA=="
+ },
+ "Microsoft.VisualStudio.Text.Data": {
+ "type": "Transitive",
+ "resolved": "15.8.525",
+ "contentHash": "8ms8yMvVv9UXqZNTqjNg8HQm/6prziEY2wV+kYPLpIeqd5UO6IBRVareg2Hh1HMmYgc6NJoSncvczMA/L9r1TQ==",
+ "dependencies": {
+ "Microsoft.VisualStudio.CoreUtility": "15.8.525",
+ "Microsoft.VisualStudio.Threading": "15.3.23"
+ }
+ },
+ "Microsoft.VisualStudio.Text.Logic": {
+ "type": "Transitive",
+ "resolved": "15.8.525",
+ "contentHash": "LKpaU5oNdA0g5qAgATPggldy7zHnYoRxPeHKyZK1YvuQv1Su7wXhW/UuGdpDmBctoyhsNlVR5jLPzhdoOrVsPg==",
+ "dependencies": {
+ "Microsoft.VisualStudio.CoreUtility": "15.8.525",
+ "Microsoft.VisualStudio.Text.Data": "15.8.525",
+ "System.Collections.Immutable": "1.3.1"
+ }
+ },
+ "Microsoft.VisualStudio.Text.UI": {
+ "type": "Transitive",
+ "resolved": "15.8.525",
+ "contentHash": "xrkh3foP+IeDstYkqXhBprYCTSBoVgoNmqPlzoe3H952WZs5ksGHEJhRIC6L3Pst9OzxONlbcBReKEg84TqTeA==",
+ "dependencies": {
+ "Microsoft.VisualStudio.CoreUtility": "15.8.525",
+ "Microsoft.VisualStudio.Text.Data": "15.8.525",
+ "Microsoft.VisualStudio.Text.Logic": "15.8.525"
+ }
+ },
+ "Microsoft.VisualStudio.Text.UI.Wpf": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "G/GMgm2KOnsKRHcYOfJ3FeSW776JjBqaQyzjD1LTPXvf6lBWMNSFFLDjY3Q8MdoXCE28PvheP+3lWItssBy/jw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.CoreUtility": "15.0.26228",
+ "Microsoft.VisualStudio.Text.Data": "15.0.26228",
+ "Microsoft.VisualStudio.Text.Logic": "15.0.26228",
+ "Microsoft.VisualStudio.Text.UI": "15.0.26228"
+ }
+ },
+ "Microsoft.VisualStudio.TextManager.Interop": {
+ "type": "Transitive",
+ "resolved": "7.10.6071",
+ "contentHash": "2g+TsUdrY3ygz0j4NgPMWZWQGfFqoNYBU2RjWHQtyRxiruA6d3hsDXufY55PfvLI02gFplC5d1lG1r7JCMHQeA==",
+ "dependencies": {
+ "Microsoft.VisualStudio.OLE.Interop": "7.10.6071"
+ }
+ },
+ "Microsoft.VisualStudio.TextManager.Interop.12.1.DesignTime": {
+ "type": "Transitive",
+ "resolved": "12.1.30330",
+ "contentHash": "dJPJ0wAv2XFLmiZdAVeZmJDnyjtudPWwDQdYV+M9VDNS2Uk4aG0EK39QTJtaPU3JkKjclK7VjF7NxKMJz+c6Sg==",
+ "dependencies": {
+ "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "15.0.16"
+ }
+ },
+ "Microsoft.VisualStudio.TextManager.Interop.8.0": {
+ "type": "Transitive",
+ "resolved": "8.0.50728",
+ "contentHash": "PmnaaYeARYBn3oJGG0w8jy6ICXKoqQMZ6xEJOiY9kMiHq28inhH0vqy1zK3U+YzgojHiGB4X2U0VJUaMKVtUaA==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Shell.Interop": "7.10.6072"
+ }
+ },
+ "Microsoft.VisualStudio.TextTemplating.15.0": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "OgFNoaYkp/uAizxjLQNm2KJKeV+xupcxqZfzrebxHRj4Dal3G6kDhTxwEABhgfOfJrR0BGuWKJdvn9NTH8KdEw==",
+ "dependencies": {
+ "Microsoft.VisualStudio.TextTemplating.Interfaces.10.0": "10.0.30319",
+ "Microsoft.VisualStudio.TextTemplating.Interfaces.11.0": "11.0.50727"
+ }
+ },
+ "Microsoft.VisualStudio.TextTemplating.Interfaces.10.0": {
+ "type": "Transitive",
+ "resolved": "10.0.30319",
+ "contentHash": "+v2xDJNKbjOytR4ruf33T4jws+OT18EKfrx29XaFhThXbIT8n+mOh1NLL9nsmuGoEY7etBRgSIWkizVHS4W5MQ=="
+ },
+ "Microsoft.VisualStudio.TextTemplating.Interfaces.11.0": {
+ "type": "Transitive",
+ "resolved": "11.0.50727",
+ "contentHash": "7352YCr0fJjylWC0RdTpQryRLAk7td/URkEsn1bMR8a2aCcedOgIeuexeKwjakWYvHnZX8W2beB66/2Xzt54+Q==",
+ "dependencies": {
+ "Microsoft.VisualStudio.TextTemplating.Interfaces.10.0": "10.0.30319"
+ }
+ },
+ "Microsoft.VisualStudio.TextTemplating.Interfaces.15.0": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "GFoI+WPSw7SBtQXp1rEGMqpT6hOiC540AiSw5lKryZOqXRqeXM05Mala/nHRWPczIIDO7iy53OCouwEh430ufg=="
+ },
+ "Microsoft.VisualStudio.TextTemplating.VSHost.15.0": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "6Ehp0Tgy74B13gz0nvpHsz7mZE7HymVaBILH8siuncuQGx51kXQrjV2MmaDz+4467q/x2g4M7Csu5+1qTSJ7vA==",
+ "dependencies": {
+ "Microsoft.VisualStudio.OLE.Interop": "7.10.6070",
+ "Microsoft.VisualStudio.Shell.15.0": "15.0.26228",
+ "Microsoft.VisualStudio.Shell.Framework": "15.0.26228",
+ "Microsoft.VisualStudio.Shell.Interop": "7.10.6071",
+ "Microsoft.VisualStudio.Shell.Interop.8.0": "8.0.50727",
+ "Microsoft.VisualStudio.TextTemplating.15.0": "15.0.26228",
+ "Microsoft.VisualStudio.TextTemplating.Interfaces.11.0": "11.0.50727"
+ }
+ },
+ "Microsoft.VisualStudio.Threading": {
+ "type": "Transitive",
+ "resolved": "15.3.23",
+ "contentHash": "prLnnKpT2fip/uyqwl5WuSt+YShOmO2qH7cdXqpB/dw1+eGdHVaYRbuBpt7nYXSJaPleSYqoKljoK0Zmh3VU4Q==",
+ "dependencies": {
+ "Microsoft.VisualStudio.Validation": "15.3.15"
+ }
+ },
+ "Microsoft.VisualStudio.Threading.Analyzers": {
+ "type": "Transitive",
+ "resolved": "16.3.52",
+ "contentHash": "qTaG5K8gCHOhQfOI4fCJc0UGLnT8vqipkmzux6dI4TTA6EfxOkAd+7r3tRWn7pqbX9xLJaO+O1cNY1IpPm1wEA=="
+ },
+ "Microsoft.VisualStudio.Utilities": {
+ "type": "Transitive",
+ "resolved": "15.0.26228",
+ "contentHash": "sMo3p9QmkomisbvBWdbWgdbd1Y6xGLqvxG8HPjCsRKeK5x8EW8qkpo7D53Cumo2Q1cCaDSgb2si2Q2bCmZeaZg=="
+ },
+ "Microsoft.VisualStudio.Validation": {
+ "type": "Transitive",
+ "resolved": "15.3.15",
+ "contentHash": "bvJIwuCLqu7YKXcZqY85VJy0ljtm9QSRkq4CD2bpO/GHynsm72uZxjBDa050VY7kElXS8mb7VW5JNUfg4D/UBA=="
+ },
+ "Microsoft.VisualStudio.Web.BrowserLink.12.0": {
+ "type": "Transitive",
+ "resolved": "12.0.0",
+ "contentHash": "HeuaZh8+wNVdwx7VF8guFGH2Z2zH+FYxWBsRNp+FjjlmrhCfM7GUQV5azaTv/bN5TPaK8ALJoP9UX5o1FB5k1A=="
+ },
+ "Microsoft.Win32.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA=="
+ },
+ "Microsoft.Windows.SDK.Contracts": {
+ "type": "Transitive",
+ "resolved": "10.0.18362.2005",
+ "contentHash": "3R3uDDGRSdeRdHpor1SyN3qg/VmseKjcKFIAQJ0iRnzoCPvnlCcnSGaNsjqVSzHQHbBSBtSKVBxBS2GyEw8qhw==",
+ "dependencies": {
+ "System.Runtime.WindowsRuntime": "4.6.0",
+ "System.Runtime.WindowsRuntime.UI.Xaml": "4.6.0"
+ }
+ },
+ "morelinq": {
+ "type": "Transitive",
+ "resolved": "3.3.2",
+ "contentHash": "MQc8GppZJLmjvcpEdf3EkC6ovsp7gRWt2e5mC7dcIOrgwSc+yjFd3JQ0iRqr3XrUT6rb/phv0IkEmBtbfVA7AQ==",
+ "dependencies": {
+ "System.ValueTuple": "4.5.0"
+ }
+ },
+ "Newtonsoft.Json": {
+ "type": "Transitive",
+ "resolved": "9.0.1",
+ "contentHash": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw=="
+ },
+ "Nito.AsyncEx.Tasks": {
+ "type": "Transitive",
+ "resolved": "5.1.0",
+ "contentHash": "tU3Ib4zs8ivM+uS8n7F7ReWZlA3mODyLqwPE+v+WJI94hZ8xLXl+a9npfj/IcmeXo9a6fGKLWkswKQHOeTWqwA==",
+ "dependencies": {
+ "Nito.Disposables": "2.2.0"
+ }
+ },
+ "Nito.Disposables": {
+ "type": "Transitive",
+ "resolved": "2.2.0",
+ "contentHash": "QcL+uBwUCEoK8GKp/WzjdCiG8/3G1WLlVNJgLJUNG7bIIVAcEV+Mro4s53VT4Nd8xMSplv0gy+Priw44vRvLaA==",
+ "dependencies": {
+ "System.Collections.Immutable": "1.4.0"
+ }
+ },
+ "Serilog": {
+ "type": "Transitive",
+ "resolved": "2.10.0",
+ "contentHash": "+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA=="
+ },
+ "stdole": {
+ "type": "Transitive",
+ "resolved": "7.0.3302",
+ "contentHash": "2314LjTYA+nRknLNzqKY/qrJH21jKhEp/bMTOCTPyidoVYI+3EtyI73Y91NOzCFP2OgzeYnk+uKbTWWuGIMLjA=="
+ },
+ "System.Buffers": {
+ "type": "Transitive",
+ "resolved": "4.5.1",
+ "contentHash": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg=="
+ },
+ "System.Collections.Immutable": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
+ "dependencies": {
+ "System.Memory": "4.5.4"
+ }
+ },
+ "System.ComponentModel.Annotations": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg=="
+ },
+ "System.ComponentModel.Composition": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "+iB9FoZnfdqMEGq6np28X6YNSUrse16CakmIhV3h6PxEWt7jYxUN3Txs1D8MZhhf4QmyvK0F/EcIN0f4gGN0dA=="
+ },
+ "System.Drawing.Common": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg=="
+ },
+ "System.IO": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg=="
+ },
+ "System.IO.Compression": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg=="
+ },
+ "System.IO.Pipes.AccessControl": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "uqKLJb0Cukb8vG6JVKbJXOAmMWUWOue4ZTjMn7qrfGLZHww3iV8xV1amipI238kmmoFQx6I8GP2bjDM/ss5pQQ==",
+ "dependencies": {
+ "System.Security.AccessControl": "4.5.0",
+ "System.Security.Principal.Windows": "4.5.0"
+ }
+ },
+ "System.Memory": {
+ "type": "Transitive",
+ "resolved": "4.5.4",
+ "contentHash": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
+ "dependencies": {
+ "System.Buffers": "4.5.1",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.5.3"
+ }
+ },
+ "System.Numerics.Vectors": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ=="
+ },
+ "System.Reflection.Emit": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg=="
+ },
+ "System.Reflection.Metadata": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==",
+ "dependencies": {
+ "System.Collections.Immutable": "5.0.0"
+ }
+ },
+ "System.Runtime": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw=="
+ },
+ "System.Runtime.CompilerServices.Unsafe": {
+ "type": "Transitive",
+ "resolved": "4.6.0",
+ "contentHash": "HxozeSlipUK7dAroTYwIcGwKDeOVpQnJlpVaOkBz7CM4TsE5b/tKlQBZecTjh6FzcSbxndYaxxpsBMz+wMJeyw=="
+ },
+ "System.Runtime.InteropServices.RuntimeInformation": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw=="
+ },
+ "System.Runtime.WindowsRuntime": {
+ "type": "Transitive",
+ "resolved": "4.6.0",
+ "contentHash": "IWrs1TmbxP65ZZjIglNyvDkFNoV5q2Pofg5WO7I8RKQOpLdFprQSh3xesOoClBqR4JHr4nEB1Xk1MqLPW1jPuQ=="
+ },
+ "System.Runtime.WindowsRuntime.UI.Xaml": {
+ "type": "Transitive",
+ "resolved": "4.6.0",
+ "contentHash": "r4tNw5v5kqRJ9HikWpcyNf3suGw7DjX93svj9iBjtdeLqL8jt9Z+7f+s4wrKZJr84u8IMsrIjt8K6jYvkRqMSg==",
+ "dependencies": {
+ "System.Runtime.WindowsRuntime": "4.6.0"
+ }
+ },
+ "System.Security.AccessControl": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==",
+ "dependencies": {
+ "System.Security.Principal.Windows": "4.5.0"
+ }
+ },
+ "System.Security.Cryptography.Encoding": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw=="
+ },
+ "System.Security.Cryptography.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg=="
+ },
+ "System.Security.Principal.Windows": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ=="
+ },
+ "System.Text.Encodings.Web": {
+ "type": "Transitive",
+ "resolved": "4.6.0",
+ "contentHash": "BXgFO8Yi7ao7hVA/nklD0Hre1Bbce048ZqryGZVFifGNPuh+2jqF1i/jLJLMfFGZIzUOw+nCIeH24SQhghDSPw==",
+ "dependencies": {
+ "System.Memory": "4.5.3"
+ }
+ },
+ "System.Text.Json": {
+ "type": "Transitive",
+ "resolved": "4.6.0",
+ "contentHash": "4F8Xe+JIkVoDJ8hDAZ7HqLkjctN/6WItJIzQaifBwClC7wmoLSda/Sv2i6i1kycqDb3hWF4JCVbpAweyOKHEUA==",
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "1.0.0",
+ "System.Buffers": "4.5.0",
+ "System.Memory": "4.5.3",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.6.0",
+ "System.Text.Encodings.Web": "4.6.0",
+ "System.Threading.Tasks.Extensions": "4.5.2",
+ "System.ValueTuple": "4.5.0"
+ }
+ },
+ "VSLangProj": {
+ "type": "Transitive",
+ "resolved": "7.0.3301",
+ "contentHash": "J4ehf4H38FQmgqda7d//s7n7sQb0q8X0u1PYN2nwTkgaIHK/+0u7LfCrgfa9t8VYueZbgSrtJNeeQHxGzXuIiQ==",
+ "dependencies": {
+ "EnvDTE": "8.0.2"
+ }
+ },
+ "VSLangProj100": {
+ "type": "Transitive",
+ "resolved": "10.0.30320",
+ "contentHash": "c1t1WtXDuJQUHIIg4+8/jBdShIgAWWtbNiZKCFbwcZFpUlRo3ylrwaDmy72USPXcdDpjo9Uwjr49dd+cMASmdw=="
+ },
+ "VSLangProj110": {
+ "type": "Transitive",
+ "resolved": "11.0.61031",
+ "contentHash": "YWY6SmLLB7tu19PVYAXPl7IsN7uY8DMMCp2AmQp6KThw6HO/c94ziqy6Z+dyVPL/u1ubj8qyiFowbYt85/QISA==",
+ "dependencies": {
+ "VSLangProj80": "8.0.50728",
+ "VSLangProj90": "9.0.30730"
+ }
+ },
+ "VSLangProj140": {
+ "type": "Transitive",
+ "resolved": "14.0.25030",
+ "contentHash": "2q8fycwqph6KOU8z2z+gNf92H/OSdN3vl7U0Y9yw9kBhr95ZXux4bUpEEn2nf1T31RtRUfNDGO4fViLWeuZcfg==",
+ "dependencies": {
+ "VSLangProj80": "8.0.50728"
+ }
+ },
+ "VSLangProj150": {
+ "type": "Transitive",
+ "resolved": "15.0.26229",
+ "contentHash": "CTziuvrAgyv0hHlfkKzP/vCDrMkFjianXSGsHjQWQWPT0gcjrduxGn5IK5LgmxHgMVI4f+7V1sPACbZBGle+WA=="
+ },
+ "VSLangProj2": {
+ "type": "Transitive",
+ "resolved": "7.0.5001",
+ "contentHash": "M3/sA+tzxK9DPnE4VCaSM+tSrZEKj3WqnyEqxkukEmBWzBmf7obYnQgYAT3Rw1hNZjQ/KYeibnG+IrT+B4yKrg==",
+ "dependencies": {
+ "VSLangProj": "7.0.3301"
+ }
+ },
+ "VSLangProj80": {
+ "type": "Transitive",
+ "resolved": "8.0.50728",
+ "contentHash": "LLC2ipldip9JJCkOCwRlX7IlBHZAVc6yDWgKVEgWfX/5tdsrod/gZ3NOh+2f4Omqo6VHcps9afoLTunHRISiEw==",
+ "dependencies": {
+ "VSLangProj2": "7.0.5001"
+ }
+ },
+ "VSLangProj90": {
+ "type": "Transitive",
+ "resolved": "9.0.30730",
+ "contentHash": "3SXRUT8dV5zcHxED1e6vuPmBBj7rjPbOHBBHYVwDE+RADL2T2FBtKhx2kvbzxJU+Wlr7zdyjmkiGXn7thesIEg=="
+ },
+ "YamlDotNet": {
+ "type": "Transitive",
+ "resolved": "9.1.0",
+ "contentHash": "fuvGXU4Ec5HrsmEc+BiFTNPCRf1cGBI2kh/3RzMWgddM2M4ALhbSPoI3X3mhXZUD1qqQd9oSkFAtWjpz8z9eRg=="
+ },
+ "common": {
+ "type": "Project",
+ "dependencies": {
+ "Microsoft.Win32.Registry": "[4.5.0, )",
+ "Newtonsoft.Json": "[9.0.1, )",
+ "PowerShellProTools.VSCode": "[1.0.0, )",
+ "PowerShellStandard.Library": "[5.1.0, )",
+ "Serilog.Sinks.File": "[5.0.0, )"
+ }
+ },
+ "formdesigner.common": {
+ "type": "Project"
+ },
+ "formdesigner.generator": {
+ "type": "Project",
+ "dependencies": {
+ "PowerShellStandard.Library": "[5.1.0, )"
+ }
+ },
+ "PowerShellProTools.VSCode": {
+ "type": "Project",
+ "dependencies": {
+ "FormDesigner.Generator": "[1.0.0, )",
+ "ICSharpCode.Decompiler": "[7.0.0.6488, )",
+ "Newtonsoft.Json": "[9.0.1, )",
+ "PowerShellStandard.Library": "[5.1.0, )"
+ }
+ },
+ "powershelltools.testadapter": {
+ "type": "Project",
+ "dependencies": {
+ "PowerShellStandard.Library": "[5.1.0, )"
+ }
+ },
+ "powershelltoolspro.cmdlets": {
+ "type": "Project",
+ "dependencies": {
+ "Common": "[1.0.0, )",
+ "FormDesigner.Generator": "[1.0.0, )",
+ "PowerShellStandard.Library": "[5.1.0, )",
+ "PowerShellToolsPro.Packager": "[2.0.0, )",
+ "StrongNamer": "[0.2.5, )",
+ "System.IO.Pipes.AccessControl": "[4.5.0, )",
+ "YamlDotNet": "[9.1.0, )",
+ "morelinq": "[3.3.2, )"
+ }
+ },
+ "powershelltoolspro.msbuild": {
+ "type": "Project",
+ "dependencies": {
+ "Microsoft.Build": "[15.9.20, )",
+ "Microsoft.Build.Tasks.Core": "[15.9.20, )",
+ "Microsoft.Build.Utilities.Core": "[15.9.20, )",
+ "PowerShellStandard.Library": "[5.1.0, )",
+ "PowerShellToolsPro.Cmdlets": "[1.0.0, )",
+ "PowerShellToolsPro.Packager": "[2.0.0, )"
+ }
+ },
+ "powershelltoolspro.packager": {
+ "type": "Project",
+ "dependencies": {
+ "PowerShellStandard.Library": "[5.1.0, )",
+ "StrongNamer": "[0.2.5, )",
+ "System.Drawing.Common": "[6.0.0, )",
+ "System.Text.Json": "[4.6.0, )"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/PowerShellToolsPro.Cmdlets/PowerShellToolsPro.Cmdlets.csproj b/PowerShellToolsPro.Cmdlets/PowerShellToolsPro.Cmdlets.csproj
index a39306e..506835c 100644
--- a/PowerShellToolsPro.Cmdlets/PowerShellToolsPro.Cmdlets.csproj
+++ b/PowerShellToolsPro.Cmdlets/PowerShellToolsPro.Cmdlets.csproj
@@ -6,6 +6,7 @@
False
true
..\Build\FinalPublicKey.snk
+ true
diff --git a/PowerShellToolsPro.Cmdlets/packages.lock.json b/PowerShellToolsPro.Cmdlets/packages.lock.json
new file mode 100644
index 0000000..9fa971d
--- /dev/null
+++ b/PowerShellToolsPro.Cmdlets/packages.lock.json
@@ -0,0 +1,653 @@
+{
+ "version": 1,
+ "dependencies": {
+ ".NETStandard,Version=v2.0": {
+ "morelinq": {
+ "type": "Direct",
+ "requested": "[3.3.2, )",
+ "resolved": "3.3.2",
+ "contentHash": "MQc8GppZJLmjvcpEdf3EkC6ovsp7gRWt2e5mC7dcIOrgwSc+yjFd3JQ0iRqr3XrUT6rb/phv0IkEmBtbfVA7AQ=="
+ },
+ "NETStandard.Library": {
+ "type": "Direct",
+ "requested": "[2.0.3, )",
+ "resolved": "2.0.3",
+ "contentHash": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0"
+ }
+ },
+ "PowerShellStandard.Library": {
+ "type": "Direct",
+ "requested": "[5.1.0, )",
+ "resolved": "5.1.0",
+ "contentHash": "iYaRvQsM1fow9h3uEmio+2m2VXfulgI16AYHaTZ8Sf7erGe27Qc8w/h6QL5UPuwv1aXR40QfzMEwcCeiYJp2cw=="
+ },
+ "StrongNamer": {
+ "type": "Direct",
+ "requested": "[0.2.5, )",
+ "resolved": "0.2.5",
+ "contentHash": "1IWl8gYnsTC6NXHz63iDpXL8r0y5x0M/Cnq/Ju5uM17gTOQYSeclMkgQsvmGglJEqAwVxayY1sIUR3bb2MAy5Q=="
+ },
+ "System.IO.Pipes.AccessControl": {
+ "type": "Direct",
+ "requested": "[4.5.0, )",
+ "resolved": "4.5.0",
+ "contentHash": "uqKLJb0Cukb8vG6JVKbJXOAmMWUWOue4ZTjMn7qrfGLZHww3iV8xV1amipI238kmmoFQx6I8GP2bjDM/ss5pQQ==",
+ "dependencies": {
+ "System.Security.AccessControl": "4.5.0",
+ "System.Security.Principal.Windows": "4.5.0"
+ }
+ },
+ "YamlDotNet": {
+ "type": "Direct",
+ "requested": "[9.1.0, )",
+ "resolved": "9.1.0",
+ "contentHash": "fuvGXU4Ec5HrsmEc+BiFTNPCRf1cGBI2kh/3RzMWgddM2M4ALhbSPoI3X3mhXZUD1qqQd9oSkFAtWjpz8z9eRg=="
+ },
+ "ICSharpCode.Decompiler": {
+ "type": "Transitive",
+ "resolved": "7.0.0.6488",
+ "contentHash": "1enxZGgiZgnka6VcHpBxkcuuNo462+YVPzRYUfe2/eF3tcDuLk9/yKEfQnXC265sRKnDhks+2Xhk0PlyagM5EA==",
+ "dependencies": {
+ "System.Collections.Immutable": "5.0.0",
+ "System.Reflection.Metadata": "5.0.0"
+ }
+ },
+ "Microsoft.Bcl.AsyncInterfaces": {
+ "type": "Transitive",
+ "resolved": "1.0.0",
+ "contentHash": "K63Y4hORbBcKLWH5wnKgzyn7TOfYzevIEwIedQHBIkmkEBA9SCqgvom+XTuE+fAFGvINGkhFItaZ2dvMGdT5iw==",
+ "dependencies": {
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ }
+ },
+ "Microsoft.CSharp": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Dynamic.Runtime": "4.0.11",
+ "System.Globalization": "4.0.11",
+ "System.Linq": "4.1.0",
+ "System.Linq.Expressions": "4.1.0",
+ "System.ObjectModel": "4.0.12",
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Extensions": "4.0.1",
+ "System.Reflection.Primitives": "4.0.1",
+ "System.Reflection.TypeExtensions": "4.1.0",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Runtime.InteropServices": "4.1.0",
+ "System.Threading": "4.0.11"
+ }
+ },
+ "Microsoft.NETCore.Platforms": {
+ "type": "Transitive",
+ "resolved": "1.1.0",
+ "contentHash": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A=="
+ },
+ "Microsoft.NETCore.Targets": {
+ "type": "Transitive",
+ "resolved": "1.0.1",
+ "contentHash": "rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw=="
+ },
+ "Microsoft.Win32.Registry": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "+FWlwd//+Tt56316p00hVePBCouXyEzT86Jb3+AuRotTND0IYn0OO3obs1gnQEs/txEnt+rF2JBGLItTG+Be6A==",
+ "dependencies": {
+ "System.Buffers": "4.4.0",
+ "System.Memory": "4.5.0",
+ "System.Security.AccessControl": "4.5.0",
+ "System.Security.Principal.Windows": "4.5.0"
+ }
+ },
+ "Newtonsoft.Json": {
+ "type": "Transitive",
+ "resolved": "9.0.1",
+ "contentHash": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==",
+ "dependencies": {
+ "Microsoft.CSharp": "4.0.1",
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Dynamic.Runtime": "4.0.11",
+ "System.Globalization": "4.0.11",
+ "System.IO": "4.1.0",
+ "System.Linq": "4.1.0",
+ "System.Linq.Expressions": "4.1.0",
+ "System.ObjectModel": "4.0.12",
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Extensions": "4.0.1",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Runtime.Serialization.Primitives": "4.1.1",
+ "System.Text.Encoding": "4.0.11",
+ "System.Text.Encoding.Extensions": "4.0.11",
+ "System.Text.RegularExpressions": "4.1.0",
+ "System.Threading": "4.0.11",
+ "System.Threading.Tasks": "4.0.11",
+ "System.Xml.ReaderWriter": "4.0.11",
+ "System.Xml.XDocument": "4.0.11"
+ }
+ },
+ "Serilog": {
+ "type": "Transitive",
+ "resolved": "2.10.0",
+ "contentHash": "+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA=="
+ },
+ "Serilog.Sinks.File": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==",
+ "dependencies": {
+ "Serilog": "2.10.0"
+ }
+ },
+ "System.Buffers": {
+ "type": "Transitive",
+ "resolved": "4.5.1",
+ "contentHash": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg=="
+ },
+ "System.Collections": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Collections.Immutable": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
+ "dependencies": {
+ "System.Memory": "4.5.4"
+ }
+ },
+ "System.Diagnostics.Debug": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Diagnostics.Tools": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Drawing.Common": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg=="
+ },
+ "System.Dynamic.Runtime": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Globalization": "4.0.11",
+ "System.Linq": "4.1.0",
+ "System.Linq.Expressions": "4.1.0",
+ "System.ObjectModel": "4.0.12",
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Emit": "4.0.1",
+ "System.Reflection.Emit.ILGeneration": "4.0.1",
+ "System.Reflection.Primitives": "4.0.1",
+ "System.Reflection.TypeExtensions": "4.1.0",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Threading": "4.0.11"
+ }
+ },
+ "System.Globalization": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.IO": {
+ "type": "Transitive",
+ "resolved": "4.1.0",
+ "contentHash": "3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Text.Encoding": "4.0.11",
+ "System.Threading.Tasks": "4.0.11"
+ }
+ },
+ "System.IO.FileSystem": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.IO": "4.1.0",
+ "System.IO.FileSystem.Primitives": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Handles": "4.0.1",
+ "System.Text.Encoding": "4.0.11",
+ "System.Threading.Tasks": "4.0.11"
+ }
+ },
+ "System.IO.FileSystem.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
+ "dependencies": {
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Linq": {
+ "type": "Transitive",
+ "resolved": "4.1.0",
+ "contentHash": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0"
+ }
+ },
+ "System.Linq.Expressions": {
+ "type": "Transitive",
+ "resolved": "4.1.0",
+ "contentHash": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Globalization": "4.0.11",
+ "System.IO": "4.1.0",
+ "System.Linq": "4.1.0",
+ "System.ObjectModel": "4.0.12",
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Emit": "4.0.1",
+ "System.Reflection.Emit.ILGeneration": "4.0.1",
+ "System.Reflection.Emit.Lightweight": "4.0.1",
+ "System.Reflection.Extensions": "4.0.1",
+ "System.Reflection.Primitives": "4.0.1",
+ "System.Reflection.TypeExtensions": "4.1.0",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Threading": "4.0.11"
+ }
+ },
+ "System.Memory": {
+ "type": "Transitive",
+ "resolved": "4.5.4",
+ "contentHash": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
+ "dependencies": {
+ "System.Buffers": "4.5.1",
+ "System.Numerics.Vectors": "4.4.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.5.3"
+ }
+ },
+ "System.Numerics.Vectors": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ=="
+ },
+ "System.ObjectModel": {
+ "type": "Transitive",
+ "resolved": "4.0.12",
+ "contentHash": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Threading": "4.0.11"
+ }
+ },
+ "System.Reflection": {
+ "type": "Transitive",
+ "resolved": "4.1.0",
+ "contentHash": "JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.IO": "4.1.0",
+ "System.Reflection.Primitives": "4.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Reflection.Emit": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==",
+ "dependencies": {
+ "System.IO": "4.1.0",
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Emit.ILGeneration": "4.0.1",
+ "System.Reflection.Primitives": "4.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Reflection.Emit.ILGeneration": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==",
+ "dependencies": {
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Primitives": "4.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Reflection.Emit.Lightweight": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
+ "dependencies": {
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Emit.ILGeneration": "4.0.1",
+ "System.Reflection.Primitives": "4.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Reflection.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Reflection": "4.1.0",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Reflection.Metadata": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==",
+ "dependencies": {
+ "System.Collections.Immutable": "5.0.0"
+ }
+ },
+ "System.Reflection.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Reflection.TypeExtensions": {
+ "type": "Transitive",
+ "resolved": "4.1.0",
+ "contentHash": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==",
+ "dependencies": {
+ "System.Reflection": "4.1.0",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Resources.ResourceManager": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Globalization": "4.0.11",
+ "System.Reflection": "4.1.0",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Runtime": {
+ "type": "Transitive",
+ "resolved": "4.1.0",
+ "contentHash": "v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1"
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe": {
+ "type": "Transitive",
+ "resolved": "4.6.0",
+ "contentHash": "HxozeSlipUK7dAroTYwIcGwKDeOVpQnJlpVaOkBz7CM4TsE5b/tKlQBZecTjh6FzcSbxndYaxxpsBMz+wMJeyw=="
+ },
+ "System.Runtime.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.1.0",
+ "contentHash": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Runtime.Handles": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Runtime.InteropServices": {
+ "type": "Transitive",
+ "resolved": "4.1.0",
+ "contentHash": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Primitives": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Handles": "4.0.1"
+ }
+ },
+ "System.Runtime.Serialization.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.1.1",
+ "contentHash": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==",
+ "dependencies": {
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Security.AccessControl": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==",
+ "dependencies": {
+ "System.Security.Principal.Windows": "4.5.0"
+ }
+ },
+ "System.Security.Principal.Windows": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ=="
+ },
+ "System.Text.Encoding": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Text.Encoding.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Text.Encoding": "4.0.11"
+ }
+ },
+ "System.Text.Encodings.Web": {
+ "type": "Transitive",
+ "resolved": "4.6.0",
+ "contentHash": "BXgFO8Yi7ao7hVA/nklD0Hre1Bbce048ZqryGZVFifGNPuh+2jqF1i/jLJLMfFGZIzUOw+nCIeH24SQhghDSPw==",
+ "dependencies": {
+ "System.Memory": "4.5.3"
+ }
+ },
+ "System.Text.Json": {
+ "type": "Transitive",
+ "resolved": "4.6.0",
+ "contentHash": "4F8Xe+JIkVoDJ8hDAZ7HqLkjctN/6WItJIzQaifBwClC7wmoLSda/Sv2i6i1kycqDb3hWF4JCVbpAweyOKHEUA==",
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "1.0.0",
+ "System.Buffers": "4.5.0",
+ "System.Memory": "4.5.3",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.6.0",
+ "System.Text.Encodings.Web": "4.6.0",
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ }
+ },
+ "System.Text.RegularExpressions": {
+ "type": "Transitive",
+ "resolved": "4.1.0",
+ "contentHash": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Globalization": "4.0.11",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Threading": "4.0.11"
+ }
+ },
+ "System.Threading": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==",
+ "dependencies": {
+ "System.Runtime": "4.1.0",
+ "System.Threading.Tasks": "4.0.11"
+ }
+ },
+ "System.Threading.Tasks": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Threading.Tasks.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.5.2",
+ "contentHash": "BG/TNxDFv0svAzx8OiMXDlsHfGw623BZ8tCXw4YLhDFDvDhNUEV58jKYMGRnkbJNm7c3JNNJDiN7JBMzxRBR2w==",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "4.5.2"
+ }
+ },
+ "System.Xml.ReaderWriter": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Globalization": "4.0.11",
+ "System.IO": "4.1.0",
+ "System.IO.FileSystem": "4.0.1",
+ "System.IO.FileSystem.Primitives": "4.0.1",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Runtime.InteropServices": "4.1.0",
+ "System.Text.Encoding": "4.0.11",
+ "System.Text.Encoding.Extensions": "4.0.11",
+ "System.Text.RegularExpressions": "4.1.0",
+ "System.Threading.Tasks": "4.0.11",
+ "System.Threading.Tasks.Extensions": "4.0.0"
+ }
+ },
+ "System.Xml.XDocument": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Diagnostics.Tools": "4.0.1",
+ "System.Globalization": "4.0.11",
+ "System.IO": "4.1.0",
+ "System.Reflection": "4.1.0",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Text.Encoding": "4.0.11",
+ "System.Threading": "4.0.11",
+ "System.Xml.ReaderWriter": "4.0.11"
+ }
+ },
+ "common": {
+ "type": "Project",
+ "dependencies": {
+ "Microsoft.Win32.Registry": "[4.5.0, )",
+ "Newtonsoft.Json": "[9.0.1, )",
+ "PowerShellProTools.VSCode": "[1.0.0, )",
+ "PowerShellStandard.Library": "[5.1.0, )",
+ "Serilog.Sinks.File": "[5.0.0, )"
+ }
+ },
+ "formdesigner.generator": {
+ "type": "Project",
+ "dependencies": {
+ "PowerShellStandard.Library": "[5.1.0, )"
+ }
+ },
+ "PowerShellProTools.VSCode": {
+ "type": "Project",
+ "dependencies": {
+ "FormDesigner.Generator": "[1.0.0, )",
+ "ICSharpCode.Decompiler": "[7.0.0.6488, )",
+ "Newtonsoft.Json": "[9.0.1, )",
+ "PowerShellStandard.Library": "[5.1.0, )"
+ }
+ },
+ "powershelltoolspro.packager": {
+ "type": "Project",
+ "dependencies": {
+ "PowerShellStandard.Library": "[5.1.0, )",
+ "StrongNamer": "[0.2.5, )",
+ "System.Drawing.Common": "[6.0.0, )",
+ "System.Text.Json": "[4.6.0, )"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/PowerShellToolsPro.MsBuild/PowerShellToolsPro.MsBuild.csproj b/PowerShellToolsPro.MsBuild/PowerShellToolsPro.MsBuild.csproj
index 009c211..b9f6205 100644
--- a/PowerShellToolsPro.MsBuild/PowerShellToolsPro.MsBuild.csproj
+++ b/PowerShellToolsPro.MsBuild/PowerShellToolsPro.MsBuild.csproj
@@ -6,6 +6,7 @@
False
true
..\Build\FinalPublicKey.snk
+ true
diff --git a/PowerShellToolsPro.MsBuild/packages.lock.json b/PowerShellToolsPro.MsBuild/packages.lock.json
new file mode 100644
index 0000000..f089dee
--- /dev/null
+++ b/PowerShellToolsPro.MsBuild/packages.lock.json
@@ -0,0 +1,1219 @@
+{
+ "version": 1,
+ "dependencies": {
+ ".NETStandard,Version=v2.0": {
+ "Microsoft.Build": {
+ "type": "Direct",
+ "requested": "[15.9.20, )",
+ "resolved": "15.9.20",
+ "contentHash": "b42hOwbOknlaqSjvmGdBRSgK6uKqsK3SL5977KGXgPkCJPcpb9hUIisjuFygVe9xuCEcKPZx8CRB+q6pf2M4Yg==",
+ "dependencies": {
+ "Microsoft.Build.Framework": "15.9.20",
+ "Microsoft.Win32.Registry": "4.3.0",
+ "System.Collections.Immutable": "1.5.0",
+ "System.Diagnostics.TraceSource": "4.0.0",
+ "System.IO.Compression": "4.3.0",
+ "System.Reflection.Metadata": "1.6.0",
+ "System.Reflection.TypeExtensions": "4.1.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
+ "System.Runtime.Loader": "4.0.0",
+ "System.Text.Encoding.CodePages": "4.0.1",
+ "System.Threading.Tasks.Dataflow": "4.6.0"
+ }
+ },
+ "Microsoft.Build.Tasks.Core": {
+ "type": "Direct",
+ "requested": "[15.9.20, )",
+ "resolved": "15.9.20",
+ "contentHash": "q1YB/wGcivg8BrdTmq/ZtIKhViNPZ9jdf8dqh//lE9mQp36qSgwn+Qb+6ZyD/THMS+tLC1SJaC/QKO0v6+hBqg==",
+ "dependencies": {
+ "Microsoft.Build.Framework": "15.9.20",
+ "Microsoft.Build.Utilities.Core": "15.9.20",
+ "Microsoft.Win32.Registry": "4.3.0",
+ "System.CodeDom": "4.4.0",
+ "System.Collections.Immutable": "1.5.0",
+ "System.Linq.Parallel": "4.0.1",
+ "System.Net.Http": "4.3.0",
+ "System.Reflection.Metadata": "1.6.0",
+ "System.Reflection.TypeExtensions": "4.1.0",
+ "System.Resources.Writer": "4.0.0",
+ "System.Threading.Tasks.Dataflow": "4.6.0"
+ }
+ },
+ "Microsoft.Build.Utilities.Core": {
+ "type": "Direct",
+ "requested": "[15.9.20, )",
+ "resolved": "15.9.20",
+ "contentHash": "s5F2IDARivpFJ+RiwOBnCt6Higu88nhDYfaUWwJ2ecBSf83HZsc3E/EjyQIs+4fPAeS5IZsL2ak7gOdxEXubSA==",
+ "dependencies": {
+ "Microsoft.Build.Framework": "15.9.20",
+ "Microsoft.Win32.Registry": "4.3.0",
+ "System.Collections.Immutable": "1.5.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
+ "System.Text.Encoding.CodePages": "4.4.0"
+ }
+ },
+ "NETStandard.Library": {
+ "type": "Direct",
+ "requested": "[2.0.3, )",
+ "resolved": "2.0.3",
+ "contentHash": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0"
+ }
+ },
+ "PowerShellStandard.Library": {
+ "type": "Direct",
+ "requested": "[5.1.0, )",
+ "resolved": "5.1.0",
+ "contentHash": "iYaRvQsM1fow9h3uEmio+2m2VXfulgI16AYHaTZ8Sf7erGe27Qc8w/h6QL5UPuwv1aXR40QfzMEwcCeiYJp2cw=="
+ },
+ "ICSharpCode.Decompiler": {
+ "type": "Transitive",
+ "resolved": "7.0.0.6488",
+ "contentHash": "1enxZGgiZgnka6VcHpBxkcuuNo462+YVPzRYUfe2/eF3tcDuLk9/yKEfQnXC265sRKnDhks+2Xhk0PlyagM5EA==",
+ "dependencies": {
+ "System.Collections.Immutable": "5.0.0",
+ "System.Reflection.Metadata": "5.0.0"
+ }
+ },
+ "Microsoft.Bcl.AsyncInterfaces": {
+ "type": "Transitive",
+ "resolved": "1.0.0",
+ "contentHash": "K63Y4hORbBcKLWH5wnKgzyn7TOfYzevIEwIedQHBIkmkEBA9SCqgvom+XTuE+fAFGvINGkhFItaZ2dvMGdT5iw==",
+ "dependencies": {
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ }
+ },
+ "Microsoft.Build.Framework": {
+ "type": "Transitive",
+ "resolved": "15.9.20",
+ "contentHash": "j7KrBtZrD+YQPAu+8K1a0J7HgDf0X18bSnqu5llKXxHZ5Cb1t3eSlEtZPUDFqsv3RCBzByggjIBaxrmdvHxLqA==",
+ "dependencies": {
+ "System.Runtime.Serialization.Primitives": "4.1.1",
+ "System.Threading.Thread": "4.0.0"
+ }
+ },
+ "Microsoft.CSharp": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Dynamic.Runtime": "4.0.11",
+ "System.Globalization": "4.0.11",
+ "System.Linq": "4.1.0",
+ "System.Linq.Expressions": "4.1.0",
+ "System.ObjectModel": "4.0.12",
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Extensions": "4.0.1",
+ "System.Reflection.Primitives": "4.0.1",
+ "System.Reflection.TypeExtensions": "4.1.0",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Runtime.InteropServices": "4.1.0",
+ "System.Threading": "4.0.11"
+ }
+ },
+ "Microsoft.NETCore.Platforms": {
+ "type": "Transitive",
+ "resolved": "1.1.0",
+ "contentHash": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A=="
+ },
+ "Microsoft.NETCore.Targets": {
+ "type": "Transitive",
+ "resolved": "1.1.0",
+ "contentHash": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg=="
+ },
+ "Microsoft.Win32.Registry": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "+FWlwd//+Tt56316p00hVePBCouXyEzT86Jb3+AuRotTND0IYn0OO3obs1gnQEs/txEnt+rF2JBGLItTG+Be6A==",
+ "dependencies": {
+ "System.Buffers": "4.4.0",
+ "System.Memory": "4.5.0",
+ "System.Security.AccessControl": "4.5.0",
+ "System.Security.Principal.Windows": "4.5.0"
+ }
+ },
+ "morelinq": {
+ "type": "Transitive",
+ "resolved": "3.3.2",
+ "contentHash": "MQc8GppZJLmjvcpEdf3EkC6ovsp7gRWt2e5mC7dcIOrgwSc+yjFd3JQ0iRqr3XrUT6rb/phv0IkEmBtbfVA7AQ=="
+ },
+ "Newtonsoft.Json": {
+ "type": "Transitive",
+ "resolved": "9.0.1",
+ "contentHash": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==",
+ "dependencies": {
+ "Microsoft.CSharp": "4.0.1",
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Dynamic.Runtime": "4.0.11",
+ "System.Globalization": "4.0.11",
+ "System.IO": "4.1.0",
+ "System.Linq": "4.1.0",
+ "System.Linq.Expressions": "4.1.0",
+ "System.ObjectModel": "4.0.12",
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Extensions": "4.0.1",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Runtime.Serialization.Primitives": "4.1.1",
+ "System.Text.Encoding": "4.0.11",
+ "System.Text.Encoding.Extensions": "4.0.11",
+ "System.Text.RegularExpressions": "4.1.0",
+ "System.Threading": "4.0.11",
+ "System.Threading.Tasks": "4.0.11",
+ "System.Xml.ReaderWriter": "4.0.11",
+ "System.Xml.XDocument": "4.0.11"
+ }
+ },
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q=="
+ },
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA=="
+ },
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw=="
+ },
+ "runtime.native.System": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "runtime.native.System.IO.Compression": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "runtime.native.System.Net.Http": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "runtime.native.System.Security.Cryptography.Apple": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
+ "dependencies": {
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
+ }
+ },
+ "runtime.native.System.Security.Cryptography.OpenSsl": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
+ "dependencies": {
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A=="
+ },
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ=="
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ=="
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g=="
+ },
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg=="
+ },
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ=="
+ },
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A=="
+ },
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg=="
+ },
+ "Serilog": {
+ "type": "Transitive",
+ "resolved": "2.10.0",
+ "contentHash": "+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA=="
+ },
+ "Serilog.Sinks.File": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==",
+ "dependencies": {
+ "Serilog": "2.10.0"
+ }
+ },
+ "StrongNamer": {
+ "type": "Transitive",
+ "resolved": "0.2.5",
+ "contentHash": "1IWl8gYnsTC6NXHz63iDpXL8r0y5x0M/Cnq/Ju5uM17gTOQYSeclMkgQsvmGglJEqAwVxayY1sIUR3bb2MAy5Q=="
+ },
+ "System.Buffers": {
+ "type": "Transitive",
+ "resolved": "4.5.1",
+ "contentHash": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg=="
+ },
+ "System.CodeDom": {
+ "type": "Transitive",
+ "resolved": "4.4.0",
+ "contentHash": "2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA=="
+ },
+ "System.Collections": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Collections.Concurrent": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Collections.Immutable": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
+ "dependencies": {
+ "System.Memory": "4.5.4"
+ }
+ },
+ "System.Diagnostics.Debug": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Diagnostics.DiagnosticSource": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Diagnostics.Tools": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Diagnostics.TraceSource": {
+ "type": "Transitive",
+ "resolved": "4.0.0",
+ "contentHash": "6WVCczFZKXwpWpzd/iJkYnsmWTSFFiU24Xx/YdHXBcu+nFI/ehTgeqdJQFbtRPzbrO3KtRNjvkhtj4t5/WwWsA==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Globalization": "4.0.11",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Threading": "4.0.11",
+ "runtime.native.System": "4.0.0"
+ }
+ },
+ "System.Diagnostics.Tracing": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Drawing.Common": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg=="
+ },
+ "System.Dynamic.Runtime": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Globalization": "4.0.11",
+ "System.Linq": "4.1.0",
+ "System.Linq.Expressions": "4.1.0",
+ "System.ObjectModel": "4.0.12",
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Emit": "4.0.1",
+ "System.Reflection.Emit.ILGeneration": "4.0.1",
+ "System.Reflection.Primitives": "4.0.1",
+ "System.Reflection.TypeExtensions": "4.1.0",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Threading": "4.0.11"
+ }
+ },
+ "System.Globalization": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Globalization.Calendars": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Globalization.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0"
+ }
+ },
+ "System.IO": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.IO.Compression": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Buffers": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.IO.Compression": "4.3.0"
+ }
+ },
+ "System.IO.FileSystem": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.IO.FileSystem.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.IO.Pipes.AccessControl": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "uqKLJb0Cukb8vG6JVKbJXOAmMWUWOue4ZTjMn7qrfGLZHww3iV8xV1amipI238kmmoFQx6I8GP2bjDM/ss5pQQ==",
+ "dependencies": {
+ "System.Security.AccessControl": "4.5.0",
+ "System.Security.Principal.Windows": "4.5.0"
+ }
+ },
+ "System.Linq": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ }
+ },
+ "System.Linq.Expressions": {
+ "type": "Transitive",
+ "resolved": "4.1.0",
+ "contentHash": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Globalization": "4.0.11",
+ "System.IO": "4.1.0",
+ "System.Linq": "4.1.0",
+ "System.ObjectModel": "4.0.12",
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Emit": "4.0.1",
+ "System.Reflection.Emit.ILGeneration": "4.0.1",
+ "System.Reflection.Emit.Lightweight": "4.0.1",
+ "System.Reflection.Extensions": "4.0.1",
+ "System.Reflection.Primitives": "4.0.1",
+ "System.Reflection.TypeExtensions": "4.1.0",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Threading": "4.0.11"
+ }
+ },
+ "System.Linq.Parallel": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "J7XCa7n2cFn32uLbtceXfBFhgCk5M++50lylHKNbqTiJkw5y4Tglpi6amuJNPCvj9bLzNSI7rs1fi4joLMNRgg==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Collections.Concurrent": "4.0.12",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Diagnostics.Tracing": "4.1.0",
+ "System.Linq": "4.1.0",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Threading": "4.0.11",
+ "System.Threading.Tasks": "4.0.11"
+ }
+ },
+ "System.Memory": {
+ "type": "Transitive",
+ "resolved": "4.5.4",
+ "contentHash": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
+ "dependencies": {
+ "System.Buffers": "4.5.1",
+ "System.Numerics.Vectors": "4.4.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.5.3"
+ }
+ },
+ "System.Net.Http": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "System.Net.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ }
+ },
+ "System.Numerics.Vectors": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ=="
+ },
+ "System.ObjectModel": {
+ "type": "Transitive",
+ "resolved": "4.0.12",
+ "contentHash": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Threading": "4.0.11"
+ }
+ },
+ "System.Reflection": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Emit": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==",
+ "dependencies": {
+ "System.IO": "4.1.0",
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Emit.ILGeneration": "4.0.1",
+ "System.Reflection.Primitives": "4.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Reflection.Emit.ILGeneration": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==",
+ "dependencies": {
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Primitives": "4.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Reflection.Emit.Lightweight": {
+ "type": "Transitive",
+ "resolved": "4.0.1",
+ "contentHash": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
+ "dependencies": {
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Emit.ILGeneration": "4.0.1",
+ "System.Reflection.Primitives": "4.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Reflection.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Metadata": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==",
+ "dependencies": {
+ "System.Collections.Immutable": "5.0.0"
+ }
+ },
+ "System.Reflection.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.TypeExtensions": {
+ "type": "Transitive",
+ "resolved": "4.1.0",
+ "contentHash": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==",
+ "dependencies": {
+ "System.Reflection": "4.1.0",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Resources.ResourceManager": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Resources.Writer": {
+ "type": "Transitive",
+ "resolved": "4.0.0",
+ "contentHash": "Hz+ZS81dVSNy93YyJhhL3GwzmMhfcQ8FbUooAt9MO4joIe0vPM4gclv0C82ko1tuN/Kw6CvZFLYkgk6n9xvEkg==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.IO": "4.1.0",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Text.Encoding": "4.0.11"
+ }
+ },
+ "System.Runtime": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe": {
+ "type": "Transitive",
+ "resolved": "4.6.0",
+ "contentHash": "HxozeSlipUK7dAroTYwIcGwKDeOVpQnJlpVaOkBz7CM4TsE5b/tKlQBZecTjh6FzcSbxndYaxxpsBMz+wMJeyw=="
+ },
+ "System.Runtime.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.Handles": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.InteropServices": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ }
+ },
+ "System.Runtime.InteropServices.RuntimeInformation": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0"
+ }
+ },
+ "System.Runtime.Loader": {
+ "type": "Transitive",
+ "resolved": "4.0.0",
+ "contentHash": "4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==",
+ "dependencies": {
+ "System.IO": "4.1.0",
+ "System.Reflection": "4.1.0",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Runtime.Numerics": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
+ "dependencies": {
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ }
+ },
+ "System.Runtime.Serialization.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.1.1",
+ "contentHash": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==",
+ "dependencies": {
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Security.AccessControl": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==",
+ "dependencies": {
+ "System.Security.Principal.Windows": "4.5.0"
+ }
+ },
+ "System.Security.Cryptography.Algorithms": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.Cng": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.Csp": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.Encoding": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.OpenSsl": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.Primitives": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.X509Certificates": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Calendars": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Cng": "4.3.0",
+ "System.Security.Cryptography.Csp": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "System.Security.Principal.Windows": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ=="
+ },
+ "System.Text.Encoding": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Text.Encoding.CodePages": {
+ "type": "Transitive",
+ "resolved": "4.4.0",
+ "contentHash": "6JX7ZdaceBiLKLkYt8zJcp4xTJd1uYyXXEkPw6mnlUIjh1gZPIVKPtRXPmY5kLf6DwZmf5YLwR3QUrRonl7l0A=="
+ },
+ "System.Text.Encoding.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Text.Encoding": "4.0.11"
+ }
+ },
+ "System.Text.Encodings.Web": {
+ "type": "Transitive",
+ "resolved": "4.6.0",
+ "contentHash": "BXgFO8Yi7ao7hVA/nklD0Hre1Bbce048ZqryGZVFifGNPuh+2jqF1i/jLJLMfFGZIzUOw+nCIeH24SQhghDSPw==",
+ "dependencies": {
+ "System.Memory": "4.5.3"
+ }
+ },
+ "System.Text.Json": {
+ "type": "Transitive",
+ "resolved": "4.6.0",
+ "contentHash": "4F8Xe+JIkVoDJ8hDAZ7HqLkjctN/6WItJIzQaifBwClC7wmoLSda/Sv2i6i1kycqDb3hWF4JCVbpAweyOKHEUA==",
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "1.0.0",
+ "System.Buffers": "4.5.0",
+ "System.Memory": "4.5.3",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.6.0",
+ "System.Text.Encodings.Web": "4.6.0",
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ }
+ },
+ "System.Text.RegularExpressions": {
+ "type": "Transitive",
+ "resolved": "4.1.0",
+ "contentHash": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Globalization": "4.0.11",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Threading": "4.0.11"
+ }
+ },
+ "System.Threading": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Threading.Tasks": {
+ "type": "Transitive",
+ "resolved": "4.3.0",
+ "contentHash": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Threading.Tasks.Dataflow": {
+ "type": "Transitive",
+ "resolved": "4.6.0",
+ "contentHash": "2hRjGu2r2jxRZ55wmcHO/WbdX+YAOz9x6FE8xqkHZgPaoFMKQZRe9dk8xTZIas8fRjxRmzawnTEWIrhlM+Un7w==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Collections.Concurrent": "4.0.12",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Diagnostics.Tracing": "4.1.0",
+ "System.Dynamic.Runtime": "4.0.11",
+ "System.Linq": "4.1.0",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Threading": "4.0.11",
+ "System.Threading.Tasks": "4.0.11"
+ }
+ },
+ "System.Threading.Tasks.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.5.2",
+ "contentHash": "BG/TNxDFv0svAzx8OiMXDlsHfGw623BZ8tCXw4YLhDFDvDhNUEV58jKYMGRnkbJNm7c3JNNJDiN7JBMzxRBR2w==",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "4.5.2"
+ }
+ },
+ "System.Threading.Thread": {
+ "type": "Transitive",
+ "resolved": "4.0.0",
+ "contentHash": "gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==",
+ "dependencies": {
+ "System.Runtime": "4.1.0"
+ }
+ },
+ "System.Xml.ReaderWriter": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Globalization": "4.0.11",
+ "System.IO": "4.1.0",
+ "System.IO.FileSystem": "4.0.1",
+ "System.IO.FileSystem.Primitives": "4.0.1",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Runtime.InteropServices": "4.1.0",
+ "System.Text.Encoding": "4.0.11",
+ "System.Text.Encoding.Extensions": "4.0.11",
+ "System.Text.RegularExpressions": "4.1.0",
+ "System.Threading.Tasks": "4.0.11",
+ "System.Threading.Tasks.Extensions": "4.0.0"
+ }
+ },
+ "System.Xml.XDocument": {
+ "type": "Transitive",
+ "resolved": "4.0.11",
+ "contentHash": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Diagnostics.Tools": "4.0.1",
+ "System.Globalization": "4.0.11",
+ "System.IO": "4.1.0",
+ "System.Reflection": "4.1.0",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Text.Encoding": "4.0.11",
+ "System.Threading": "4.0.11",
+ "System.Xml.ReaderWriter": "4.0.11"
+ }
+ },
+ "YamlDotNet": {
+ "type": "Transitive",
+ "resolved": "9.1.0",
+ "contentHash": "fuvGXU4Ec5HrsmEc+BiFTNPCRf1cGBI2kh/3RzMWgddM2M4ALhbSPoI3X3mhXZUD1qqQd9oSkFAtWjpz8z9eRg=="
+ },
+ "common": {
+ "type": "Project",
+ "dependencies": {
+ "Microsoft.Win32.Registry": "[4.5.0, )",
+ "Newtonsoft.Json": "[9.0.1, )",
+ "PowerShellProTools.VSCode": "[1.0.0, )",
+ "PowerShellStandard.Library": "[5.1.0, )",
+ "Serilog.Sinks.File": "[5.0.0, )"
+ }
+ },
+ "formdesigner.generator": {
+ "type": "Project",
+ "dependencies": {
+ "PowerShellStandard.Library": "[5.1.0, )"
+ }
+ },
+ "PowerShellProTools.VSCode": {
+ "type": "Project",
+ "dependencies": {
+ "FormDesigner.Generator": "[1.0.0, )",
+ "ICSharpCode.Decompiler": "[7.0.0.6488, )",
+ "Newtonsoft.Json": "[9.0.1, )",
+ "PowerShellStandard.Library": "[5.1.0, )"
+ }
+ },
+ "powershelltoolspro.cmdlets": {
+ "type": "Project",
+ "dependencies": {
+ "Common": "[1.0.0, )",
+ "FormDesigner.Generator": "[1.0.0, )",
+ "PowerShellStandard.Library": "[5.1.0, )",
+ "PowerShellToolsPro.Packager": "[2.0.0, )",
+ "StrongNamer": "[0.2.5, )",
+ "System.IO.Pipes.AccessControl": "[4.5.0, )",
+ "YamlDotNet": "[9.1.0, )",
+ "morelinq": "[3.3.2, )"
+ }
+ },
+ "powershelltoolspro.packager": {
+ "type": "Project",
+ "dependencies": {
+ "PowerShellStandard.Library": "[5.1.0, )",
+ "StrongNamer": "[0.2.5, )",
+ "System.Drawing.Common": "[6.0.0, )",
+ "System.Text.Json": "[4.6.0, )"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/PowerShellToolsPro.Packager.Test/PowerShellToolsPro.Packager.Test.csproj b/PowerShellToolsPro.Packager.Test/PowerShellToolsPro.Packager.Test.csproj
index 96dde82..d673b7b 100644
--- a/PowerShellToolsPro.Packager.Test/PowerShellToolsPro.Packager.Test.csproj
+++ b/PowerShellToolsPro.Packager.Test/PowerShellToolsPro.Packager.Test.csproj
@@ -1,5 +1,6 @@
-
+
Debug
@@ -14,6 +15,7 @@
+ true
true
diff --git a/PowerShellToolsPro.Packager.Test/packages.lock.json b/PowerShellToolsPro.Packager.Test/packages.lock.json
new file mode 100644
index 0000000..34ba0f9
--- /dev/null
+++ b/PowerShellToolsPro.Packager.Test/packages.lock.json
@@ -0,0 +1,210 @@
+{
+ "version": 1,
+ "dependencies": {
+ ".NETFramework,Version=v4.7.2": {
+ "Castle.Core": {
+ "type": "Direct",
+ "requested": "[4.4.1, )",
+ "resolved": "4.4.1",
+ "contentHash": "zanbjWC0Y05gbx4eGXkzVycOQqVOFVeCjVsDSyuao9P4mtN1w3WxxTo193NGC7j3o2u3AJRswaoC6hEbnGACnQ=="
+ },
+ "Microsoft.Win32.Registry": {
+ "type": "Direct",
+ "requested": "[5.0.0, )",
+ "resolved": "5.0.0",
+ "contentHash": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
+ "dependencies": {
+ "System.Security.AccessControl": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ }
+ },
+ "NSubstitute": {
+ "type": "Direct",
+ "requested": "[4.2.2, )",
+ "resolved": "4.2.2",
+ "contentHash": "s+H1fUo+WSymYxNdZlwhekdNDLv4w0ZvmwYheMEe4tWACcMDNoqfcDpeL66RyWfurNvvIYQJNP3VUwX2aAC1gw==",
+ "dependencies": {
+ "Castle.Core": "4.4.0",
+ "System.Threading.Tasks.Extensions": "4.3.0"
+ }
+ },
+ "PowerShellStandard.Library": {
+ "type": "Direct",
+ "requested": "[5.1.0, )",
+ "resolved": "5.1.0",
+ "contentHash": "iYaRvQsM1fow9h3uEmio+2m2VXfulgI16AYHaTZ8Sf7erGe27Qc8w/h6QL5UPuwv1aXR40QfzMEwcCeiYJp2cw=="
+ },
+ "StrongNamer": {
+ "type": "Direct",
+ "requested": "[0.2.5, )",
+ "resolved": "0.2.5",
+ "contentHash": "1IWl8gYnsTC6NXHz63iDpXL8r0y5x0M/Cnq/Ju5uM17gTOQYSeclMkgQsvmGglJEqAwVxayY1sIUR3bb2MAy5Q=="
+ },
+ "System.Runtime": {
+ "type": "Direct",
+ "requested": "[4.3.1, )",
+ "resolved": "4.3.1",
+ "contentHash": "abhfv1dTK6NXOmu4bgHIONxHyEqFjW8HwXPmpY9gmll+ix9UNo4XDcmzJn6oLooftxNssVHdJC1pGT9jkSynQg=="
+ },
+ "System.Runtime.CompilerServices.Unsafe": {
+ "type": "Direct",
+ "requested": "[5.0.0, )",
+ "resolved": "5.0.0",
+ "contentHash": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA=="
+ },
+ "System.Security.Principal.Windows": {
+ "type": "Direct",
+ "requested": "[5.0.0, )",
+ "resolved": "5.0.0",
+ "contentHash": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA=="
+ },
+ "System.Threading.Tasks.Extensions": {
+ "type": "Direct",
+ "requested": "[4.5.4, )",
+ "resolved": "4.5.4",
+ "contentHash": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "4.5.3"
+ }
+ },
+ "xunit": {
+ "type": "Direct",
+ "requested": "[2.4.1, )",
+ "resolved": "2.4.1",
+ "contentHash": "XNR3Yz9QTtec16O0aKcO6+baVNpXmOnPUxDkCY97J+8krUYxPvXT1szYYEUdKk4sB8GOI2YbAjRIOm8ZnXRfzQ==",
+ "dependencies": {
+ "xunit.analyzers": "0.10.0",
+ "xunit.assert": "[2.4.1]",
+ "xunit.core": "[2.4.1]"
+ }
+ },
+ "xunit.runner.visualstudio": {
+ "type": "Direct",
+ "requested": "[2.4.3, )",
+ "resolved": "2.4.3",
+ "contentHash": "kZZSmOmKA8OBlAJaquPXnJJLM9RwQ27H7BMVqfMLUcTi9xHinWGJiWksa3D4NEtz0wZ/nxd2mogObvBgJKCRhQ=="
+ },
+ "Microsoft.Bcl.AsyncInterfaces": {
+ "type": "Transitive",
+ "resolved": "1.0.0",
+ "contentHash": "K63Y4hORbBcKLWH5wnKgzyn7TOfYzevIEwIedQHBIkmkEBA9SCqgvom+XTuE+fAFGvINGkhFItaZ2dvMGdT5iw==",
+ "dependencies": {
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ }
+ },
+ "System.Buffers": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A=="
+ },
+ "System.Drawing.Common": {
+ "type": "Transitive",
+ "resolved": "6.0.0",
+ "contentHash": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg=="
+ },
+ "System.Memory": {
+ "type": "Transitive",
+ "resolved": "4.5.3",
+ "contentHash": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
+ "dependencies": {
+ "System.Buffers": "4.4.0",
+ "System.Numerics.Vectors": "4.4.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.5.2"
+ }
+ },
+ "System.Numerics.Vectors": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ=="
+ },
+ "System.Security.AccessControl": {
+ "type": "Transitive",
+ "resolved": "5.0.0",
+ "contentHash": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
+ "dependencies": {
+ "System.Security.Principal.Windows": "5.0.0"
+ }
+ },
+ "System.Text.Encodings.Web": {
+ "type": "Transitive",
+ "resolved": "4.6.0",
+ "contentHash": "BXgFO8Yi7ao7hVA/nklD0Hre1Bbce048ZqryGZVFifGNPuh+2jqF1i/jLJLMfFGZIzUOw+nCIeH24SQhghDSPw==",
+ "dependencies": {
+ "System.Memory": "4.5.3"
+ }
+ },
+ "System.Text.Json": {
+ "type": "Transitive",
+ "resolved": "4.6.0",
+ "contentHash": "4F8Xe+JIkVoDJ8hDAZ7HqLkjctN/6WItJIzQaifBwClC7wmoLSda/Sv2i6i1kycqDb3hWF4JCVbpAweyOKHEUA==",
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "1.0.0",
+ "System.Buffers": "4.5.0",
+ "System.Memory": "4.5.3",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.6.0",
+ "System.Text.Encodings.Web": "4.6.0",
+ "System.Threading.Tasks.Extensions": "4.5.2",
+ "System.ValueTuple": "4.5.0"
+ }
+ },
+ "System.ValueTuple": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ=="
+ },
+ "xunit.abstractions": {
+ "type": "Transitive",
+ "resolved": "2.0.3",
+ "contentHash": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg=="
+ },
+ "xunit.analyzers": {
+ "type": "Transitive",
+ "resolved": "0.10.0",
+ "contentHash": "4/IDFCJfIeg6bix9apmUtIMwvOsiwqdEexeO/R2D4GReIGPLIRODTpId/l4LRSrAJk9lEO3Zx1H0Zx6uohJDNg=="
+ },
+ "xunit.assert": {
+ "type": "Transitive",
+ "resolved": "2.4.1",
+ "contentHash": "O/Oe0BS5RmSsM+LQOb041TzuPo5MdH2Rov+qXGS37X+KFG1Hxz7kopYklM5+1Y+tRGeXrOx5+Xne1RuqLFQoyQ=="
+ },
+ "xunit.core": {
+ "type": "Transitive",
+ "resolved": "2.4.1",
+ "contentHash": "Zsj5OMU6JasNGERXZy8s72+pcheG6Q15atS5XpZXqAtULuyQiQ6XNnUsp1gyfC6WgqScqMvySiEHmHcOG6Eg0Q==",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.4.1]",
+ "xunit.extensibility.execution": "[2.4.1]"
+ }
+ },
+ "xunit.extensibility.core": {
+ "type": "Transitive",
+ "resolved": "2.4.1",
+ "contentHash": "yKZKm/8QNZnBnGZFD9SewkllHBiK0DThybQD/G4PiAmQjKtEZyHi6ET70QPU9KtSMJGRYS6Syk7EyR2EVDU4Kg==",
+ "dependencies": {
+ "xunit.abstractions": "2.0.3"
+ }
+ },
+ "xunit.extensibility.execution": {
+ "type": "Transitive",
+ "resolved": "2.4.1",
+ "contentHash": "7e/1jqBpcb7frLkB6XDrHCGXAbKN4Rtdb88epYxCSRQuZDRW8UtTfdTEVpdTl8s4T56e07hOBVd4G0OdCxIY2A==",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.4.1]"
+ }
+ },
+ "powershelltoolspro.packager": {
+ "type": "Project",
+ "dependencies": {
+ "PowerShellStandard.Library": "[5.1.0, )",
+ "StrongNamer": "[0.2.5, )",
+ "System.Drawing.Common": "[6.0.0, )",
+ "System.Text.Json": "[4.6.0, )"
+ }
+ },
+ "powershelltoolspro.packager.test.testmodule": {
+ "type": "Project"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/PowerShellToolsPro.Packager/PowerShellToolsPro.Packager.csproj b/PowerShellToolsPro.Packager/PowerShellToolsPro.Packager.csproj
index fa88018..08fc252 100644
--- a/PowerShellToolsPro.Packager/PowerShellToolsPro.Packager.csproj
+++ b/PowerShellToolsPro.Packager/PowerShellToolsPro.Packager.csproj
@@ -12,6 +12,7 @@
PowerShellToolsPro.Packager2
2
2.0.0
+ true
diff --git a/PowerShellToolsPro.Packager/packages.lock.json b/PowerShellToolsPro.Packager/packages.lock.json
new file mode 100644
index 0000000..bbc760e
--- /dev/null
+++ b/PowerShellToolsPro.Packager/packages.lock.json
@@ -0,0 +1,103 @@
+{
+ "version": 1,
+ "dependencies": {
+ ".NETStandard,Version=v2.0": {
+ "NETStandard.Library": {
+ "type": "Direct",
+ "requested": "[2.0.3, )",
+ "resolved": "2.0.3",
+ "contentHash": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0"
+ }
+ },
+ "PowerShellStandard.Library": {
+ "type": "Direct",
+ "requested": "[5.1.0, )",
+ "resolved": "5.1.0",
+ "contentHash": "iYaRvQsM1fow9h3uEmio+2m2VXfulgI16AYHaTZ8Sf7erGe27Qc8w/h6QL5UPuwv1aXR40QfzMEwcCeiYJp2cw=="
+ },
+ "StrongNamer": {
+ "type": "Direct",
+ "requested": "[0.2.5, )",
+ "resolved": "0.2.5",
+ "contentHash": "1IWl8gYnsTC6NXHz63iDpXL8r0y5x0M/Cnq/Ju5uM17gTOQYSeclMkgQsvmGglJEqAwVxayY1sIUR3bb2MAy5Q=="
+ },
+ "System.Drawing.Common": {
+ "type": "Direct",
+ "requested": "[6.0.0, )",
+ "resolved": "6.0.0",
+ "contentHash": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg=="
+ },
+ "System.Text.Json": {
+ "type": "Direct",
+ "requested": "[4.6.0, )",
+ "resolved": "4.6.0",
+ "contentHash": "4F8Xe+JIkVoDJ8hDAZ7HqLkjctN/6WItJIzQaifBwClC7wmoLSda/Sv2i6i1kycqDb3hWF4JCVbpAweyOKHEUA==",
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "1.0.0",
+ "System.Buffers": "4.5.0",
+ "System.Memory": "4.5.3",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.6.0",
+ "System.Text.Encodings.Web": "4.6.0",
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ }
+ },
+ "Microsoft.Bcl.AsyncInterfaces": {
+ "type": "Transitive",
+ "resolved": "1.0.0",
+ "contentHash": "K63Y4hORbBcKLWH5wnKgzyn7TOfYzevIEwIedQHBIkmkEBA9SCqgvom+XTuE+fAFGvINGkhFItaZ2dvMGdT5iw==",
+ "dependencies": {
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ }
+ },
+ "Microsoft.NETCore.Platforms": {
+ "type": "Transitive",
+ "resolved": "1.1.0",
+ "contentHash": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A=="
+ },
+ "System.Buffers": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A=="
+ },
+ "System.Memory": {
+ "type": "Transitive",
+ "resolved": "4.5.3",
+ "contentHash": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
+ "dependencies": {
+ "System.Buffers": "4.4.0",
+ "System.Numerics.Vectors": "4.4.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.5.2"
+ }
+ },
+ "System.Numerics.Vectors": {
+ "type": "Transitive",
+ "resolved": "4.5.0",
+ "contentHash": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ=="
+ },
+ "System.Runtime.CompilerServices.Unsafe": {
+ "type": "Transitive",
+ "resolved": "4.6.0",
+ "contentHash": "HxozeSlipUK7dAroTYwIcGwKDeOVpQnJlpVaOkBz7CM4TsE5b/tKlQBZecTjh6FzcSbxndYaxxpsBMz+wMJeyw=="
+ },
+ "System.Text.Encodings.Web": {
+ "type": "Transitive",
+ "resolved": "4.6.0",
+ "contentHash": "BXgFO8Yi7ao7hVA/nklD0Hre1Bbce048ZqryGZVFifGNPuh+2jqF1i/jLJLMfFGZIzUOw+nCIeH24SQhghDSPw==",
+ "dependencies": {
+ "System.Memory": "4.5.3"
+ }
+ },
+ "System.Threading.Tasks.Extensions": {
+ "type": "Transitive",
+ "resolved": "4.5.2",
+ "contentHash": "BG/TNxDFv0svAzx8OiMXDlsHfGw623BZ8tCXw4YLhDFDvDhNUEV58jKYMGRnkbJNm7c3JNNJDiN7JBMzxRBR2w==",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "4.5.2"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/PowerShellToolsPro.Templates.FormItem/PowerShellToolsPro.Templates.FormItem.csproj b/PowerShellToolsPro.Templates.FormItem/PowerShellToolsPro.Templates.FormItem.csproj
index a2500b7..919747a 100644
--- a/PowerShellToolsPro.Templates.FormItem/PowerShellToolsPro.Templates.FormItem.csproj
+++ b/PowerShellToolsPro.Templates.FormItem/PowerShellToolsPro.Templates.FormItem.csproj
@@ -1,5 +1,6 @@
-
+
$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)
diff --git a/WinFormDesigner/WinFormDesigner.csproj b/WinFormDesigner/WinFormDesigner.csproj
index c93c88f..89c9f97 100644
--- a/WinFormDesigner/WinFormDesigner.csproj
+++ b/WinFormDesigner/WinFormDesigner.csproj
@@ -1,5 +1,6 @@
-
+
diff --git a/nuget.exe b/nuget.exe
deleted file mode 100644
index 4cbab24..0000000
Binary files a/nuget.exe and /dev/null differ
diff --git a/poshtools.version.txt b/poshtools.version.txt
index ce9bbeb..558c932 100644
--- a/poshtools.version.txt
+++ b/poshtools.version.txt
@@ -1 +1 @@
-2024.7.0
\ No newline at end of file
+2024.7.1
\ No newline at end of file