diff --git a/.circleci/config.yml b/.circleci/config.yml
index bdfe7eb..da0d285 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -15,19 +15,26 @@ jobs:
- checkout
- run:
name: Install dependencies
- command: dotnet restore
- - run:
- name: Run tests with coverage
- command: |
- dotnet test tests/tests.sln \
- --no-restore \
- --verbosity normal \
- --collect:"XPlat Code Coverage" \
- --results-directory ./coverage \
- || true
+ command: dotnet restore trolley.sln
- run:
name: Build
- command: dotnet build --configuration Release --no-restore
+ command: dotnet build trolley.sln --configuration Release --no-restore
+ - run:
+ name: Discover tests
+ command: dotnet test tests/tests.sln --configuration Release --no-build --list-tests
+ - run:
+ name: Run integration tests with coverage
+ command: |
+ if [ -n "$TROLLEY_ACCESS_KEY" ] && [ -n "$TROLLEY_SECRET_KEY" ]; then
+ dotnet test tests/tests.sln \
+ --configuration Release \
+ --no-build \
+ --verbosity normal \
+ --collect:"XPlat Code Coverage" \
+ --results-directory ./coverage
+ else
+ echo "Skipping integration tests because TROLLEY_ACCESS_KEY/TROLLEY_SECRET_KEY are not configured."
+ fi
- run:
name: Install GPG
command: apt-get update -qq && apt-get install -y gnupg
diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml
index 5b270ae..391a7a7 100644
--- a/.github/workflows/dotnet-core.yml
+++ b/.github/workflows/dotnet-core.yml
@@ -11,6 +11,11 @@ on:
jobs:
build:
runs-on: ubuntu-latest
+ env:
+ CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
+ TROLLEY_ACCESS_KEY: ${{ secrets.TROLLEY_ACCESS_KEY }}
+ TROLLEY_SECRET_KEY: ${{ secrets.TROLLEY_SECRET_KEY }}
+ TROLLEY_API_BASE_URL: ${{ secrets.TROLLEY_API_BASE_URL }}
steps:
- uses: actions/checkout@v4
- name: Setup .NET
@@ -18,18 +23,25 @@ jobs:
with:
dotnet-version: 8.0.x
- name: Install dependencies
- run: dotnet restore trolley/trolley.csproj
+ run: dotnet restore trolley.sln
- name: Build
- run: dotnet build trolley/trolley.csproj --configuration Release --no-restore
- - name: Test with coverage
- continue-on-error: true
+ run: dotnet build trolley.sln --configuration Release --no-restore
+ - name: Discover tests
+ run: dotnet test tests/tests.sln --configuration Release --no-build --list-tests
+ - name: Run integration tests with coverage
+ if: env.TROLLEY_ACCESS_KEY != '' && env.TROLLEY_SECRET_KEY != ''
run: |
dotnet test tests/tests.sln \
- --no-restore \
+ --configuration Release \
+ --no-build \
--verbosity normal \
--collect:"XPlat Code Coverage" \
--results-directory ./coverage
+ - name: Skip integration tests without credentials
+ if: env.TROLLEY_ACCESS_KEY == '' || env.TROLLEY_SECRET_KEY == ''
+ run: echo "Skipping integration tests because TROLLEY_ACCESS_KEY/TROLLEY_SECRET_KEY are not configured."
- name: Upload coverage to Codecov
+ if: env.CODECOV_TOKEN != '' && env.TROLLEY_ACCESS_KEY != '' && env.TROLLEY_SECRET_KEY != ''
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
diff --git a/.vs/paymentrails/v14/.suo b/.vs/paymentrails/v14/.suo
deleted file mode 100644
index 2fdbb9c..0000000
Binary files a/.vs/paymentrails/v14/.suo and /dev/null differ
diff --git a/tests/.vs/tests/xs/project-cache/tests-Debug-netcoreapp2.0.json b/tests/.vs/tests/xs/project-cache/tests-Debug-netcoreapp2.0.json
deleted file mode 100644
index 45e878a..0000000
--- a/tests/.vs/tests/xs/project-cache/tests-Debug-netcoreapp2.0.json
+++ /dev/null
@@ -1 +0,0 @@
-{"Format":1,"ProjectReferences":[],"MetadataReferences":[{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/Microsoft.CSharp.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.testplatform.testhost/16.2.0/lib/netstandard1.5/Microsoft.TestPlatform.CommunicationUtilities.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.testplatform.objectmodel/16.2.0/lib/netstandard1.5/Microsoft.TestPlatform.CoreUtilities.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.testplatform.testhost/16.2.0/lib/netstandard1.5/Microsoft.TestPlatform.CrossPlatEngine.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.testplatform.objectmodel/16.2.0/lib/netstandard1.5/Microsoft.TestPlatform.PlatformAbstractions.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.testplatform.testhost/16.2.0/lib/netstandard1.5/Microsoft.TestPlatform.Utilities.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/Microsoft.VisualBasic.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.codecoverage/16.2.0/lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.testplatform.testhost/16.2.0/lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.Common.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.testplatform.objectmodel/16.2.0/lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/mstest.testframework/2.0.0/lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/mstest.testframework/2.0.0/lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/Microsoft.Win32.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/mscorlib.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/netstandard.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/newtonsoft.json/13.0.2/lib/netstandard2.0/Newtonsoft.Json.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.AppContext.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Buffers.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Collections.Concurrent.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Collections.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Collections.Immutable.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Collections.NonGeneric.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Collections.Specialized.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.ComponentModel.Annotations.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.ComponentModel.Composition.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.ComponentModel.DataAnnotations.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.ComponentModel.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.ComponentModel.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.ComponentModel.TypeConverter.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Configuration.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Console.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Core.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Data.Common.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Data.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.Contracts.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.Debug.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.Process.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.StackTrace.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.Tools.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.TraceSource.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.Tracing.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Drawing.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Drawing.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Dynamic.Runtime.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Globalization.Calendars.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Globalization.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Globalization.Extensions.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.Compression.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.Compression.FileSystem.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.Compression.ZipFile.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.FileSystem.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.FileSystem.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.FileSystem.Watcher.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.IsolatedStorage.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.MemoryMappedFiles.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.Pipes.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Linq.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Linq.Expressions.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Linq.Parallel.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Linq.Queryable.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.Http.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.HttpListener.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.Mail.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.NameResolution.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.NetworkInformation.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.Ping.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.Requests.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.Security.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.ServicePoint.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.Sockets.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.WebClient.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.WebHeaderCollection.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.WebProxy.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.WebSockets.Client.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.WebSockets.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Numerics.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Numerics.Vectors.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.ObjectModel.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.DispatchProxy.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.Emit.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.Extensions.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.Metadata.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.TypeExtensions.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Resources.Reader.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Resources.ResourceManager.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Resources.Writer.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.Extensions.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.Handles.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.InteropServices.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.Loader.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.Numerics.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.Serialization.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.Serialization.Json.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.Serialization.Xml.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Security.Claims.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Security.Cryptography.Csp.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Security.Cryptography.Encoding.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Security.Cryptography.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Security.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Security.Principal.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Security.SecureString.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.ServiceModel.Web.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.ServiceProcess.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Text.Encoding.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Text.Encoding.Extensions.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Text.RegularExpressions.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Threading.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Threading.Overlapped.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Threading.Tasks.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Threading.Tasks.Extensions.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Threading.Tasks.Parallel.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Threading.Thread.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Threading.ThreadPool.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Threading.Timer.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Transactions.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Transactions.Local.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.ValueTuple.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Web.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Web.HttpUtility.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Windows.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Xml.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Xml.Linq.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Xml.ReaderWriter.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Xml.Serialization.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Xml.XDocument.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Xml.XmlDocument.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Xml.XmlSerializer.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Xml.XPath.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Xml.XPath.XDocument.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/system.xml.xpath.xmldocument/4.0.1/ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.testplatform.testhost/16.2.0/lib/netstandard1.5/testhost.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/amanalam/.nuget/packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/WindowsBase.dll","Aliases":[],"Framework":null}],"Files":["/Users/amanalam/src/sdk_dotnet/tests/BalanceTest.cs","/Users/amanalam/src/sdk_dotnet/tests/BatchTest.cs","/Users/amanalam/src/sdk_dotnet/tests/config.cs","/Users/amanalam/src/sdk_dotnet/tests/PaymentTest.cs","/Users/amanalam/src/sdk_dotnet/tests/RecipientTest.cs","/Users/amanalam/.nuget/packages/microsoft.net.test.sdk/16.2.0/build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.cs","/Users/amanalam/src/sdk_dotnet/tests/obj/Debug/netcoreapp2.0/.NETCoreApp,Version=v2.0.AssemblyAttributes.cs","/Users/amanalam/src/sdk_dotnet/tests/obj/Debug/netcoreapp2.0/tests.AssemblyInfo.cs","/Users/amanalam/.nuget/packages/mstest.testadapter/2.0.0/build/_common/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll","/Users/amanalam/.nuget/packages/mstest.testadapter/2.0.0/build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll","/Users/amanalam/.nuget/packages/mstest.testadapter/2.0.0/build/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll","/Users/amanalam/src/sdk_dotnet/tests/obj/Debug/netcoreapp2.0/tests.AssemblyInfo.cs","/Users/amanalam/src/sdk_dotnet/tests/obj/Debug/netcoreapp2.0/tests.AssemblyInfo.cs","/Users/amanalam/src/sdk_dotnet/tests/obj/Debug/netcoreapp2.0/tests.AssemblyInfo.cs"],"BuildActions":["Compile","Compile","Compile","Compile","Compile","Compile","Compile","Compile","Content","Content","Content","Compile","Compile","Compile"],"Analyzers":[],"AdditionalFiles":[],"EditorConfigFiles":["/Users/amanalam/src/sdk_dotnet/tests/obj/Debug/netcoreapp2.0/tests.GeneratedMSBuildEditorConfig.editorconfig"],"DefineConstants":["TRACE","DEBUG","NETCOREAPP","NETCOREAPP2_0","","NETCOREAPP1_0_OR_GREATER","NETCOREAPP1_1_OR_GREATER","NETCOREAPP2_0_OR_GREATER"],"IntermediateAssembly":"/Users/amanalam/src/sdk_dotnet/tests/obj/Debug/netcoreapp2.0/tests.dll"}
\ No newline at end of file
diff --git a/tests/BalanceTest.cs b/tests/BalanceTest.cs
index 131d72c..1aaa3e0 100644
--- a/tests/BalanceTest.cs
+++ b/tests/BalanceTest.cs
@@ -15,7 +15,7 @@ public class BalanceTest
public void Init()
{
Config config = new Config();
- gateway = new Trolley.Gateway(config.ACCESS_KEY, config.SECRET_KEY);
+ gateway = new Trolley.Gateway(config.ACCESS_KEY, config.SECRET_KEY, config.BASE_URL);
}
[TestMethod]
diff --git a/tests/BatchTest.cs b/tests/BatchTest.cs
index 568126e..c8de637 100644
--- a/tests/BatchTest.cs
+++ b/tests/BatchTest.cs
@@ -15,7 +15,7 @@ public class BatchTest
public void Init()
{
Config config = new Config();
- gateway = new Trolley.Gateway(config.ACCESS_KEY, config.SECRET_KEY);
+ gateway = new Trolley.Gateway(config.ACCESS_KEY, config.SECRET_KEY, config.BASE_URL);
}
private Recipient createRecipient()
diff --git a/tests/InvoiceTest.cs b/tests/InvoiceTest.cs
index abf0bae..abe46cb 100644
--- a/tests/InvoiceTest.cs
+++ b/tests/InvoiceTest.cs
@@ -18,7 +18,7 @@ public class InvoiceTest
public void Init()
{
Config config = new Config();
- gateway = new Trolley.Gateway(config.ACCESS_KEY, config.SECRET_KEY);
+ gateway = new Trolley.Gateway(config.ACCESS_KEY, config.SECRET_KEY, config.BASE_URL);
}
public TestContext TestContext
diff --git a/tests/OfflinePaymentTest.cs b/tests/OfflinePaymentTest.cs
index dcfc1da..d5edd1e 100644
--- a/tests/OfflinePaymentTest.cs
+++ b/tests/OfflinePaymentTest.cs
@@ -17,7 +17,7 @@ public class OfflinePaymentTest
public void Init()
{
Config config = new Config();
- gateway = new Trolley.Gateway(config.ACCESS_KEY, config.SECRET_KEY);
+ gateway = new Trolley.Gateway(config.ACCESS_KEY, config.SECRET_KEY, config.BASE_URL);
}
public TestContext TestContext
diff --git a/tests/PaymentTest.cs b/tests/PaymentTest.cs
index 760cd5c..fa8de47 100644
--- a/tests/PaymentTest.cs
+++ b/tests/PaymentTest.cs
@@ -18,7 +18,7 @@ public class PaymentTest
public void Init()
{
Config config = new Config();
- trolley = new Trolley.Gateway(config.ACCESS_KEY, config.SECRET_KEY);
+ trolley = new Trolley.Gateway(config.ACCESS_KEY, config.SECRET_KEY, config.BASE_URL);
}
public TestContext TestContext
diff --git a/tests/RecipientTest.cs b/tests/RecipientTest.cs
index 1528140..77c5a62 100644
--- a/tests/RecipientTest.cs
+++ b/tests/RecipientTest.cs
@@ -19,7 +19,7 @@ public class RecipientTest
public void Init()
{
config = new Config();
- gateway = new Trolley.Gateway(config.ACCESS_KEY, config.SECRET_KEY);
+ gateway = new Trolley.Gateway(config.ACCESS_KEY, config.SECRET_KEY, config.BASE_URL);
}
[TestMethod]
diff --git a/tests/bin/Debug/netcoreapp2.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll b/tests/bin/Debug/netcoreapp2.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll
deleted file mode 100755
index bae80db..0000000
Binary files a/tests/bin/Debug/netcoreapp2.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll and /dev/null differ
diff --git a/tests/bin/Debug/netcoreapp2.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll b/tests/bin/Debug/netcoreapp2.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll
deleted file mode 100755
index 74a8172..0000000
Binary files a/tests/bin/Debug/netcoreapp2.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll and /dev/null differ
diff --git a/tests/bin/Debug/netcoreapp2.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll b/tests/bin/Debug/netcoreapp2.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll
deleted file mode 100755
index fba5ffb..0000000
Binary files a/tests/bin/Debug/netcoreapp2.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll and /dev/null differ
diff --git a/tests/bin/Debug/netcoreapp2.0/tests.deps.json b/tests/bin/Debug/netcoreapp2.0/tests.deps.json
deleted file mode 100644
index bfff2cf..0000000
--- a/tests/bin/Debug/netcoreapp2.0/tests.deps.json
+++ /dev/null
@@ -1,1319 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v2.0",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v2.0": {
- "tests/1.0.0": {
- "dependencies": {
- "MSTest.TestAdapter": "2.0.0",
- "MSTest.TestFramework": "2.0.0",
- "Microsoft.NET.Test.Sdk": "16.2.0",
- "Trolley.NetCore.SDK": "1.0.10",
- "coverlet.collector": "1.0.1",
- "Trolley": "1.0.2.0"
- },
- "runtime": {
- "tests.dll": {}
- }
- },
- "coverlet.collector/1.0.1": {},
- "Microsoft.CodeCoverage/16.2.0": {
- "runtime": {
- "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "16.0.28223.3002"
- }
- }
- },
- "Microsoft.NET.Test.Sdk/16.2.0": {
- "dependencies": {
- "Microsoft.CodeCoverage": "16.2.0",
- "Microsoft.TestPlatform.TestHost": "16.2.0"
- }
- },
- "Microsoft.NETCore.Targets/1.1.0": {},
- "Microsoft.TestPlatform.ObjectModel/16.2.0": {
- "dependencies": {
- "System.ComponentModel.EventBasedAsync": "4.0.11",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Diagnostics.Process": "4.1.0",
- "System.Diagnostics.TextWriterTraceListener": "4.3.0",
- "System.Diagnostics.TraceSource": "4.3.0",
- "System.Reflection.Metadata": "1.3.0",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Runtime.Loader": "4.0.0",
- "System.Runtime.Serialization.Json": "4.0.2",
- "System.Runtime.Serialization.Primitives": "4.1.1",
- "System.Threading.Thread": "4.0.0",
- "System.Xml.XPath.XmlDocument": "4.0.1"
- },
- "runtime": {
- "lib/netstandard1.5/Microsoft.TestPlatform.CoreUtilities.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "15.0.0.0"
- },
- "lib/netstandard1.5/Microsoft.TestPlatform.PlatformAbstractions.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "15.0.0.0"
- },
- "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "15.0.0.0"
- }
- },
- "resources": {
- "lib/netstandard1.5/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "cs"
- },
- "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "cs"
- },
- "lib/netstandard1.5/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "de"
- },
- "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "de"
- },
- "lib/netstandard1.5/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "es"
- },
- "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "es"
- },
- "lib/netstandard1.5/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "fr"
- },
- "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "fr"
- },
- "lib/netstandard1.5/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "it"
- },
- "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "it"
- },
- "lib/netstandard1.5/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "ja"
- },
- "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "ja"
- },
- "lib/netstandard1.5/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "ko"
- },
- "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "ko"
- },
- "lib/netstandard1.5/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "pl"
- },
- "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "pl"
- },
- "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netstandard1.5/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "ru"
- },
- "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "ru"
- },
- "lib/netstandard1.5/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "tr"
- },
- "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "tr"
- },
- "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "zh-Hant"
- },
- "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.TestPlatform.TestHost/16.2.0": {
- "dependencies": {
- "Microsoft.TestPlatform.ObjectModel": "16.2.0",
- "Newtonsoft.Json": "13.0.2"
- },
- "runtime": {
- "lib/netstandard1.5/Microsoft.TestPlatform.CommunicationUtilities.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "15.0.0.0"
- },
- "lib/netstandard1.5/Microsoft.TestPlatform.CrossPlatEngine.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "15.0.0.0"
- },
- "lib/netstandard1.5/Microsoft.TestPlatform.Utilities.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "15.0.0.0"
- },
- "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.Common.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "15.0.0.0"
- },
- "lib/netstandard1.5/testhost.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "15.0.0.0"
- }
- },
- "resources": {
- "lib/netstandard1.5/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "cs"
- },
- "lib/netstandard1.5/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "cs"
- },
- "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "cs"
- },
- "lib/netstandard1.5/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "de"
- },
- "lib/netstandard1.5/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "de"
- },
- "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "de"
- },
- "lib/netstandard1.5/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "es"
- },
- "lib/netstandard1.5/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "es"
- },
- "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "es"
- },
- "lib/netstandard1.5/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "fr"
- },
- "lib/netstandard1.5/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "fr"
- },
- "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "fr"
- },
- "lib/netstandard1.5/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "it"
- },
- "lib/netstandard1.5/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "it"
- },
- "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "it"
- },
- "lib/netstandard1.5/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "ja"
- },
- "lib/netstandard1.5/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "ja"
- },
- "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "ja"
- },
- "lib/netstandard1.5/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "ko"
- },
- "lib/netstandard1.5/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "ko"
- },
- "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "ko"
- },
- "lib/netstandard1.5/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "pl"
- },
- "lib/netstandard1.5/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "pl"
- },
- "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "pl"
- },
- "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netstandard1.5/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "ru"
- },
- "lib/netstandard1.5/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "ru"
- },
- "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "ru"
- },
- "lib/netstandard1.5/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "tr"
- },
- "lib/netstandard1.5/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "tr"
- },
- "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "tr"
- },
- "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "zh-Hant"
- },
- "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "zh-Hant"
- },
- "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Win32.Primitives/4.0.1": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "Microsoft.Win32.Registry/4.0.0": {
- "dependencies": {
- "System.Collections": "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.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0"
- }
- },
- "MSTest.TestAdapter/2.0.0": {
- "dependencies": {
- "System.Diagnostics.TextWriterTraceListener": "4.3.0"
- }
- },
- "MSTest.TestFramework/2.0.0": {
- "runtime": {
- "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": {
- "assemblyVersion": "14.0.0.0",
- "fileVersion": "14.0.3930.6"
- },
- "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": {
- "assemblyVersion": "14.0.0.0",
- "fileVersion": "14.0.3930.6"
- }
- }
- },
- "Newtonsoft.Json/13.0.2": {
- "runtime": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {
- "assemblyVersion": "13.0.0.0",
- "fileVersion": "13.0.2.27524"
- }
- }
- },
- "runtime.native.System/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "System.Collections/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Collections.Concurrent/4.0.12": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.Tracing": "4.1.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/1.2.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Linq": "4.1.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.NonGeneric/4.0.1": {
- "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/4.0.1": {
- "dependencies": {
- "System.Collections.NonGeneric": "4.0.1",
- "System.Globalization": "4.3.0",
- "System.Globalization.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- }
- },
- "System.ComponentModel/4.0.1": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- }
- },
- "System.ComponentModel.EventBasedAsync/4.0.11": {
- "dependencies": {
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.ComponentModel.Primitives/4.1.0": {
- "dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.ComponentModel.TypeConverter/4.1.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Collections.NonGeneric": "4.0.1",
- "System.Collections.Specialized": "4.0.1",
- "System.ComponentModel": "4.0.1",
- "System.ComponentModel.Primitives": "4.1.0",
- "System.Globalization": "4.3.0",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- }
- },
- "System.Diagnostics.Debug/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Diagnostics.Process/4.1.0": {
- "dependencies": {
- "Microsoft.Win32.Primitives": "4.0.1",
- "Microsoft.Win32.Registry": "4.0.0",
- "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.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Threading.Thread": "4.0.0",
- "System.Threading.ThreadPool": "4.0.10",
- "runtime.native.System": "4.3.0"
- }
- },
- "System.Diagnostics.TextWriterTraceListener/4.3.0": {
- "dependencies": {
- "System.Diagnostics.TraceSource": "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.Diagnostics.TraceSource/4.3.0": {
- "dependencies": {
- "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/4.1.0": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Globalization/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Globalization.Extensions/4.0.1": {
- "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.InteropServices": "4.1.0"
- }
- },
- "System.IO/4.3.0": {
- "dependencies": {
- "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.FileSystem/4.0.1": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Text.Encoding": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.IO.FileSystem.Primitives/4.0.1": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- }
- },
- "System.Linq/4.1.0": {
- "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.Private.DataContractSerialization/4.1.1": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Emit.Lightweight": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Serialization.Primitives": "4.1.1",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Xml.ReaderWriter": "4.0.11",
- "System.Xml.XmlDocument": "4.0.1",
- "System.Xml.XmlSerializer": "4.0.11"
- }
- },
- "System.Reflection/4.3.0": {
- "dependencies": {
- "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/4.0.1": {
- "dependencies": {
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Emit.ILGeneration/4.0.1": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Emit.Lightweight/4.0.1": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Extensions/4.0.1": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Metadata/1.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Collections.Immutable": "1.2.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.IO": "4.3.0",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Extensions": "4.0.1",
- "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.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Threading": "4.3.0"
- }
- },
- "System.Reflection.Primitives/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.TypeExtensions/4.1.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Resources.ResourceManager/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "System.Runtime.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime.Handles/4.0.1": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime.InteropServices/4.1.0": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.0.1"
- }
- },
- "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.3.0",
- "runtime.native.System": "4.3.0"
- }
- },
- "System.Runtime.Loader/4.0.0": {
- "dependencies": {
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime.Serialization.Json/4.0.2": {
- "dependencies": {
- "System.IO": "4.3.0",
- "System.Private.DataContractSerialization": "4.1.1",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime.Serialization.Primitives/4.1.1": {
- "dependencies": {
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Text.Encoding/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Text.Encoding.Extensions/4.0.11": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Text.Encoding": "4.3.0"
- }
- },
- "System.Text.RegularExpressions/4.1.0": {
- "dependencies": {
- "System.Collections": "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.Threading/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.Threading.Tasks/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Threading.Tasks.Extensions/4.0.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.Threading.Thread/4.0.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- }
- },
- "System.Threading.ThreadPool/4.0.10": {
- "dependencies": {
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.0.1"
- }
- },
- "System.Xml.ReaderWriter/4.0.11": {
- "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.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Threading.Tasks.Extensions": "4.0.0"
- }
- },
- "System.Xml.XmlDocument/4.0.1": {
- "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.0.11"
- }
- },
- "System.Xml.XmlSerializer/4.0.11": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit": "4.0.1",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.3.0",
- "System.Xml.ReaderWriter": "4.0.11",
- "System.Xml.XmlDocument": "4.0.1"
- }
- },
- "System.Xml.XPath/4.0.1": {
- "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.Threading": "4.3.0",
- "System.Xml.ReaderWriter": "4.0.11"
- }
- },
- "System.Xml.XPath.XmlDocument/4.0.1": {
- "dependencies": {
- "System.Collections": "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.Threading": "4.3.0",
- "System.Xml.ReaderWriter": "4.0.11",
- "System.Xml.XPath": "4.0.1",
- "System.Xml.XmlDocument": "4.0.1"
- },
- "runtime": {
- "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "1.0.24212.1"
- }
- }
- },
- "Trolley.NetCore.SDK/1.0.10": {
- "dependencies": {
- "Newtonsoft.Json": "13.0.2"
- },
- "runtime": {
- "Trolley.dll": {}
- }
- },
- "Trolley/1.0.2.0": {
- "runtime": {
- "Trolley.dll": {
- "assemblyVersion": "1.0.2.0",
- "fileVersion": "1.0.2.0"
- }
- }
- }
- }
- },
- "libraries": {
- "tests/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "coverlet.collector/1.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-RAuno8s7DBGo2IdV/1d8YSnXMd/728K3PBT5R6/kfGx1yunBZmavlaFQfhGe7Q7N2nUMkvVET+7ITn3+KSg+Uw==",
- "path": "coverlet.collector/1.0.1",
- "hashPath": "coverlet.collector.1.0.1.nupkg.sha512"
- },
- "Microsoft.CodeCoverage/16.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-fKiUOhhMP3IN1qM2tDHPWzW4JRbriFkIPiIzKUwMWT+Q+80bycxkLLCvxmVFoeA7gvWegNbTUjaX7mL3MM9XKg==",
- "path": "microsoft.codecoverage/16.2.0",
- "hashPath": "microsoft.codecoverage.16.2.0.nupkg.sha512"
- },
- "Microsoft.NET.Test.Sdk/16.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-56w1drIQqpMgg3IxHcfra/jXOngiD4pbl0j6TNeJMlOQGlZ8wCMlyRTvn6Crd/FgGjwKbWLurdOHNGrfzLtl6A==",
- "path": "microsoft.net.test.sdk/16.2.0",
- "hashPath": "microsoft.net.test.sdk.16.2.0.nupkg.sha512"
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
- "path": "microsoft.netcore.targets/1.1.0",
- "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
- },
- "Microsoft.TestPlatform.ObjectModel/16.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-RAyBf87uZ5XjRE953LlxqILpD1SqwQM6bXwxPUCAPPEy0uv12R+eKnFL7yaeLVHInMKkNNh1iD/cDOVDfSgllA==",
- "path": "microsoft.testplatform.objectmodel/16.2.0",
- "hashPath": "microsoft.testplatform.objectmodel.16.2.0.nupkg.sha512"
- },
- "Microsoft.TestPlatform.TestHost/16.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PogSQ40KgkZjEBdC6KBGpMtuvFFCIdoJAMmK7CAHWyTXCfN1cPN8j0TFJKh+LneSg+y0QQDP23STMF609KhHQw==",
- "path": "microsoft.testplatform.testhost/16.2.0",
- "hashPath": "microsoft.testplatform.testhost.16.2.0.nupkg.sha512"
- },
- "Microsoft.Win32.Primitives/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==",
- "path": "microsoft.win32.primitives/4.0.1",
- "hashPath": "microsoft.win32.primitives.4.0.1.nupkg.sha512"
- },
- "Microsoft.Win32.Registry/4.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-q+eLtROUAQ3OxYA5mpQrgyFgzLQxIyrfT2eLpYX5IEPlHmIio2nh4F5bgOaQoGOV865kFKZZso9Oq9RlazvXtg==",
- "path": "microsoft.win32.registry/4.0.0",
- "hashPath": "microsoft.win32.registry.4.0.0.nupkg.sha512"
- },
- "MSTest.TestAdapter/2.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VoXDhx+a/44RmQYpkrYWe3D6AP6kjqibe02NOj1t8Zn9uo8e90gXW22SYj3geEwNTcEdMg2XMq0SI2P0Fl2Trw==",
- "path": "mstest.testadapter/2.0.0",
- "hashPath": "mstest.testadapter.2.0.0.nupkg.sha512"
- },
- "MSTest.TestFramework/2.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-gDlwhzIqdhUB+tirA80c6jUnlAsWBl2RXsKwmCbeZ1XkTjufrZIrBs7cvBdxbzddAEFOZuqfeCHJK/rp0vloZg==",
- "path": "mstest.testframework/2.0.0",
- "hashPath": "mstest.testframework.2.0.0.nupkg.sha512"
- },
- "Newtonsoft.Json/13.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-R2pZ3B0UjeyHShm9vG+Tu0EBb2lC8b0dFzV9gVn50ofHXh9Smjk6kTn7A/FdAsC8B5cKib1OnGYOXxRBz5XQDg==",
- "path": "newtonsoft.json/13.0.2",
- "hashPath": "newtonsoft.json.13.0.2.nupkg.sha512"
- },
- "runtime.native.System/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
- "path": "runtime.native.system/4.3.0",
- "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
- },
- "System.Collections/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
- "path": "system.collections/4.3.0",
- "hashPath": "system.collections.4.3.0.nupkg.sha512"
- },
- "System.Collections.Concurrent/4.0.12": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==",
- "path": "system.collections.concurrent/4.0.12",
- "hashPath": "system.collections.concurrent.4.0.12.nupkg.sha512"
- },
- "System.Collections.Immutable/1.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Cma8cBW6di16ZLibL8LYQ+cLjGzoKxpOTu/faZfDcx94ZjAGq6Nv5RO7+T1YZXqEXTZP9rt1wLVEONVpURtUqw==",
- "path": "system.collections.immutable/1.2.0",
- "hashPath": "system.collections.immutable.1.2.0.nupkg.sha512"
- },
- "System.Collections.NonGeneric/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hMxFT2RhhlffyCdKLDXjx8WEC5JfCvNozAZxCablAuFRH74SCV4AgzE8yJCh/73bFnEoZgJ9MJmkjQ0dJmnKqA==",
- "path": "system.collections.nongeneric/4.0.1",
- "hashPath": "system.collections.nongeneric.4.0.1.nupkg.sha512"
- },
- "System.Collections.Specialized/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/HKQyVP0yH1I0YtK7KJL/28snxHNH/bi+0lgk/+MbURF6ULhAE31MDI+NZDerNWu264YbxklXCCygISgm+HMug==",
- "path": "system.collections.specialized/4.0.1",
- "hashPath": "system.collections.specialized.4.0.1.nupkg.sha512"
- },
- "System.ComponentModel/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==",
- "path": "system.componentmodel/4.0.1",
- "hashPath": "system.componentmodel.4.0.1.nupkg.sha512"
- },
- "System.ComponentModel.EventBasedAsync/4.0.11": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Z7SO6vvQIR84daPE4uhaNdef9CjgjDMGYkas8epUhf0U3WGuaGgZ0Mm4QuNycMdbHUY8KEdZrtgxonkAiJaAlA==",
- "path": "system.componentmodel.eventbasedasync/4.0.11",
- "hashPath": "system.componentmodel.eventbasedasync.4.0.11.nupkg.sha512"
- },
- "System.ComponentModel.Primitives/4.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-sc/7eVCdxPrp3ljpgTKVaQGUXiW05phNWvtv/m2kocXqrUQvTVWKou1Edas2aDjTThLPZOxPYIGNb/HN0QjURg==",
- "path": "system.componentmodel.primitives/4.1.0",
- "hashPath": "system.componentmodel.primitives.4.1.0.nupkg.sha512"
- },
- "System.ComponentModel.TypeConverter/4.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-MnDAlaeJZy9pdB5ZdOlwdxfpI+LJQ6e0hmH7d2+y2LkiD8DRJynyDYl4Xxf3fWFm7SbEwBZh4elcfzONQLOoQw==",
- "path": "system.componentmodel.typeconverter/4.1.0",
- "hashPath": "system.componentmodel.typeconverter.4.1.0.nupkg.sha512"
- },
- "System.Diagnostics.Debug/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
- "path": "system.diagnostics.debug/4.3.0",
- "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.Process/4.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==",
- "path": "system.diagnostics.process/4.1.0",
- "hashPath": "system.diagnostics.process.4.1.0.nupkg.sha512"
- },
- "System.Diagnostics.TextWriterTraceListener/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-F11kHWeiwYjFWto+kr8tt9ULMH0k8MsT1XmdCGPTLYHhWgN+2g7JsIZiXDrxlFGccSNkbjfwQy4xIS38gzUiZA==",
- "path": "system.diagnostics.textwritertracelistener/4.3.0",
- "hashPath": "system.diagnostics.textwritertracelistener.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.TraceSource/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==",
- "path": "system.diagnostics.tracesource/4.3.0",
- "hashPath": "system.diagnostics.tracesource.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.Tracing/4.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==",
- "path": "system.diagnostics.tracing/4.1.0",
- "hashPath": "system.diagnostics.tracing.4.1.0.nupkg.sha512"
- },
- "System.Globalization/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
- "path": "system.globalization/4.3.0",
- "hashPath": "system.globalization.4.3.0.nupkg.sha512"
- },
- "System.Globalization.Extensions/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==",
- "path": "system.globalization.extensions/4.0.1",
- "hashPath": "system.globalization.extensions.4.0.1.nupkg.sha512"
- },
- "System.IO/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
- "path": "system.io/4.3.0",
- "hashPath": "system.io.4.3.0.nupkg.sha512"
- },
- "System.IO.FileSystem/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
- "path": "system.io.filesystem/4.0.1",
- "hashPath": "system.io.filesystem.4.0.1.nupkg.sha512"
- },
- "System.IO.FileSystem.Primitives/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
- "path": "system.io.filesystem.primitives/4.0.1",
- "hashPath": "system.io.filesystem.primitives.4.0.1.nupkg.sha512"
- },
- "System.Linq/4.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==",
- "path": "system.linq/4.1.0",
- "hashPath": "system.linq.4.1.0.nupkg.sha512"
- },
- "System.Private.DataContractSerialization/4.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lcqFBUaCZxPiUkA4dlSOoPZGtZsAuuElH2XHgLwGLxd7ZozWetV5yiz0qGAV2AUYOqw97MtZBjbLMN16Xz4vXA==",
- "path": "system.private.datacontractserialization/4.1.1",
- "hashPath": "system.private.datacontractserialization.4.1.1.nupkg.sha512"
- },
- "System.Reflection/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
- "path": "system.reflection/4.3.0",
- "hashPath": "system.reflection.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==",
- "path": "system.reflection.emit/4.0.1",
- "hashPath": "system.reflection.emit.4.0.1.nupkg.sha512"
- },
- "System.Reflection.Emit.ILGeneration/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==",
- "path": "system.reflection.emit.ilgeneration/4.0.1",
- "hashPath": "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512"
- },
- "System.Reflection.Emit.Lightweight/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
- "path": "system.reflection.emit.lightweight/4.0.1",
- "hashPath": "system.reflection.emit.lightweight.4.0.1.nupkg.sha512"
- },
- "System.Reflection.Extensions/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==",
- "path": "system.reflection.extensions/4.0.1",
- "hashPath": "system.reflection.extensions.4.0.1.nupkg.sha512"
- },
- "System.Reflection.Metadata/1.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jMSCxA4LSyKBGRDm/WtfkO03FkcgRzHxwvQRib1bm2GZ8ifKM1MX1al6breGCEQK280mdl9uQS7JNPXRYk90jw==",
- "path": "system.reflection.metadata/1.3.0",
- "hashPath": "system.reflection.metadata.1.3.0.nupkg.sha512"
- },
- "System.Reflection.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
- "path": "system.reflection.primitives/4.3.0",
- "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
- },
- "System.Reflection.TypeExtensions/4.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==",
- "path": "system.reflection.typeextensions/4.1.0",
- "hashPath": "system.reflection.typeextensions.4.1.0.nupkg.sha512"
- },
- "System.Resources.ResourceManager/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
- "path": "system.resources.resourcemanager/4.3.0",
- "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
- },
- "System.Runtime/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
- "path": "system.runtime/4.3.0",
- "hashPath": "system.runtime.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
- "path": "system.runtime.extensions/4.3.0",
- "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Handles/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==",
- "path": "system.runtime.handles/4.0.1",
- "hashPath": "system.runtime.handles.4.0.1.nupkg.sha512"
- },
- "System.Runtime.InteropServices/4.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==",
- "path": "system.runtime.interopservices/4.1.0",
- "hashPath": "system.runtime.interopservices.4.1.0.nupkg.sha512"
- },
- "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==",
- "path": "system.runtime.interopservices.runtimeinformation/4.0.0",
- "hashPath": "system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512"
- },
- "System.Runtime.Loader/4.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==",
- "path": "system.runtime.loader/4.0.0",
- "hashPath": "system.runtime.loader.4.0.0.nupkg.sha512"
- },
- "System.Runtime.Serialization.Json/4.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+7DIJhnKYgCzUgcLbVTtRQb2l1M0FP549XFlFkQM5lmNiUBl44AfNbx4bz61xA8PzLtlYwfmif4JJJW7MPPnjg==",
- "path": "system.runtime.serialization.json/4.0.2",
- "hashPath": "system.runtime.serialization.json.4.0.2.nupkg.sha512"
- },
- "System.Runtime.Serialization.Primitives/4.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==",
- "path": "system.runtime.serialization.primitives/4.1.1",
- "hashPath": "system.runtime.serialization.primitives.4.1.1.nupkg.sha512"
- },
- "System.Text.Encoding/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
- "path": "system.text.encoding/4.3.0",
- "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
- },
- "System.Text.Encoding.Extensions/4.0.11": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
- "path": "system.text.encoding.extensions/4.0.11",
- "hashPath": "system.text.encoding.extensions.4.0.11.nupkg.sha512"
- },
- "System.Text.RegularExpressions/4.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==",
- "path": "system.text.regularexpressions/4.1.0",
- "hashPath": "system.text.regularexpressions.4.1.0.nupkg.sha512"
- },
- "System.Threading/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
- "path": "system.threading/4.3.0",
- "hashPath": "system.threading.4.3.0.nupkg.sha512"
- },
- "System.Threading.Tasks/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
- "path": "system.threading.tasks/4.3.0",
- "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
- },
- "System.Threading.Tasks.Extensions/4.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==",
- "path": "system.threading.tasks.extensions/4.0.0",
- "hashPath": "system.threading.tasks.extensions.4.0.0.nupkg.sha512"
- },
- "System.Threading.Thread/4.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==",
- "path": "system.threading.thread/4.0.0",
- "hashPath": "system.threading.thread.4.0.0.nupkg.sha512"
- },
- "System.Threading.ThreadPool/4.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==",
- "path": "system.threading.threadpool/4.0.10",
- "hashPath": "system.threading.threadpool.4.0.10.nupkg.sha512"
- },
- "System.Xml.ReaderWriter/4.0.11": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==",
- "path": "system.xml.readerwriter/4.0.11",
- "hashPath": "system.xml.readerwriter.4.0.11.nupkg.sha512"
- },
- "System.Xml.XmlDocument/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==",
- "path": "system.xml.xmldocument/4.0.1",
- "hashPath": "system.xml.xmldocument.4.0.1.nupkg.sha512"
- },
- "System.Xml.XmlSerializer/4.0.11": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw==",
- "path": "system.xml.xmlserializer/4.0.11",
- "hashPath": "system.xml.xmlserializer.4.0.11.nupkg.sha512"
- },
- "System.Xml.XPath/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==",
- "path": "system.xml.xpath/4.0.1",
- "hashPath": "system.xml.xpath.4.0.1.nupkg.sha512"
- },
- "System.Xml.XPath.XmlDocument/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Zm2BdeanuncYs3NhCj4c9e1x3EXFzFBVv2wPEc/Dj4ZbI9R8ecLSR5frAsx4zJCPBtKQreQ7Q/KxJEohJZbfzA==",
- "path": "system.xml.xpath.xmldocument/4.0.1",
- "hashPath": "system.xml.xpath.xmldocument.4.0.1.nupkg.sha512"
- },
- "Trolley.NetCore.SDK/1.0.10": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "Trolley/1.0.2.0": {
- "type": "reference",
- "serviceable": false,
- "sha512": ""
- }
- }
-}
\ No newline at end of file
diff --git a/tests/bin/Debug/netcoreapp2.0/tests.dll b/tests/bin/Debug/netcoreapp2.0/tests.dll
deleted file mode 100644
index a209820..0000000
Binary files a/tests/bin/Debug/netcoreapp2.0/tests.dll and /dev/null differ
diff --git a/tests/bin/Debug/netcoreapp2.0/tests.pdb b/tests/bin/Debug/netcoreapp2.0/tests.pdb
deleted file mode 100644
index cfc0641..0000000
Binary files a/tests/bin/Debug/netcoreapp2.0/tests.pdb and /dev/null differ
diff --git a/tests/bin/Debug/netcoreapp2.0/tests.runtimeconfig.dev.json b/tests/bin/Debug/netcoreapp2.0/tests.runtimeconfig.dev.json
deleted file mode 100644
index c15a8b3..0000000
--- a/tests/bin/Debug/netcoreapp2.0/tests.runtimeconfig.dev.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "runtimeOptions": {
- "additionalProbingPaths": [
- "/Users/amanalam/.dotnet/store/|arch|/|tfm|",
- "/Users/amanalam/.nuget/packages"
- ]
- }
-}
\ No newline at end of file
diff --git a/tests/bin/Debug/netcoreapp2.0/tests.runtimeconfig.json b/tests/bin/Debug/netcoreapp2.0/tests.runtimeconfig.json
deleted file mode 100644
index 7539019..0000000
--- a/tests/bin/Debug/netcoreapp2.0/tests.runtimeconfig.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "runtimeOptions": {
- "tfm": "netcoreapp2.0",
- "framework": {
- "name": "Microsoft.NETCore.App",
- "version": "2.0.0"
- }
- }
-}
\ No newline at end of file
diff --git a/tests/bin/Debug/netstandard1.3/tests.deps.json b/tests/bin/Debug/netstandard1.3/tests.deps.json
deleted file mode 100644
index 29e3367..0000000
--- a/tests/bin/Debug/netstandard1.3/tests.deps.json
+++ /dev/null
@@ -1,1398 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETStandard,Version=v1.3/",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETStandard,Version=v1.3": {},
- ".NETStandard,Version=v1.3/": {
- "tests/1.0.0": {
- "dependencies": {
- "MSTest.TestAdapter": "2.0.0",
- "MSTest.TestFramework": "2.0.0",
- "Microsoft.NET.Test.Sdk": "16.2.0",
- "NETStandard.Library": "1.6.1",
- "Trolley.NetCore.SDK": "1.0.10",
- "coverlet.collector": "1.0.1",
- "Trolley": "1.0.2.0"
- },
- "runtime": {
- "tests.dll": {}
- }
- },
- "coverlet.collector/1.0.1": {},
- "Microsoft.CSharp/4.3.0": {
- "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"
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.CSharp.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "Microsoft.NET.Test.Sdk/16.2.0": {},
- "Microsoft.NETCore.Platforms/1.1.0": {},
- "Microsoft.NETCore.Targets/1.1.0": {},
- "Microsoft.Win32.Primitives/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "MSTest.TestAdapter/2.0.0": {},
- "MSTest.TestFramework/2.0.0": {
- "runtime": {
- "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": {
- "assemblyVersion": "14.0.0.0",
- "fileVersion": "14.0.3930.6"
- },
- "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": {
- "assemblyVersion": "14.0.0.0",
- "fileVersion": "14.0.3930.6"
- }
- }
- },
- "NETStandard.Library/1.6.1": {
- "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/13.0.2": {
- "dependencies": {
- "Microsoft.CSharp": "4.3.0",
- "NETStandard.Library": "1.6.1",
- "System.ComponentModel.TypeConverter": "4.3.0",
- "System.Runtime.Serialization.Formatters": "4.3.0",
- "System.Runtime.Serialization.Primitives": "4.3.0",
- "System.Xml.XmlDocument": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/Newtonsoft.Json.dll": {
- "assemblyVersion": "13.0.0.0",
- "fileVersion": "13.0.2.27524"
- }
- }
- },
- "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.native.System/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "runtime.native.System.IO.Compression/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "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/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": {},
- "System.AppContext/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- }
- },
- "System.Buffers/4.3.0": {
- "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"
- },
- "runtime": {
- "lib/netstandard1.1/System.Buffers.dll": {
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Collections/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Collections.Concurrent/4.3.0": {
- "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"
- },
- "runtime": {
- "lib/netstandard1.3/System.Collections.Concurrent.dll": {
- "assemblyVersion": "4.0.13.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.ComponentModel/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.ComponentModel.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.ComponentModel.Primitives/4.3.0": {
- "dependencies": {
- "System.ComponentModel": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.ComponentModel.TypeConverter/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.ComponentModel": "4.3.0",
- "System.ComponentModel.Primitives": "4.3.0",
- "System.Globalization": "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.Threading": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Console/4.3.0": {
- "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.Diagnostics.Debug/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Diagnostics.DiagnosticSource/4.3.0": {
- "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"
- },
- "runtime": {
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Diagnostics.Tools/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Diagnostics.Tracing/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Dynamic.Runtime/4.3.0": {
- "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"
- },
- "runtime": {
- "lib/netstandard1.3/System.Dynamic.Runtime.dll": {
- "assemblyVersion": "4.0.12.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Globalization/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Globalization.Calendars/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.IO/4.3.0": {
- "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/4.3.0": {
- "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/4.3.0": {
- "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"
- },
- "runtime": {
- "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.IO.FileSystem/4.3.0": {
- "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/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Linq/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Linq.Expressions/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Net.Http/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.Win32.Primitives": "4.3.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.IO": "4.3.0",
- "System.IO.Compression": "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.X509Certificates": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.Net.Primitives/4.3.0": {
- "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/4.3.0": {
- "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.ObjectModel/4.3.0": {
- "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"
- },
- "runtime": {
- "lib/netstandard1.3/System.ObjectModel.dll": {
- "assemblyVersion": "4.0.13.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Reflection/4.3.0": {
- "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/4.3.0": {
- "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"
- },
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Emit.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Reflection.Extensions/4.3.0": {
- "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.Primitives/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.TypeExtensions/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Resources.ResourceManager/4.3.0": {
- "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/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "System.Runtime.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime.Handles/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime.InteropServices/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- }
- },
- "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
- "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"
- },
- "runtime": {
- "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Runtime.Numerics/4.3.0": {
- "dependencies": {
- "System.Globalization": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Runtime.Numerics.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Runtime.Serialization.Formatters/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0",
- "System.Runtime.Serialization.Primitives": "4.3.0"
- }
- },
- "System.Runtime.Serialization.Primitives/4.3.0": {
- "dependencies": {
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Security.Cryptography.Algorithms/4.3.0": {
- "dependencies": {
- "System.IO": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0"
- }
- },
- "System.Security.Cryptography.Encoding/4.3.0": {
- "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.Primitives/4.3.0": {
- "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"
- },
- "runtime": {
- "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Security.Cryptography.X509Certificates/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0"
- }
- },
- "System.Text.Encoding/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Text.Encoding.Extensions/4.3.0": {
- "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.RegularExpressions/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- }
- },
- "System.Threading/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Threading.dll": {
- "assemblyVersion": "4.0.12.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Threading.Tasks/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Threading.Tasks.Extensions/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {
- "assemblyVersion": "4.1.0.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Threading.Timer/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Xml.ReaderWriter/4.3.0": {
- "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"
- },
- "runtime": {
- "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {
- "assemblyVersion": "4.1.0.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Xml.XDocument/4.3.0": {
- "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"
- },
- "runtime": {
- "lib/netstandard1.3/System.Xml.XDocument.dll": {
- "assemblyVersion": "4.0.12.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Xml.XmlDocument/4.3.0": {
- "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"
- },
- "runtime": {
- "lib/netstandard1.3/System.Xml.XmlDocument.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "Trolley.NetCore.SDK/1.0.10": {
- "dependencies": {
- "NETStandard.Library": "1.6.1",
- "Newtonsoft.Json": "13.0.2"
- },
- "runtime": {
- "Trolley.dll": {}
- }
- },
- "Trolley/1.0.2.0": {
- "runtime": {
- "Trolley.dll": {
- "assemblyVersion": "1.0.2.0",
- "fileVersion": "1.0.2.0"
- }
- }
- },
- "PaymentRails/1.0.2.0": {
- "runtime": {
- "PaymentRails.dll": {
- "assemblyVersion": "1.0.2.0",
- "fileVersion": "1.0.2.0"
- }
- }
- }
- }
- },
- "libraries": {
- "tests/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "coverlet.collector/1.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-RAuno8s7DBGo2IdV/1d8YSnXMd/728K3PBT5R6/kfGx1yunBZmavlaFQfhGe7Q7N2nUMkvVET+7ITn3+KSg+Uw==",
- "path": "coverlet.collector/1.0.1",
- "hashPath": "coverlet.collector.1.0.1.nupkg.sha512"
- },
- "Microsoft.CSharp/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
- "path": "microsoft.csharp/4.3.0",
- "hashPath": "microsoft.csharp.4.3.0.nupkg.sha512"
- },
- "Microsoft.NET.Test.Sdk/16.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-56w1drIQqpMgg3IxHcfra/jXOngiD4pbl0j6TNeJMlOQGlZ8wCMlyRTvn6Crd/FgGjwKbWLurdOHNGrfzLtl6A==",
- "path": "microsoft.net.test.sdk/16.2.0",
- "hashPath": "microsoft.net.test.sdk.16.2.0.nupkg.sha512"
- },
- "Microsoft.NETCore.Platforms/1.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
- "path": "microsoft.netcore.platforms/1.1.0",
- "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
- "path": "microsoft.netcore.targets/1.1.0",
- "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
- },
- "Microsoft.Win32.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
- "path": "microsoft.win32.primitives/4.3.0",
- "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
- },
- "MSTest.TestAdapter/2.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VoXDhx+a/44RmQYpkrYWe3D6AP6kjqibe02NOj1t8Zn9uo8e90gXW22SYj3geEwNTcEdMg2XMq0SI2P0Fl2Trw==",
- "path": "mstest.testadapter/2.0.0",
- "hashPath": "mstest.testadapter.2.0.0.nupkg.sha512"
- },
- "MSTest.TestFramework/2.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-gDlwhzIqdhUB+tirA80c6jUnlAsWBl2RXsKwmCbeZ1XkTjufrZIrBs7cvBdxbzddAEFOZuqfeCHJK/rp0vloZg==",
- "path": "mstest.testframework/2.0.0",
- "hashPath": "mstest.testframework.2.0.0.nupkg.sha512"
- },
- "NETStandard.Library/1.6.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
- "path": "netstandard.library/1.6.1",
- "hashPath": "netstandard.library.1.6.1.nupkg.sha512"
- },
- "Newtonsoft.Json/13.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-R2pZ3B0UjeyHShm9vG+Tu0EBb2lC8b0dFzV9gVn50ofHXh9Smjk6kTn7A/FdAsC8B5cKib1OnGYOXxRBz5XQDg==",
- "path": "newtonsoft.json/13.0.2",
- "hashPath": "newtonsoft.json.13.0.2.nupkg.sha512"
- },
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
- "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
- "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
- "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.native.System/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
- "path": "runtime.native.system/4.3.0",
- "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
- },
- "runtime.native.System.IO.Compression/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
- "path": "runtime.native.system.io.compression/4.3.0",
- "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512"
- },
- "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
- "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
- "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
- "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
- "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
- "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
- "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
- "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
- "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "System.AppContext/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
- "path": "system.appcontext/4.3.0",
- "hashPath": "system.appcontext.4.3.0.nupkg.sha512"
- },
- "System.Buffers/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
- "path": "system.buffers/4.3.0",
- "hashPath": "system.buffers.4.3.0.nupkg.sha512"
- },
- "System.Collections/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
- "path": "system.collections/4.3.0",
- "hashPath": "system.collections.4.3.0.nupkg.sha512"
- },
- "System.Collections.Concurrent/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
- "path": "system.collections.concurrent/4.3.0",
- "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
- },
- "System.ComponentModel/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
- "path": "system.componentmodel/4.3.0",
- "hashPath": "system.componentmodel.4.3.0.nupkg.sha512"
- },
- "System.ComponentModel.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
- "path": "system.componentmodel.primitives/4.3.0",
- "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512"
- },
- "System.ComponentModel.TypeConverter/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
- "path": "system.componentmodel.typeconverter/4.3.0",
- "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512"
- },
- "System.Console/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
- "path": "system.console/4.3.0",
- "hashPath": "system.console.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.Debug/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
- "path": "system.diagnostics.debug/4.3.0",
- "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.DiagnosticSource/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==",
- "path": "system.diagnostics.diagnosticsource/4.3.0",
- "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.Tools/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
- "path": "system.diagnostics.tools/4.3.0",
- "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.Tracing/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
- "path": "system.diagnostics.tracing/4.3.0",
- "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
- },
- "System.Dynamic.Runtime/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
- "path": "system.dynamic.runtime/4.3.0",
- "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512"
- },
- "System.Globalization/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
- "path": "system.globalization/4.3.0",
- "hashPath": "system.globalization.4.3.0.nupkg.sha512"
- },
- "System.Globalization.Calendars/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
- "path": "system.globalization.calendars/4.3.0",
- "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
- },
- "System.IO/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
- "path": "system.io/4.3.0",
- "hashPath": "system.io.4.3.0.nupkg.sha512"
- },
- "System.IO.Compression/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
- "path": "system.io.compression/4.3.0",
- "hashPath": "system.io.compression.4.3.0.nupkg.sha512"
- },
- "System.IO.Compression.ZipFile/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
- "path": "system.io.compression.zipfile/4.3.0",
- "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512"
- },
- "System.IO.FileSystem/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
- "path": "system.io.filesystem/4.3.0",
- "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
- },
- "System.IO.FileSystem.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
- "path": "system.io.filesystem.primitives/4.3.0",
- "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
- },
- "System.Linq/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
- "path": "system.linq/4.3.0",
- "hashPath": "system.linq.4.3.0.nupkg.sha512"
- },
- "System.Linq.Expressions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
- "path": "system.linq.expressions/4.3.0",
- "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
- },
- "System.Net.Http/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
- "path": "system.net.http/4.3.0",
- "hashPath": "system.net.http.4.3.0.nupkg.sha512"
- },
- "System.Net.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
- "path": "system.net.primitives/4.3.0",
- "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
- },
- "System.Net.Sockets/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
- "path": "system.net.sockets/4.3.0",
- "hashPath": "system.net.sockets.4.3.0.nupkg.sha512"
- },
- "System.ObjectModel/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
- "path": "system.objectmodel/4.3.0",
- "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
- },
- "System.Reflection/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
- "path": "system.reflection/4.3.0",
- "hashPath": "system.reflection.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
- "path": "system.reflection.emit/4.3.0",
- "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
- "path": "system.reflection.emit.ilgeneration/4.3.0",
- "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
- "path": "system.reflection.extensions/4.3.0",
- "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
- "path": "system.reflection.primitives/4.3.0",
- "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
- },
- "System.Reflection.TypeExtensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
- "path": "system.reflection.typeextensions/4.3.0",
- "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
- },
- "System.Resources.ResourceManager/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
- "path": "system.resources.resourcemanager/4.3.0",
- "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
- },
- "System.Runtime/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
- "path": "system.runtime/4.3.0",
- "hashPath": "system.runtime.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
- "path": "system.runtime.extensions/4.3.0",
- "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Handles/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
- "path": "system.runtime.handles/4.3.0",
- "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
- },
- "System.Runtime.InteropServices/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
- "path": "system.runtime.interopservices/4.3.0",
- "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
- },
- "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
- "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
- "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Numerics/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
- "path": "system.runtime.numerics/4.3.0",
- "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Serialization.Formatters/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
- "path": "system.runtime.serialization.formatters/4.3.0",
- "hashPath": "system.runtime.serialization.formatters.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Serialization.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
- "path": "system.runtime.serialization.primitives/4.3.0",
- "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Algorithms/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
- "path": "system.security.cryptography.algorithms/4.3.0",
- "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Encoding/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
- "path": "system.security.cryptography.encoding/4.3.0",
- "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
- "path": "system.security.cryptography.primitives/4.3.0",
- "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.X509Certificates/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
- "path": "system.security.cryptography.x509certificates/4.3.0",
- "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
- },
- "System.Text.Encoding/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
- "path": "system.text.encoding/4.3.0",
- "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
- },
- "System.Text.Encoding.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
- "path": "system.text.encoding.extensions/4.3.0",
- "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
- },
- "System.Text.RegularExpressions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
- "path": "system.text.regularexpressions/4.3.0",
- "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
- },
- "System.Threading/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
- "path": "system.threading/4.3.0",
- "hashPath": "system.threading.4.3.0.nupkg.sha512"
- },
- "System.Threading.Tasks/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
- "path": "system.threading.tasks/4.3.0",
- "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
- },
- "System.Threading.Tasks.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
- "path": "system.threading.tasks.extensions/4.3.0",
- "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512"
- },
- "System.Threading.Timer/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
- "path": "system.threading.timer/4.3.0",
- "hashPath": "system.threading.timer.4.3.0.nupkg.sha512"
- },
- "System.Xml.ReaderWriter/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
- "path": "system.xml.readerwriter/4.3.0",
- "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
- },
- "System.Xml.XDocument/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
- "path": "system.xml.xdocument/4.3.0",
- "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
- },
- "System.Xml.XmlDocument/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
- "path": "system.xml.xmldocument/4.3.0",
- "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512"
- },
- "Trolley.NetCore.SDK/1.0.10": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "Trolley/1.0.2.0": {
- "type": "reference",
- "serviceable": false,
- "sha512": ""
- }
- }
-}
\ No newline at end of file
diff --git a/tests/bin/Debug/netstandard1.3/tests.dll b/tests/bin/Debug/netstandard1.3/tests.dll
deleted file mode 100644
index 47a659c..0000000
Binary files a/tests/bin/Debug/netstandard1.3/tests.dll and /dev/null differ
diff --git a/tests/bin/Debug/netstandard1.3/tests.pdb b/tests/bin/Debug/netstandard1.3/tests.pdb
deleted file mode 100644
index caa58f8..0000000
Binary files a/tests/bin/Debug/netstandard1.3/tests.pdb and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp2.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll b/tests/bin/Release/netcoreapp2.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll
deleted file mode 100644
index bae80db..0000000
Binary files a/tests/bin/Release/netcoreapp2.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp2.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll b/tests/bin/Release/netcoreapp2.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll
deleted file mode 100644
index 74a8172..0000000
Binary files a/tests/bin/Release/netcoreapp2.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp2.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll b/tests/bin/Release/netcoreapp2.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll
deleted file mode 100644
index fba5ffb..0000000
Binary files a/tests/bin/Release/netcoreapp2.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp2.0/tests.deps.json b/tests/bin/Release/netcoreapp2.0/tests.deps.json
deleted file mode 100644
index f2eb913..0000000
--- a/tests/bin/Release/netcoreapp2.0/tests.deps.json
+++ /dev/null
@@ -1,1305 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v2.0",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v2.0": {
- "tests/1.0.0": {
- "dependencies": {
- "MSTest.TestAdapter": "2.0.0",
- "MSTest.TestFramework": "2.0.0",
- "Microsoft.NET.Test.Sdk": "16.2.0",
- "Trolley.NetCore.SDK": "1.0.7",
- "coverlet.collector": "1.0.1"
- },
- "runtime": {
- "tests.dll": {}
- }
- },
- "coverlet.collector/1.0.1": {},
- "Microsoft.CodeCoverage/16.2.0": {
- "runtime": {
- "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "16.0.28223.3002"
- }
- }
- },
- "Microsoft.NET.Test.Sdk/16.2.0": {
- "dependencies": {
- "Microsoft.CodeCoverage": "16.2.0",
- "Microsoft.TestPlatform.TestHost": "16.2.0"
- }
- },
- "Microsoft.NETCore.Targets/1.1.0": {},
- "Microsoft.TestPlatform.ObjectModel/16.2.0": {
- "dependencies": {
- "System.ComponentModel.EventBasedAsync": "4.0.11",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Diagnostics.Process": "4.1.0",
- "System.Diagnostics.TextWriterTraceListener": "4.3.0",
- "System.Diagnostics.TraceSource": "4.3.0",
- "System.Reflection.Metadata": "1.3.0",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Runtime.Loader": "4.0.0",
- "System.Runtime.Serialization.Json": "4.0.2",
- "System.Runtime.Serialization.Primitives": "4.1.1",
- "System.Threading.Thread": "4.0.0",
- "System.Xml.XPath.XmlDocument": "4.0.1"
- },
- "runtime": {
- "lib/netstandard1.5/Microsoft.TestPlatform.CoreUtilities.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "15.0.0.0"
- },
- "lib/netstandard1.5/Microsoft.TestPlatform.PlatformAbstractions.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "15.0.0.0"
- },
- "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "15.0.0.0"
- }
- },
- "resources": {
- "lib/netstandard1.5/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "cs"
- },
- "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "cs"
- },
- "lib/netstandard1.5/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "de"
- },
- "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "de"
- },
- "lib/netstandard1.5/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "es"
- },
- "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "es"
- },
- "lib/netstandard1.5/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "fr"
- },
- "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "fr"
- },
- "lib/netstandard1.5/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "it"
- },
- "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "it"
- },
- "lib/netstandard1.5/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "ja"
- },
- "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "ja"
- },
- "lib/netstandard1.5/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "ko"
- },
- "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "ko"
- },
- "lib/netstandard1.5/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "pl"
- },
- "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "pl"
- },
- "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netstandard1.5/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "ru"
- },
- "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "ru"
- },
- "lib/netstandard1.5/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "tr"
- },
- "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "tr"
- },
- "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "zh-Hant"
- },
- "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.TestPlatform.TestHost/16.2.0": {
- "dependencies": {
- "Microsoft.TestPlatform.ObjectModel": "16.2.0",
- "Newtonsoft.Json": "12.0.3"
- },
- "runtime": {
- "lib/netstandard1.5/Microsoft.TestPlatform.CommunicationUtilities.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "15.0.0.0"
- },
- "lib/netstandard1.5/Microsoft.TestPlatform.CrossPlatEngine.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "15.0.0.0"
- },
- "lib/netstandard1.5/Microsoft.TestPlatform.Utilities.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "15.0.0.0"
- },
- "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.Common.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "15.0.0.0"
- },
- "lib/netstandard1.5/testhost.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "15.0.0.0"
- }
- },
- "resources": {
- "lib/netstandard1.5/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "cs"
- },
- "lib/netstandard1.5/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "cs"
- },
- "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "cs"
- },
- "lib/netstandard1.5/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "de"
- },
- "lib/netstandard1.5/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "de"
- },
- "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "de"
- },
- "lib/netstandard1.5/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "es"
- },
- "lib/netstandard1.5/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "es"
- },
- "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "es"
- },
- "lib/netstandard1.5/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "fr"
- },
- "lib/netstandard1.5/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "fr"
- },
- "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "fr"
- },
- "lib/netstandard1.5/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "it"
- },
- "lib/netstandard1.5/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "it"
- },
- "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "it"
- },
- "lib/netstandard1.5/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "ja"
- },
- "lib/netstandard1.5/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "ja"
- },
- "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "ja"
- },
- "lib/netstandard1.5/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "ko"
- },
- "lib/netstandard1.5/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "ko"
- },
- "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "ko"
- },
- "lib/netstandard1.5/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "pl"
- },
- "lib/netstandard1.5/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "pl"
- },
- "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "pl"
- },
- "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netstandard1.5/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "ru"
- },
- "lib/netstandard1.5/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "ru"
- },
- "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "ru"
- },
- "lib/netstandard1.5/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "tr"
- },
- "lib/netstandard1.5/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "tr"
- },
- "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "tr"
- },
- "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "zh-Hant"
- },
- "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "zh-Hant"
- },
- "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Win32.Primitives/4.0.1": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "Microsoft.Win32.Registry/4.0.0": {
- "dependencies": {
- "System.Collections": "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.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0"
- }
- },
- "MSTest.TestAdapter/2.0.0": {
- "dependencies": {
- "System.Diagnostics.TextWriterTraceListener": "4.3.0"
- }
- },
- "MSTest.TestFramework/2.0.0": {
- "runtime": {
- "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": {
- "assemblyVersion": "14.0.0.0",
- "fileVersion": "14.0.3930.6"
- },
- "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": {
- "assemblyVersion": "14.0.0.0",
- "fileVersion": "14.0.3930.6"
- }
- }
- },
- "Newtonsoft.Json/12.0.3": {
- "runtime": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {
- "assemblyVersion": "12.0.0.0",
- "fileVersion": "12.0.3.23909"
- }
- }
- },
- "runtime.native.System/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "System.Collections/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Collections.Concurrent/4.0.12": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.Tracing": "4.1.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/1.2.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Linq": "4.1.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.NonGeneric/4.0.1": {
- "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/4.0.1": {
- "dependencies": {
- "System.Collections.NonGeneric": "4.0.1",
- "System.Globalization": "4.3.0",
- "System.Globalization.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- }
- },
- "System.ComponentModel/4.0.1": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- }
- },
- "System.ComponentModel.EventBasedAsync/4.0.11": {
- "dependencies": {
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.ComponentModel.Primitives/4.1.0": {
- "dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.ComponentModel.TypeConverter/4.1.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Collections.NonGeneric": "4.0.1",
- "System.Collections.Specialized": "4.0.1",
- "System.ComponentModel": "4.0.1",
- "System.ComponentModel.Primitives": "4.1.0",
- "System.Globalization": "4.3.0",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- }
- },
- "System.Diagnostics.Debug/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Diagnostics.Process/4.1.0": {
- "dependencies": {
- "Microsoft.Win32.Primitives": "4.0.1",
- "Microsoft.Win32.Registry": "4.0.0",
- "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.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Threading.Thread": "4.0.0",
- "System.Threading.ThreadPool": "4.0.10",
- "runtime.native.System": "4.3.0"
- }
- },
- "System.Diagnostics.TextWriterTraceListener/4.3.0": {
- "dependencies": {
- "System.Diagnostics.TraceSource": "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.Diagnostics.TraceSource/4.3.0": {
- "dependencies": {
- "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/4.1.0": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Globalization/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Globalization.Extensions/4.0.1": {
- "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.InteropServices": "4.1.0"
- }
- },
- "System.IO/4.3.0": {
- "dependencies": {
- "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.FileSystem/4.0.1": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Text.Encoding": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.IO.FileSystem.Primitives/4.0.1": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- }
- },
- "System.Linq/4.1.0": {
- "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.Private.DataContractSerialization/4.1.1": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Emit.Lightweight": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Serialization.Primitives": "4.1.1",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Xml.ReaderWriter": "4.0.11",
- "System.Xml.XmlDocument": "4.0.1",
- "System.Xml.XmlSerializer": "4.0.11"
- }
- },
- "System.Reflection/4.3.0": {
- "dependencies": {
- "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/4.0.1": {
- "dependencies": {
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Emit.ILGeneration/4.0.1": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Emit.Lightweight/4.0.1": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Extensions/4.0.1": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Metadata/1.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Collections.Immutable": "1.2.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.IO": "4.3.0",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Extensions": "4.0.1",
- "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.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Threading": "4.3.0"
- }
- },
- "System.Reflection.Primitives/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.TypeExtensions/4.1.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Resources.ResourceManager/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "System.Runtime.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime.Handles/4.0.1": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime.InteropServices/4.1.0": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.0.1"
- }
- },
- "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.3.0",
- "runtime.native.System": "4.3.0"
- }
- },
- "System.Runtime.Loader/4.0.0": {
- "dependencies": {
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime.Serialization.Json/4.0.2": {
- "dependencies": {
- "System.IO": "4.3.0",
- "System.Private.DataContractSerialization": "4.1.1",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime.Serialization.Primitives/4.1.1": {
- "dependencies": {
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Text.Encoding/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Text.Encoding.Extensions/4.0.11": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Text.Encoding": "4.3.0"
- }
- },
- "System.Text.RegularExpressions/4.1.0": {
- "dependencies": {
- "System.Collections": "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.Threading/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.Threading.Tasks/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Threading.Tasks.Extensions/4.0.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.Threading.Thread/4.0.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- }
- },
- "System.Threading.ThreadPool/4.0.10": {
- "dependencies": {
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.0.1"
- }
- },
- "System.Xml.ReaderWriter/4.0.11": {
- "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.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Threading.Tasks.Extensions": "4.0.0"
- }
- },
- "System.Xml.XmlDocument/4.0.1": {
- "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.0.11"
- }
- },
- "System.Xml.XmlSerializer/4.0.11": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit": "4.0.1",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.3.0",
- "System.Xml.ReaderWriter": "4.0.11",
- "System.Xml.XmlDocument": "4.0.1"
- }
- },
- "System.Xml.XPath/4.0.1": {
- "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.Threading": "4.3.0",
- "System.Xml.ReaderWriter": "4.0.11"
- }
- },
- "System.Xml.XPath.XmlDocument/4.0.1": {
- "dependencies": {
- "System.Collections": "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.Threading": "4.3.0",
- "System.Xml.ReaderWriter": "4.0.11",
- "System.Xml.XPath": "4.0.1",
- "System.Xml.XmlDocument": "4.0.1"
- },
- "runtime": {
- "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "1.0.24212.1"
- }
- }
- },
- "Trolley.NetCore.SDK/1.0.7": {
- "dependencies": {
- "Newtonsoft.Json": "12.0.3"
- },
- "runtime": {
- "Trolley.dll": {}
- }
- }
- }
- },
- "libraries": {
- "tests/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "coverlet.collector/1.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-RAuno8s7DBGo2IdV/1d8YSnXMd/728K3PBT5R6/kfGx1yunBZmavlaFQfhGe7Q7N2nUMkvVET+7ITn3+KSg+Uw==",
- "path": "coverlet.collector/1.0.1",
- "hashPath": "coverlet.collector.1.0.1.nupkg.sha512"
- },
- "Microsoft.CodeCoverage/16.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-fKiUOhhMP3IN1qM2tDHPWzW4JRbriFkIPiIzKUwMWT+Q+80bycxkLLCvxmVFoeA7gvWegNbTUjaX7mL3MM9XKg==",
- "path": "microsoft.codecoverage/16.2.0",
- "hashPath": "microsoft.codecoverage.16.2.0.nupkg.sha512"
- },
- "Microsoft.NET.Test.Sdk/16.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-56w1drIQqpMgg3IxHcfra/jXOngiD4pbl0j6TNeJMlOQGlZ8wCMlyRTvn6Crd/FgGjwKbWLurdOHNGrfzLtl6A==",
- "path": "microsoft.net.test.sdk/16.2.0",
- "hashPath": "microsoft.net.test.sdk.16.2.0.nupkg.sha512"
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
- "path": "microsoft.netcore.targets/1.1.0",
- "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
- },
- "Microsoft.TestPlatform.ObjectModel/16.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-RAyBf87uZ5XjRE953LlxqILpD1SqwQM6bXwxPUCAPPEy0uv12R+eKnFL7yaeLVHInMKkNNh1iD/cDOVDfSgllA==",
- "path": "microsoft.testplatform.objectmodel/16.2.0",
- "hashPath": "microsoft.testplatform.objectmodel.16.2.0.nupkg.sha512"
- },
- "Microsoft.TestPlatform.TestHost/16.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PogSQ40KgkZjEBdC6KBGpMtuvFFCIdoJAMmK7CAHWyTXCfN1cPN8j0TFJKh+LneSg+y0QQDP23STMF609KhHQw==",
- "path": "microsoft.testplatform.testhost/16.2.0",
- "hashPath": "microsoft.testplatform.testhost.16.2.0.nupkg.sha512"
- },
- "Microsoft.Win32.Primitives/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==",
- "path": "microsoft.win32.primitives/4.0.1",
- "hashPath": "microsoft.win32.primitives.4.0.1.nupkg.sha512"
- },
- "Microsoft.Win32.Registry/4.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-q+eLtROUAQ3OxYA5mpQrgyFgzLQxIyrfT2eLpYX5IEPlHmIio2nh4F5bgOaQoGOV865kFKZZso9Oq9RlazvXtg==",
- "path": "microsoft.win32.registry/4.0.0",
- "hashPath": "microsoft.win32.registry.4.0.0.nupkg.sha512"
- },
- "MSTest.TestAdapter/2.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VoXDhx+a/44RmQYpkrYWe3D6AP6kjqibe02NOj1t8Zn9uo8e90gXW22SYj3geEwNTcEdMg2XMq0SI2P0Fl2Trw==",
- "path": "mstest.testadapter/2.0.0",
- "hashPath": "mstest.testadapter.2.0.0.nupkg.sha512"
- },
- "MSTest.TestFramework/2.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-gDlwhzIqdhUB+tirA80c6jUnlAsWBl2RXsKwmCbeZ1XkTjufrZIrBs7cvBdxbzddAEFOZuqfeCHJK/rp0vloZg==",
- "path": "mstest.testframework/2.0.0",
- "hashPath": "mstest.testframework.2.0.0.nupkg.sha512"
- },
- "Newtonsoft.Json/12.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
- "path": "newtonsoft.json/12.0.3",
- "hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
- },
- "runtime.native.System/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
- "path": "runtime.native.system/4.3.0",
- "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
- },
- "System.Collections/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
- "path": "system.collections/4.3.0",
- "hashPath": "system.collections.4.3.0.nupkg.sha512"
- },
- "System.Collections.Concurrent/4.0.12": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==",
- "path": "system.collections.concurrent/4.0.12",
- "hashPath": "system.collections.concurrent.4.0.12.nupkg.sha512"
- },
- "System.Collections.Immutable/1.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Cma8cBW6di16ZLibL8LYQ+cLjGzoKxpOTu/faZfDcx94ZjAGq6Nv5RO7+T1YZXqEXTZP9rt1wLVEONVpURtUqw==",
- "path": "system.collections.immutable/1.2.0",
- "hashPath": "system.collections.immutable.1.2.0.nupkg.sha512"
- },
- "System.Collections.NonGeneric/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hMxFT2RhhlffyCdKLDXjx8WEC5JfCvNozAZxCablAuFRH74SCV4AgzE8yJCh/73bFnEoZgJ9MJmkjQ0dJmnKqA==",
- "path": "system.collections.nongeneric/4.0.1",
- "hashPath": "system.collections.nongeneric.4.0.1.nupkg.sha512"
- },
- "System.Collections.Specialized/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/HKQyVP0yH1I0YtK7KJL/28snxHNH/bi+0lgk/+MbURF6ULhAE31MDI+NZDerNWu264YbxklXCCygISgm+HMug==",
- "path": "system.collections.specialized/4.0.1",
- "hashPath": "system.collections.specialized.4.0.1.nupkg.sha512"
- },
- "System.ComponentModel/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==",
- "path": "system.componentmodel/4.0.1",
- "hashPath": "system.componentmodel.4.0.1.nupkg.sha512"
- },
- "System.ComponentModel.EventBasedAsync/4.0.11": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Z7SO6vvQIR84daPE4uhaNdef9CjgjDMGYkas8epUhf0U3WGuaGgZ0Mm4QuNycMdbHUY8KEdZrtgxonkAiJaAlA==",
- "path": "system.componentmodel.eventbasedasync/4.0.11",
- "hashPath": "system.componentmodel.eventbasedasync.4.0.11.nupkg.sha512"
- },
- "System.ComponentModel.Primitives/4.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-sc/7eVCdxPrp3ljpgTKVaQGUXiW05phNWvtv/m2kocXqrUQvTVWKou1Edas2aDjTThLPZOxPYIGNb/HN0QjURg==",
- "path": "system.componentmodel.primitives/4.1.0",
- "hashPath": "system.componentmodel.primitives.4.1.0.nupkg.sha512"
- },
- "System.ComponentModel.TypeConverter/4.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-MnDAlaeJZy9pdB5ZdOlwdxfpI+LJQ6e0hmH7d2+y2LkiD8DRJynyDYl4Xxf3fWFm7SbEwBZh4elcfzONQLOoQw==",
- "path": "system.componentmodel.typeconverter/4.1.0",
- "hashPath": "system.componentmodel.typeconverter.4.1.0.nupkg.sha512"
- },
- "System.Diagnostics.Debug/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
- "path": "system.diagnostics.debug/4.3.0",
- "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.Process/4.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==",
- "path": "system.diagnostics.process/4.1.0",
- "hashPath": "system.diagnostics.process.4.1.0.nupkg.sha512"
- },
- "System.Diagnostics.TextWriterTraceListener/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-F11kHWeiwYjFWto+kr8tt9ULMH0k8MsT1XmdCGPTLYHhWgN+2g7JsIZiXDrxlFGccSNkbjfwQy4xIS38gzUiZA==",
- "path": "system.diagnostics.textwritertracelistener/4.3.0",
- "hashPath": "system.diagnostics.textwritertracelistener.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.TraceSource/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==",
- "path": "system.diagnostics.tracesource/4.3.0",
- "hashPath": "system.diagnostics.tracesource.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.Tracing/4.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==",
- "path": "system.diagnostics.tracing/4.1.0",
- "hashPath": "system.diagnostics.tracing.4.1.0.nupkg.sha512"
- },
- "System.Globalization/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
- "path": "system.globalization/4.3.0",
- "hashPath": "system.globalization.4.3.0.nupkg.sha512"
- },
- "System.Globalization.Extensions/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==",
- "path": "system.globalization.extensions/4.0.1",
- "hashPath": "system.globalization.extensions.4.0.1.nupkg.sha512"
- },
- "System.IO/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
- "path": "system.io/4.3.0",
- "hashPath": "system.io.4.3.0.nupkg.sha512"
- },
- "System.IO.FileSystem/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
- "path": "system.io.filesystem/4.0.1",
- "hashPath": "system.io.filesystem.4.0.1.nupkg.sha512"
- },
- "System.IO.FileSystem.Primitives/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
- "path": "system.io.filesystem.primitives/4.0.1",
- "hashPath": "system.io.filesystem.primitives.4.0.1.nupkg.sha512"
- },
- "System.Linq/4.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==",
- "path": "system.linq/4.1.0",
- "hashPath": "system.linq.4.1.0.nupkg.sha512"
- },
- "System.Private.DataContractSerialization/4.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lcqFBUaCZxPiUkA4dlSOoPZGtZsAuuElH2XHgLwGLxd7ZozWetV5yiz0qGAV2AUYOqw97MtZBjbLMN16Xz4vXA==",
- "path": "system.private.datacontractserialization/4.1.1",
- "hashPath": "system.private.datacontractserialization.4.1.1.nupkg.sha512"
- },
- "System.Reflection/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
- "path": "system.reflection/4.3.0",
- "hashPath": "system.reflection.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==",
- "path": "system.reflection.emit/4.0.1",
- "hashPath": "system.reflection.emit.4.0.1.nupkg.sha512"
- },
- "System.Reflection.Emit.ILGeneration/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==",
- "path": "system.reflection.emit.ilgeneration/4.0.1",
- "hashPath": "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512"
- },
- "System.Reflection.Emit.Lightweight/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
- "path": "system.reflection.emit.lightweight/4.0.1",
- "hashPath": "system.reflection.emit.lightweight.4.0.1.nupkg.sha512"
- },
- "System.Reflection.Extensions/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==",
- "path": "system.reflection.extensions/4.0.1",
- "hashPath": "system.reflection.extensions.4.0.1.nupkg.sha512"
- },
- "System.Reflection.Metadata/1.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jMSCxA4LSyKBGRDm/WtfkO03FkcgRzHxwvQRib1bm2GZ8ifKM1MX1al6breGCEQK280mdl9uQS7JNPXRYk90jw==",
- "path": "system.reflection.metadata/1.3.0",
- "hashPath": "system.reflection.metadata.1.3.0.nupkg.sha512"
- },
- "System.Reflection.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
- "path": "system.reflection.primitives/4.3.0",
- "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
- },
- "System.Reflection.TypeExtensions/4.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==",
- "path": "system.reflection.typeextensions/4.1.0",
- "hashPath": "system.reflection.typeextensions.4.1.0.nupkg.sha512"
- },
- "System.Resources.ResourceManager/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
- "path": "system.resources.resourcemanager/4.3.0",
- "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
- },
- "System.Runtime/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
- "path": "system.runtime/4.3.0",
- "hashPath": "system.runtime.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
- "path": "system.runtime.extensions/4.3.0",
- "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Handles/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==",
- "path": "system.runtime.handles/4.0.1",
- "hashPath": "system.runtime.handles.4.0.1.nupkg.sha512"
- },
- "System.Runtime.InteropServices/4.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==",
- "path": "system.runtime.interopservices/4.1.0",
- "hashPath": "system.runtime.interopservices.4.1.0.nupkg.sha512"
- },
- "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==",
- "path": "system.runtime.interopservices.runtimeinformation/4.0.0",
- "hashPath": "system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512"
- },
- "System.Runtime.Loader/4.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==",
- "path": "system.runtime.loader/4.0.0",
- "hashPath": "system.runtime.loader.4.0.0.nupkg.sha512"
- },
- "System.Runtime.Serialization.Json/4.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+7DIJhnKYgCzUgcLbVTtRQb2l1M0FP549XFlFkQM5lmNiUBl44AfNbx4bz61xA8PzLtlYwfmif4JJJW7MPPnjg==",
- "path": "system.runtime.serialization.json/4.0.2",
- "hashPath": "system.runtime.serialization.json.4.0.2.nupkg.sha512"
- },
- "System.Runtime.Serialization.Primitives/4.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==",
- "path": "system.runtime.serialization.primitives/4.1.1",
- "hashPath": "system.runtime.serialization.primitives.4.1.1.nupkg.sha512"
- },
- "System.Text.Encoding/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
- "path": "system.text.encoding/4.3.0",
- "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
- },
- "System.Text.Encoding.Extensions/4.0.11": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
- "path": "system.text.encoding.extensions/4.0.11",
- "hashPath": "system.text.encoding.extensions.4.0.11.nupkg.sha512"
- },
- "System.Text.RegularExpressions/4.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==",
- "path": "system.text.regularexpressions/4.1.0",
- "hashPath": "system.text.regularexpressions.4.1.0.nupkg.sha512"
- },
- "System.Threading/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
- "path": "system.threading/4.3.0",
- "hashPath": "system.threading.4.3.0.nupkg.sha512"
- },
- "System.Threading.Tasks/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
- "path": "system.threading.tasks/4.3.0",
- "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
- },
- "System.Threading.Tasks.Extensions/4.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==",
- "path": "system.threading.tasks.extensions/4.0.0",
- "hashPath": "system.threading.tasks.extensions.4.0.0.nupkg.sha512"
- },
- "System.Threading.Thread/4.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==",
- "path": "system.threading.thread/4.0.0",
- "hashPath": "system.threading.thread.4.0.0.nupkg.sha512"
- },
- "System.Threading.ThreadPool/4.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==",
- "path": "system.threading.threadpool/4.0.10",
- "hashPath": "system.threading.threadpool.4.0.10.nupkg.sha512"
- },
- "System.Xml.ReaderWriter/4.0.11": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==",
- "path": "system.xml.readerwriter/4.0.11",
- "hashPath": "system.xml.readerwriter.4.0.11.nupkg.sha512"
- },
- "System.Xml.XmlDocument/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==",
- "path": "system.xml.xmldocument/4.0.1",
- "hashPath": "system.xml.xmldocument.4.0.1.nupkg.sha512"
- },
- "System.Xml.XmlSerializer/4.0.11": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw==",
- "path": "system.xml.xmlserializer/4.0.11",
- "hashPath": "system.xml.xmlserializer.4.0.11.nupkg.sha512"
- },
- "System.Xml.XPath/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==",
- "path": "system.xml.xpath/4.0.1",
- "hashPath": "system.xml.xpath.4.0.1.nupkg.sha512"
- },
- "System.Xml.XPath.XmlDocument/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Zm2BdeanuncYs3NhCj4c9e1x3EXFzFBVv2wPEc/Dj4ZbI9R8ecLSR5frAsx4zJCPBtKQreQ7Q/KxJEohJZbfzA==",
- "path": "system.xml.xpath.xmldocument/4.0.1",
- "hashPath": "system.xml.xpath.xmldocument.4.0.1.nupkg.sha512"
- },
- "Trolley.NetCore.SDK/1.0.7": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- }
- }
-}
\ No newline at end of file
diff --git a/tests/bin/Release/netcoreapp2.0/tests.dll b/tests/bin/Release/netcoreapp2.0/tests.dll
deleted file mode 100644
index 698017f..0000000
Binary files a/tests/bin/Release/netcoreapp2.0/tests.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp2.0/tests.pdb b/tests/bin/Release/netcoreapp2.0/tests.pdb
deleted file mode 100644
index 9e4dc6e..0000000
Binary files a/tests/bin/Release/netcoreapp2.0/tests.pdb and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp2.0/tests.runtimeconfig.dev.json b/tests/bin/Release/netcoreapp2.0/tests.runtimeconfig.dev.json
deleted file mode 100644
index 01efb7f..0000000
--- a/tests/bin/Release/netcoreapp2.0/tests.runtimeconfig.dev.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "runtimeOptions": {
- "additionalProbingPaths": [
- "C:\\Users\\Joshua\\.dotnet\\store\\|arch|\\|tfm|",
- "C:\\Users\\Joshua\\.nuget\\packages"
- ]
- }
-}
\ No newline at end of file
diff --git a/tests/bin/Release/netcoreapp2.0/tests.runtimeconfig.json b/tests/bin/Release/netcoreapp2.0/tests.runtimeconfig.json
deleted file mode 100644
index 7539019..0000000
--- a/tests/bin/Release/netcoreapp2.0/tests.runtimeconfig.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "runtimeOptions": {
- "tfm": "netcoreapp2.0",
- "framework": {
- "name": "Microsoft.NETCore.App",
- "version": "2.0.0"
- }
- }
-}
\ No newline at end of file
diff --git a/tests/bin/Release/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll b/tests/bin/Release/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll
deleted file mode 100644
index 477e5fe..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll b/tests/bin/Release/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll
deleted file mode 100644
index 60da72f..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll b/tests/bin/Release/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll
deleted file mode 100644
index e50c059..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll b/tests/bin/Release/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll
deleted file mode 100644
index b9e08a0..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll b/tests/bin/Release/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll
deleted file mode 100644
index a3cb1b6..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll b/tests/bin/Release/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll
deleted file mode 100644
index 006a808..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll b/tests/bin/Release/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll
deleted file mode 100644
index d9c6f6d..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll b/tests/bin/Release/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll
deleted file mode 100644
index bae80db..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll b/tests/bin/Release/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll
deleted file mode 100644
index 74a8172..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll b/tests/bin/Release/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll
deleted file mode 100644
index fba5ffb..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll b/tests/bin/Release/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll
deleted file mode 100644
index eeb7f66..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll b/tests/bin/Release/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll
deleted file mode 100644
index f613b68..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.dll b/tests/bin/Release/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.dll
deleted file mode 100644
index 578da25..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/Newtonsoft.Json.dll b/tests/bin/Release/netcoreapp3.1/Newtonsoft.Json.dll
deleted file mode 100644
index b501fb6..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/Newtonsoft.Json.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/System.Xml.XPath.XmlDocument.dll b/tests/bin/Release/netcoreapp3.1/System.Xml.XPath.XmlDocument.dll
deleted file mode 100644
index a8f3e5a..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/System.Xml.XPath.XmlDocument.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/bin/Release/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
deleted file mode 100644
index 2a93b76..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/bin/Release/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll
deleted file mode 100644
index 55c1b4f..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/bin/Release/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
deleted file mode 100644
index 0f4e7ac..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/bin/Release/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
deleted file mode 100644
index 7898105..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/bin/Release/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
deleted file mode 100644
index 18e84d5..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/bin/Release/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
deleted file mode 100644
index 2755378..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/bin/Release/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll
deleted file mode 100644
index 4d207f2..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/bin/Release/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
deleted file mode 100644
index 534aa37..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/bin/Release/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
deleted file mode 100644
index 8831980..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/bin/Release/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
deleted file mode 100644
index 7df5565..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/bin/Release/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
deleted file mode 100644
index 4a83708..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/bin/Release/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll
deleted file mode 100644
index 4ae41ca..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/bin/Release/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
deleted file mode 100644
index 20a14a3..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/bin/Release/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
deleted file mode 100644
index 95b71e0..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/bin/Release/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
deleted file mode 100644
index e08cd70..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/bin/Release/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
deleted file mode 100644
index c4a6fd8..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/bin/Release/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll
deleted file mode 100644
index 750af9e..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/bin/Release/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
deleted file mode 100644
index f3ec377..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/bin/Release/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
deleted file mode 100644
index f13c7d2..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/bin/Release/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
deleted file mode 100644
index a7865cb..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/bin/Release/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
deleted file mode 100644
index 994d5bc..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/bin/Release/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll
deleted file mode 100644
index 4f3e71a..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/bin/Release/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
deleted file mode 100644
index 71aee01..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/bin/Release/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
deleted file mode 100644
index 53281d9..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/bin/Release/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
deleted file mode 100644
index 98af5ac..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/bin/Release/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
deleted file mode 100644
index 94cd68d..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/bin/Release/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll
deleted file mode 100644
index 3d038db..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/bin/Release/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
deleted file mode 100644
index 50e8982..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/bin/Release/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
deleted file mode 100644
index 7890884..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/bin/Release/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
deleted file mode 100644
index 3f71048..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/bin/Release/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
deleted file mode 100644
index 89d51f0..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/bin/Release/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll
deleted file mode 100644
index d3d97cf..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/bin/Release/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
deleted file mode 100644
index bd717b4..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/bin/Release/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
deleted file mode 100644
index d27542c..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/bin/Release/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
deleted file mode 100644
index 7fad7b2..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/bin/Release/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
deleted file mode 100644
index 732fd94..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/bin/Release/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll
deleted file mode 100644
index 433459e..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/bin/Release/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
deleted file mode 100644
index 7f4f19e..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/bin/Release/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
deleted file mode 100644
index bd99196..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/bin/Release/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
deleted file mode 100644
index 7d6980a..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/bin/Release/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
deleted file mode 100644
index a9421a7..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/bin/Release/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll
deleted file mode 100644
index 32be813..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/bin/Release/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
deleted file mode 100644
index 16175f7..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/bin/Release/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
deleted file mode 100644
index 2efdeaf..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/bin/Release/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
deleted file mode 100644
index 80acbf8..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/bin/Release/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
deleted file mode 100644
index ca3e00d..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/bin/Release/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll
deleted file mode 100644
index 76b0121..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/bin/Release/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
deleted file mode 100644
index 2246949..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/bin/Release/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
deleted file mode 100644
index a311785..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/bin/Release/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
deleted file mode 100644
index 565cdd7..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/testhost.dll b/tests/bin/Release/netcoreapp3.1/testhost.dll
deleted file mode 100644
index 0821221..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/testhost.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/tests.deps.json b/tests/bin/Release/netcoreapp3.1/tests.deps.json
deleted file mode 100644
index b8abe8d..0000000
--- a/tests/bin/Release/netcoreapp3.1/tests.deps.json
+++ /dev/null
@@ -1,2008 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v3.1",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v3.1": {
- "tests/1.0.0": {
- "dependencies": {
- "MSTest.TestAdapter": "2.0.0",
- "MSTest.TestFramework": "2.0.0",
- "Microsoft.NET.Test.Sdk": "16.2.0",
- "Trolley.NetCore.SDK": "1.0.4",
- "coverlet.collector": "1.0.1"
- },
- "runtime": {
- "tests.dll": {}
- }
- },
- "coverlet.collector/1.0.1": {},
- "Microsoft.CodeCoverage/16.2.0": {
- "runtime": {
- "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "16.0.28223.3002"
- }
- }
- },
- "Microsoft.NET.Test.Sdk/16.2.0": {
- "dependencies": {
- "Microsoft.CodeCoverage": "16.2.0",
- "Microsoft.TestPlatform.TestHost": "16.2.0"
- }
- },
- "Microsoft.NETCore.Platforms/1.1.0": {},
- "Microsoft.NETCore.Targets/1.1.0": {},
- "Microsoft.TestPlatform.ObjectModel/16.2.0": {
- "dependencies": {
- "NETStandard.Library": "1.6.1",
- "System.ComponentModel.EventBasedAsync": "4.0.11",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Diagnostics.Process": "4.1.0",
- "System.Diagnostics.TextWriterTraceListener": "4.3.0",
- "System.Diagnostics.TraceSource": "4.3.0",
- "System.Reflection.Metadata": "1.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
- "System.Runtime.Loader": "4.0.0",
- "System.Runtime.Serialization.Json": "4.0.2",
- "System.Runtime.Serialization.Primitives": "4.1.1",
- "System.Threading.Thread": "4.0.0",
- "System.Xml.XPath.XmlDocument": "4.0.1"
- },
- "runtime": {
- "lib/netstandard1.5/Microsoft.TestPlatform.CoreUtilities.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "15.0.0.0"
- },
- "lib/netstandard1.5/Microsoft.TestPlatform.PlatformAbstractions.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "15.0.0.0"
- },
- "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "15.0.0.0"
- }
- },
- "resources": {
- "lib/netstandard1.5/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "cs"
- },
- "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "cs"
- },
- "lib/netstandard1.5/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "de"
- },
- "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "de"
- },
- "lib/netstandard1.5/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "es"
- },
- "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "es"
- },
- "lib/netstandard1.5/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "fr"
- },
- "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "fr"
- },
- "lib/netstandard1.5/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "it"
- },
- "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "it"
- },
- "lib/netstandard1.5/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "ja"
- },
- "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "ja"
- },
- "lib/netstandard1.5/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "ko"
- },
- "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "ko"
- },
- "lib/netstandard1.5/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "pl"
- },
- "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "pl"
- },
- "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netstandard1.5/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "ru"
- },
- "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "ru"
- },
- "lib/netstandard1.5/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "tr"
- },
- "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "tr"
- },
- "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "zh-Hant"
- },
- "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.TestPlatform.TestHost/16.2.0": {
- "dependencies": {
- "Microsoft.TestPlatform.ObjectModel": "16.2.0",
- "Newtonsoft.Json": "12.0.3"
- },
- "runtime": {
- "lib/netstandard1.5/Microsoft.TestPlatform.CommunicationUtilities.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "15.0.0.0"
- },
- "lib/netstandard1.5/Microsoft.TestPlatform.CrossPlatEngine.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "15.0.0.0"
- },
- "lib/netstandard1.5/Microsoft.TestPlatform.Utilities.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "15.0.0.0"
- },
- "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.Common.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "15.0.0.0"
- },
- "lib/netstandard1.5/testhost.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "15.0.0.0"
- }
- },
- "resources": {
- "lib/netstandard1.5/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "cs"
- },
- "lib/netstandard1.5/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "cs"
- },
- "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "cs"
- },
- "lib/netstandard1.5/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "de"
- },
- "lib/netstandard1.5/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "de"
- },
- "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "de"
- },
- "lib/netstandard1.5/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "es"
- },
- "lib/netstandard1.5/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "es"
- },
- "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "es"
- },
- "lib/netstandard1.5/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "fr"
- },
- "lib/netstandard1.5/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "fr"
- },
- "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "fr"
- },
- "lib/netstandard1.5/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "it"
- },
- "lib/netstandard1.5/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "it"
- },
- "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "it"
- },
- "lib/netstandard1.5/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "ja"
- },
- "lib/netstandard1.5/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "ja"
- },
- "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "ja"
- },
- "lib/netstandard1.5/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "ko"
- },
- "lib/netstandard1.5/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "ko"
- },
- "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "ko"
- },
- "lib/netstandard1.5/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "pl"
- },
- "lib/netstandard1.5/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "pl"
- },
- "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "pl"
- },
- "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netstandard1.5/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "ru"
- },
- "lib/netstandard1.5/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "ru"
- },
- "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "ru"
- },
- "lib/netstandard1.5/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "tr"
- },
- "lib/netstandard1.5/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "tr"
- },
- "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "tr"
- },
- "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "zh-Hant"
- },
- "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "zh-Hant"
- },
- "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Win32.Primitives/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "Microsoft.Win32.Registry/4.0.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "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.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0"
- }
- },
- "MSTest.TestAdapter/2.0.0": {
- "dependencies": {
- "NETStandard.Library": "1.6.1",
- "System.Diagnostics.TextWriterTraceListener": "4.3.0"
- }
- },
- "MSTest.TestFramework/2.0.0": {
- "runtime": {
- "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": {
- "assemblyVersion": "14.0.0.0",
- "fileVersion": "14.0.3930.6"
- },
- "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": {
- "assemblyVersion": "14.0.0.0",
- "fileVersion": "14.0.3930.6"
- }
- }
- },
- "NETStandard.Library/1.6.1": {
- "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/12.0.3": {
- "runtime": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {
- "assemblyVersion": "12.0.0.0",
- "fileVersion": "12.0.3.23909"
- }
- }
- },
- "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.native.System/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "runtime.native.System.IO.Compression/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "runtime.native.System.Net.Http/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "dependencies": {
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
- }
- },
- "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "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/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.Apple/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": {},
- "System.AppContext/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- }
- },
- "System.Buffers/4.3.0": {
- "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.Collections/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Collections.Concurrent/4.3.0": {
- "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/1.2.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "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.Threading": "4.3.0"
- }
- },
- "System.Collections.NonGeneric/4.0.1": {
- "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/4.0.1": {
- "dependencies": {
- "System.Collections.NonGeneric": "4.0.1",
- "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.ComponentModel/4.0.1": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- }
- },
- "System.ComponentModel.EventBasedAsync/4.0.11": {
- "dependencies": {
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.ComponentModel.Primitives/4.1.0": {
- "dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.ComponentModel.TypeConverter/4.1.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Collections.NonGeneric": "4.0.1",
- "System.Collections.Specialized": "4.0.1",
- "System.ComponentModel": "4.0.1",
- "System.ComponentModel.Primitives": "4.1.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.Console/4.3.0": {
- "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.Diagnostics.Debug/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Diagnostics.DiagnosticSource/4.3.0": {
- "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.Process/4.1.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.Win32.Primitives": "4.3.0",
- "Microsoft.Win32.Registry": "4.0.0",
- "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.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encoding.Extensions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Threading.Thread": "4.0.0",
- "System.Threading.ThreadPool": "4.0.10",
- "runtime.native.System": "4.3.0"
- }
- },
- "System.Diagnostics.TextWriterTraceListener/4.3.0": {
- "dependencies": {
- "System.Diagnostics.TraceSource": "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.Diagnostics.Tools/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Diagnostics.TraceSource/4.3.0": {
- "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/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Globalization/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Globalization.Calendars/4.3.0": {
- "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/4.3.0": {
- "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/4.3.0": {
- "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/4.3.0": {
- "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/4.3.0": {
- "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/4.3.0": {
- "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/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- }
- },
- "System.Linq/4.3.0": {
- "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/4.3.0": {
- "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.Net.Http/4.3.0": {
- "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/4.3.0": {
- "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/4.3.0": {
- "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.ObjectModel/4.3.0": {
- "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.DataContractSerialization/4.1.1": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "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.Reflection": "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.Runtime.Serialization.Primitives": "4.1.1",
- "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.Xml.ReaderWriter": "4.3.0",
- "System.Xml.XmlDocument": "4.0.1",
- "System.Xml.XmlSerializer": "4.0.11"
- }
- },
- "System.Reflection/4.3.0": {
- "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/4.3.0": {
- "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/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Emit.Lightweight/4.3.0": {
- "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/4.3.0": {
- "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/1.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Collections.Immutable": "1.2.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.IO": "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.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.Threading": "4.3.0"
- }
- },
- "System.Reflection.Primitives/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.TypeExtensions/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Resources.ResourceManager/4.3.0": {
- "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/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "System.Runtime.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime.Handles/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime.InteropServices/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- }
- },
- "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
- "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/4.0.0": {
- "dependencies": {
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime.Numerics/4.3.0": {
- "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.Json/4.0.2": {
- "dependencies": {
- "System.IO": "4.3.0",
- "System.Private.DataContractSerialization": "4.1.1",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime.Serialization.Primitives/4.1.1": {
- "dependencies": {
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Security.Cryptography.Algorithms/4.3.0": {
- "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/4.3.0": {
- "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/4.3.0": {
- "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/4.3.0": {
- "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/4.3.0": {
- "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/4.3.0": {
- "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/4.3.0": {
- "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.Text.Encoding/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Text.Encoding.Extensions/4.3.0": {
- "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.RegularExpressions/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- }
- },
- "System.Threading/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.Threading.Tasks/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Threading.Tasks.Extensions/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.Threading.Thread/4.0.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- }
- },
- "System.Threading.ThreadPool/4.0.10": {
- "dependencies": {
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- }
- },
- "System.Threading.Timer/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Xml.ReaderWriter/4.3.0": {
- "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/4.3.0": {
- "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/4.0.1": {
- "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"
- }
- },
- "System.Xml.XmlSerializer/4.0.11": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "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.Text.RegularExpressions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0",
- "System.Xml.XmlDocument": "4.0.1"
- }
- },
- "System.Xml.XPath/4.0.1": {
- "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.Threading": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0"
- }
- },
- "System.Xml.XPath.XmlDocument/4.0.1": {
- "dependencies": {
- "System.Collections": "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.Threading": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0",
- "System.Xml.XPath": "4.0.1",
- "System.Xml.XmlDocument": "4.0.1"
- },
- "runtime": {
- "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "1.0.24212.1"
- }
- }
- },
- "Trolley.NetCore.SDK/1.0.4": {
- "dependencies": {
- "Newtonsoft.Json": "12.0.3"
- },
- "runtime": {
- "Trolley.dll": {}
- }
- }
- }
- },
- "libraries": {
- "tests/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "coverlet.collector/1.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-RAuno8s7DBGo2IdV/1d8YSnXMd/728K3PBT5R6/kfGx1yunBZmavlaFQfhGe7Q7N2nUMkvVET+7ITn3+KSg+Uw==",
- "path": "coverlet.collector/1.0.1",
- "hashPath": "coverlet.collector.1.0.1.nupkg.sha512"
- },
- "Microsoft.CodeCoverage/16.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-fKiUOhhMP3IN1qM2tDHPWzW4JRbriFkIPiIzKUwMWT+Q+80bycxkLLCvxmVFoeA7gvWegNbTUjaX7mL3MM9XKg==",
- "path": "microsoft.codecoverage/16.2.0",
- "hashPath": "microsoft.codecoverage.16.2.0.nupkg.sha512"
- },
- "Microsoft.NET.Test.Sdk/16.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-56w1drIQqpMgg3IxHcfra/jXOngiD4pbl0j6TNeJMlOQGlZ8wCMlyRTvn6Crd/FgGjwKbWLurdOHNGrfzLtl6A==",
- "path": "microsoft.net.test.sdk/16.2.0",
- "hashPath": "microsoft.net.test.sdk.16.2.0.nupkg.sha512"
- },
- "Microsoft.NETCore.Platforms/1.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
- "path": "microsoft.netcore.platforms/1.1.0",
- "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
- "path": "microsoft.netcore.targets/1.1.0",
- "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
- },
- "Microsoft.TestPlatform.ObjectModel/16.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-RAyBf87uZ5XjRE953LlxqILpD1SqwQM6bXwxPUCAPPEy0uv12R+eKnFL7yaeLVHInMKkNNh1iD/cDOVDfSgllA==",
- "path": "microsoft.testplatform.objectmodel/16.2.0",
- "hashPath": "microsoft.testplatform.objectmodel.16.2.0.nupkg.sha512"
- },
- "Microsoft.TestPlatform.TestHost/16.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PogSQ40KgkZjEBdC6KBGpMtuvFFCIdoJAMmK7CAHWyTXCfN1cPN8j0TFJKh+LneSg+y0QQDP23STMF609KhHQw==",
- "path": "microsoft.testplatform.testhost/16.2.0",
- "hashPath": "microsoft.testplatform.testhost.16.2.0.nupkg.sha512"
- },
- "Microsoft.Win32.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
- "path": "microsoft.win32.primitives/4.3.0",
- "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
- },
- "Microsoft.Win32.Registry/4.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-q+eLtROUAQ3OxYA5mpQrgyFgzLQxIyrfT2eLpYX5IEPlHmIio2nh4F5bgOaQoGOV865kFKZZso9Oq9RlazvXtg==",
- "path": "microsoft.win32.registry/4.0.0",
- "hashPath": "microsoft.win32.registry.4.0.0.nupkg.sha512"
- },
- "MSTest.TestAdapter/2.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VoXDhx+a/44RmQYpkrYWe3D6AP6kjqibe02NOj1t8Zn9uo8e90gXW22SYj3geEwNTcEdMg2XMq0SI2P0Fl2Trw==",
- "path": "mstest.testadapter/2.0.0",
- "hashPath": "mstest.testadapter.2.0.0.nupkg.sha512"
- },
- "MSTest.TestFramework/2.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-gDlwhzIqdhUB+tirA80c6jUnlAsWBl2RXsKwmCbeZ1XkTjufrZIrBs7cvBdxbzddAEFOZuqfeCHJK/rp0vloZg==",
- "path": "mstest.testframework/2.0.0",
- "hashPath": "mstest.testframework.2.0.0.nupkg.sha512"
- },
- "NETStandard.Library/1.6.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
- "path": "netstandard.library/1.6.1",
- "hashPath": "netstandard.library.1.6.1.nupkg.sha512"
- },
- "Newtonsoft.Json/12.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
- "path": "newtonsoft.json/12.0.3",
- "hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
- },
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
- "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
- "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
- "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.native.System/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
- "path": "runtime.native.system/4.3.0",
- "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
- },
- "runtime.native.System.IO.Compression/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
- "path": "runtime.native.system.io.compression/4.3.0",
- "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512"
- },
- "runtime.native.System.Net.Http/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
- "path": "runtime.native.system.net.http/4.3.0",
- "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
- },
- "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
- "path": "runtime.native.system.security.cryptography.apple/4.3.0",
- "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
- },
- "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
- "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
- "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
- "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
- "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
- "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
- "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
- "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
- "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
- "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
- "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "System.AppContext/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
- "path": "system.appcontext/4.3.0",
- "hashPath": "system.appcontext.4.3.0.nupkg.sha512"
- },
- "System.Buffers/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
- "path": "system.buffers/4.3.0",
- "hashPath": "system.buffers.4.3.0.nupkg.sha512"
- },
- "System.Collections/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
- "path": "system.collections/4.3.0",
- "hashPath": "system.collections.4.3.0.nupkg.sha512"
- },
- "System.Collections.Concurrent/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
- "path": "system.collections.concurrent/4.3.0",
- "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
- },
- "System.Collections.Immutable/1.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Cma8cBW6di16ZLibL8LYQ+cLjGzoKxpOTu/faZfDcx94ZjAGq6Nv5RO7+T1YZXqEXTZP9rt1wLVEONVpURtUqw==",
- "path": "system.collections.immutable/1.2.0",
- "hashPath": "system.collections.immutable.1.2.0.nupkg.sha512"
- },
- "System.Collections.NonGeneric/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hMxFT2RhhlffyCdKLDXjx8WEC5JfCvNozAZxCablAuFRH74SCV4AgzE8yJCh/73bFnEoZgJ9MJmkjQ0dJmnKqA==",
- "path": "system.collections.nongeneric/4.0.1",
- "hashPath": "system.collections.nongeneric.4.0.1.nupkg.sha512"
- },
- "System.Collections.Specialized/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/HKQyVP0yH1I0YtK7KJL/28snxHNH/bi+0lgk/+MbURF6ULhAE31MDI+NZDerNWu264YbxklXCCygISgm+HMug==",
- "path": "system.collections.specialized/4.0.1",
- "hashPath": "system.collections.specialized.4.0.1.nupkg.sha512"
- },
- "System.ComponentModel/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==",
- "path": "system.componentmodel/4.0.1",
- "hashPath": "system.componentmodel.4.0.1.nupkg.sha512"
- },
- "System.ComponentModel.EventBasedAsync/4.0.11": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Z7SO6vvQIR84daPE4uhaNdef9CjgjDMGYkas8epUhf0U3WGuaGgZ0Mm4QuNycMdbHUY8KEdZrtgxonkAiJaAlA==",
- "path": "system.componentmodel.eventbasedasync/4.0.11",
- "hashPath": "system.componentmodel.eventbasedasync.4.0.11.nupkg.sha512"
- },
- "System.ComponentModel.Primitives/4.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-sc/7eVCdxPrp3ljpgTKVaQGUXiW05phNWvtv/m2kocXqrUQvTVWKou1Edas2aDjTThLPZOxPYIGNb/HN0QjURg==",
- "path": "system.componentmodel.primitives/4.1.0",
- "hashPath": "system.componentmodel.primitives.4.1.0.nupkg.sha512"
- },
- "System.ComponentModel.TypeConverter/4.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-MnDAlaeJZy9pdB5ZdOlwdxfpI+LJQ6e0hmH7d2+y2LkiD8DRJynyDYl4Xxf3fWFm7SbEwBZh4elcfzONQLOoQw==",
- "path": "system.componentmodel.typeconverter/4.1.0",
- "hashPath": "system.componentmodel.typeconverter.4.1.0.nupkg.sha512"
- },
- "System.Console/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
- "path": "system.console/4.3.0",
- "hashPath": "system.console.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.Debug/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
- "path": "system.diagnostics.debug/4.3.0",
- "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.DiagnosticSource/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==",
- "path": "system.diagnostics.diagnosticsource/4.3.0",
- "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.Process/4.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==",
- "path": "system.diagnostics.process/4.1.0",
- "hashPath": "system.diagnostics.process.4.1.0.nupkg.sha512"
- },
- "System.Diagnostics.TextWriterTraceListener/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-F11kHWeiwYjFWto+kr8tt9ULMH0k8MsT1XmdCGPTLYHhWgN+2g7JsIZiXDrxlFGccSNkbjfwQy4xIS38gzUiZA==",
- "path": "system.diagnostics.textwritertracelistener/4.3.0",
- "hashPath": "system.diagnostics.textwritertracelistener.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.Tools/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
- "path": "system.diagnostics.tools/4.3.0",
- "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.TraceSource/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==",
- "path": "system.diagnostics.tracesource/4.3.0",
- "hashPath": "system.diagnostics.tracesource.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.Tracing/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
- "path": "system.diagnostics.tracing/4.3.0",
- "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
- },
- "System.Globalization/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
- "path": "system.globalization/4.3.0",
- "hashPath": "system.globalization.4.3.0.nupkg.sha512"
- },
- "System.Globalization.Calendars/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
- "path": "system.globalization.calendars/4.3.0",
- "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
- },
- "System.Globalization.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
- "path": "system.globalization.extensions/4.3.0",
- "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
- },
- "System.IO/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
- "path": "system.io/4.3.0",
- "hashPath": "system.io.4.3.0.nupkg.sha512"
- },
- "System.IO.Compression/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
- "path": "system.io.compression/4.3.0",
- "hashPath": "system.io.compression.4.3.0.nupkg.sha512"
- },
- "System.IO.Compression.ZipFile/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
- "path": "system.io.compression.zipfile/4.3.0",
- "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512"
- },
- "System.IO.FileSystem/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
- "path": "system.io.filesystem/4.3.0",
- "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
- },
- "System.IO.FileSystem.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
- "path": "system.io.filesystem.primitives/4.3.0",
- "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
- },
- "System.Linq/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
- "path": "system.linq/4.3.0",
- "hashPath": "system.linq.4.3.0.nupkg.sha512"
- },
- "System.Linq.Expressions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
- "path": "system.linq.expressions/4.3.0",
- "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
- },
- "System.Net.Http/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
- "path": "system.net.http/4.3.0",
- "hashPath": "system.net.http.4.3.0.nupkg.sha512"
- },
- "System.Net.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
- "path": "system.net.primitives/4.3.0",
- "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
- },
- "System.Net.Sockets/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
- "path": "system.net.sockets/4.3.0",
- "hashPath": "system.net.sockets.4.3.0.nupkg.sha512"
- },
- "System.ObjectModel/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
- "path": "system.objectmodel/4.3.0",
- "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
- },
- "System.Private.DataContractSerialization/4.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lcqFBUaCZxPiUkA4dlSOoPZGtZsAuuElH2XHgLwGLxd7ZozWetV5yiz0qGAV2AUYOqw97MtZBjbLMN16Xz4vXA==",
- "path": "system.private.datacontractserialization/4.1.1",
- "hashPath": "system.private.datacontractserialization.4.1.1.nupkg.sha512"
- },
- "System.Reflection/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
- "path": "system.reflection/4.3.0",
- "hashPath": "system.reflection.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
- "path": "system.reflection.emit/4.3.0",
- "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
- "path": "system.reflection.emit.ilgeneration/4.3.0",
- "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit.Lightweight/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
- "path": "system.reflection.emit.lightweight/4.3.0",
- "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
- "path": "system.reflection.extensions/4.3.0",
- "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Metadata/1.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jMSCxA4LSyKBGRDm/WtfkO03FkcgRzHxwvQRib1bm2GZ8ifKM1MX1al6breGCEQK280mdl9uQS7JNPXRYk90jw==",
- "path": "system.reflection.metadata/1.3.0",
- "hashPath": "system.reflection.metadata.1.3.0.nupkg.sha512"
- },
- "System.Reflection.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
- "path": "system.reflection.primitives/4.3.0",
- "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
- },
- "System.Reflection.TypeExtensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
- "path": "system.reflection.typeextensions/4.3.0",
- "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
- },
- "System.Resources.ResourceManager/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
- "path": "system.resources.resourcemanager/4.3.0",
- "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
- },
- "System.Runtime/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
- "path": "system.runtime/4.3.0",
- "hashPath": "system.runtime.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
- "path": "system.runtime.extensions/4.3.0",
- "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Handles/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
- "path": "system.runtime.handles/4.3.0",
- "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
- },
- "System.Runtime.InteropServices/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
- "path": "system.runtime.interopservices/4.3.0",
- "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
- },
- "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
- "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
- "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Loader/4.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==",
- "path": "system.runtime.loader/4.0.0",
- "hashPath": "system.runtime.loader.4.0.0.nupkg.sha512"
- },
- "System.Runtime.Numerics/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
- "path": "system.runtime.numerics/4.3.0",
- "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Serialization.Json/4.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+7DIJhnKYgCzUgcLbVTtRQb2l1M0FP549XFlFkQM5lmNiUBl44AfNbx4bz61xA8PzLtlYwfmif4JJJW7MPPnjg==",
- "path": "system.runtime.serialization.json/4.0.2",
- "hashPath": "system.runtime.serialization.json.4.0.2.nupkg.sha512"
- },
- "System.Runtime.Serialization.Primitives/4.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==",
- "path": "system.runtime.serialization.primitives/4.1.1",
- "hashPath": "system.runtime.serialization.primitives.4.1.1.nupkg.sha512"
- },
- "System.Security.Cryptography.Algorithms/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
- "path": "system.security.cryptography.algorithms/4.3.0",
- "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Cng/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
- "path": "system.security.cryptography.cng/4.3.0",
- "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Csp/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
- "path": "system.security.cryptography.csp/4.3.0",
- "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Encoding/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
- "path": "system.security.cryptography.encoding/4.3.0",
- "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
- "path": "system.security.cryptography.openssl/4.3.0",
- "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
- "path": "system.security.cryptography.primitives/4.3.0",
- "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.X509Certificates/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
- "path": "system.security.cryptography.x509certificates/4.3.0",
- "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
- },
- "System.Text.Encoding/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
- "path": "system.text.encoding/4.3.0",
- "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
- },
- "System.Text.Encoding.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
- "path": "system.text.encoding.extensions/4.3.0",
- "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
- },
- "System.Text.RegularExpressions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
- "path": "system.text.regularexpressions/4.3.0",
- "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
- },
- "System.Threading/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
- "path": "system.threading/4.3.0",
- "hashPath": "system.threading.4.3.0.nupkg.sha512"
- },
- "System.Threading.Tasks/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
- "path": "system.threading.tasks/4.3.0",
- "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
- },
- "System.Threading.Tasks.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
- "path": "system.threading.tasks.extensions/4.3.0",
- "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512"
- },
- "System.Threading.Thread/4.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==",
- "path": "system.threading.thread/4.0.0",
- "hashPath": "system.threading.thread.4.0.0.nupkg.sha512"
- },
- "System.Threading.ThreadPool/4.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==",
- "path": "system.threading.threadpool/4.0.10",
- "hashPath": "system.threading.threadpool.4.0.10.nupkg.sha512"
- },
- "System.Threading.Timer/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
- "path": "system.threading.timer/4.3.0",
- "hashPath": "system.threading.timer.4.3.0.nupkg.sha512"
- },
- "System.Xml.ReaderWriter/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
- "path": "system.xml.readerwriter/4.3.0",
- "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
- },
- "System.Xml.XDocument/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
- "path": "system.xml.xdocument/4.3.0",
- "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
- },
- "System.Xml.XmlDocument/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==",
- "path": "system.xml.xmldocument/4.0.1",
- "hashPath": "system.xml.xmldocument.4.0.1.nupkg.sha512"
- },
- "System.Xml.XmlSerializer/4.0.11": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw==",
- "path": "system.xml.xmlserializer/4.0.11",
- "hashPath": "system.xml.xmlserializer.4.0.11.nupkg.sha512"
- },
- "System.Xml.XPath/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==",
- "path": "system.xml.xpath/4.0.1",
- "hashPath": "system.xml.xpath.4.0.1.nupkg.sha512"
- },
- "System.Xml.XPath.XmlDocument/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Zm2BdeanuncYs3NhCj4c9e1x3EXFzFBVv2wPEc/Dj4ZbI9R8ecLSR5frAsx4zJCPBtKQreQ7Q/KxJEohJZbfzA==",
- "path": "system.xml.xpath.xmldocument/4.0.1",
- "hashPath": "system.xml.xpath.xmldocument.4.0.1.nupkg.sha512"
- },
- "Trolley.NetCore.SDK/1.0.4": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- }
- }
-}
\ No newline at end of file
diff --git a/tests/bin/Release/netcoreapp3.1/tests.dll b/tests/bin/Release/netcoreapp3.1/tests.dll
deleted file mode 100644
index 4185915..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/tests.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/tests.pdb b/tests/bin/Release/netcoreapp3.1/tests.pdb
deleted file mode 100644
index 1198d10..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/tests.pdb and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/tests.runtimeconfig.dev.json b/tests/bin/Release/netcoreapp3.1/tests.runtimeconfig.dev.json
deleted file mode 100644
index da688d5..0000000
--- a/tests/bin/Release/netcoreapp3.1/tests.runtimeconfig.dev.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "runtimeOptions": {
- "additionalProbingPaths": [
- "C:\\Users\\Joshua\\.dotnet\\store\\|arch|\\|tfm|",
- "C:\\Users\\Joshua\\.nuget\\packages",
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
- ]
- }
-}
\ No newline at end of file
diff --git a/tests/bin/Release/netcoreapp3.1/tests.runtimeconfig.json b/tests/bin/Release/netcoreapp3.1/tests.runtimeconfig.json
deleted file mode 100644
index bc456d7..0000000
--- a/tests/bin/Release/netcoreapp3.1/tests.runtimeconfig.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "runtimeOptions": {
- "tfm": "netcoreapp3.1",
- "framework": {
- "name": "Microsoft.NETCore.App",
- "version": "3.1.0"
- }
- }
-}
\ No newline at end of file
diff --git a/tests/bin/Release/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/bin/Release/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
deleted file mode 100644
index 8d8c659..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/bin/Release/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll
deleted file mode 100644
index f2c726e..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/bin/Release/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
deleted file mode 100644
index f08f6d7..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/bin/Release/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
deleted file mode 100644
index 0dd7fc5..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/bin/Release/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
deleted file mode 100644
index b95bda9..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/bin/Release/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
deleted file mode 100644
index 5d96c0d..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/bin/Release/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll
deleted file mode 100644
index 8d9493f..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/bin/Release/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
deleted file mode 100644
index 8dd6d08..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/bin/Release/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
deleted file mode 100644
index 7bb6ee2..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/bin/Release/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
deleted file mode 100644
index 997aa60..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/bin/Release/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
deleted file mode 100644
index 4f89c6b..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/bin/Release/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll
deleted file mode 100644
index 09eec33..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/bin/Release/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
deleted file mode 100644
index ed9c8bc..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/bin/Release/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
deleted file mode 100644
index df168f3..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/bin/Release/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
deleted file mode 100644
index df61f1f..0000000
Binary files a/tests/bin/Release/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ
diff --git a/tests/bin/Release/netstandard1.3/tests.deps.json b/tests/bin/Release/netstandard1.3/tests.deps.json
deleted file mode 100644
index 5f32249..0000000
--- a/tests/bin/Release/netstandard1.3/tests.deps.json
+++ /dev/null
@@ -1,1376 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETStandard,Version=v1.3/",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETStandard,Version=v1.3": {},
- ".NETStandard,Version=v1.3/": {
- "tests/1.0.0": {
- "dependencies": {
- "MSTest.TestAdapter": "2.0.0",
- "MSTest.TestFramework": "2.0.0",
- "Microsoft.NET.Test.Sdk": "16.2.0",
- "NETStandard.Library": "1.6.1",
- "Trolley.NetCore.SDK": "1.0.7",
- "coverlet.collector": "1.0.1"
- },
- "runtime": {
- "tests.dll": {}
- }
- },
- "coverlet.collector/1.0.1": {},
- "Microsoft.CSharp/4.3.0": {
- "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"
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.CSharp.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "Microsoft.NET.Test.Sdk/16.2.0": {},
- "Microsoft.NETCore.Platforms/1.1.0": {},
- "Microsoft.NETCore.Targets/1.1.0": {},
- "Microsoft.Win32.Primitives/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "MSTest.TestAdapter/2.0.0": {},
- "MSTest.TestFramework/2.0.0": {
- "runtime": {
- "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": {
- "assemblyVersion": "14.0.0.0",
- "fileVersion": "14.0.3930.6"
- },
- "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": {
- "assemblyVersion": "14.0.0.0",
- "fileVersion": "14.0.3930.6"
- }
- }
- },
- "NETStandard.Library/1.6.1": {
- "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/12.0.3": {
- "dependencies": {
- "Microsoft.CSharp": "4.3.0",
- "NETStandard.Library": "1.6.1",
- "System.ComponentModel.TypeConverter": "4.3.0",
- "System.Runtime.Serialization.Formatters": "4.3.0",
- "System.Runtime.Serialization.Primitives": "4.3.0",
- "System.Xml.XmlDocument": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/Newtonsoft.Json.dll": {
- "assemblyVersion": "12.0.0.0",
- "fileVersion": "12.0.3.23909"
- }
- }
- },
- "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.native.System/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "runtime.native.System.IO.Compression/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "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/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": {},
- "System.AppContext/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- }
- },
- "System.Buffers/4.3.0": {
- "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"
- },
- "runtime": {
- "lib/netstandard1.1/System.Buffers.dll": {
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Collections/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Collections.Concurrent/4.3.0": {
- "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"
- },
- "runtime": {
- "lib/netstandard1.3/System.Collections.Concurrent.dll": {
- "assemblyVersion": "4.0.13.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.ComponentModel/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.ComponentModel.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.ComponentModel.Primitives/4.3.0": {
- "dependencies": {
- "System.ComponentModel": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.ComponentModel.TypeConverter/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.ComponentModel": "4.3.0",
- "System.ComponentModel.Primitives": "4.3.0",
- "System.Globalization": "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.Threading": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Console/4.3.0": {
- "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.Diagnostics.Debug/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Diagnostics.DiagnosticSource/4.3.0": {
- "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"
- },
- "runtime": {
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Diagnostics.Tools/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Diagnostics.Tracing/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Dynamic.Runtime/4.3.0": {
- "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"
- },
- "runtime": {
- "lib/netstandard1.3/System.Dynamic.Runtime.dll": {
- "assemblyVersion": "4.0.12.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Globalization/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Globalization.Calendars/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.IO/4.3.0": {
- "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/4.3.0": {
- "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/4.3.0": {
- "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"
- },
- "runtime": {
- "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.IO.FileSystem/4.3.0": {
- "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/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Linq/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Linq.Expressions/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Net.Http/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.Win32.Primitives": "4.3.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.IO": "4.3.0",
- "System.IO.Compression": "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.X509Certificates": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.Net.Primitives/4.3.0": {
- "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/4.3.0": {
- "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.ObjectModel/4.3.0": {
- "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"
- },
- "runtime": {
- "lib/netstandard1.3/System.ObjectModel.dll": {
- "assemblyVersion": "4.0.13.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Reflection/4.3.0": {
- "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/4.3.0": {
- "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"
- },
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Emit.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Reflection.Extensions/4.3.0": {
- "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.Primitives/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.TypeExtensions/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Resources.ResourceManager/4.3.0": {
- "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/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "System.Runtime.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime.Handles/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime.InteropServices/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- }
- },
- "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
- "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"
- },
- "runtime": {
- "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Runtime.Numerics/4.3.0": {
- "dependencies": {
- "System.Globalization": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Runtime.Numerics.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Runtime.Serialization.Formatters/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0",
- "System.Runtime.Serialization.Primitives": "4.3.0"
- }
- },
- "System.Runtime.Serialization.Primitives/4.3.0": {
- "dependencies": {
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Security.Cryptography.Algorithms/4.3.0": {
- "dependencies": {
- "System.IO": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0"
- }
- },
- "System.Security.Cryptography.Encoding/4.3.0": {
- "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.Primitives/4.3.0": {
- "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"
- },
- "runtime": {
- "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Security.Cryptography.X509Certificates/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0"
- }
- },
- "System.Text.Encoding/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Text.Encoding.Extensions/4.3.0": {
- "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.RegularExpressions/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- }
- },
- "System.Threading/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Threading.dll": {
- "assemblyVersion": "4.0.12.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Threading.Tasks/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Threading.Tasks.Extensions/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {
- "assemblyVersion": "4.1.0.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Threading.Timer/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Xml.ReaderWriter/4.3.0": {
- "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"
- },
- "runtime": {
- "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {
- "assemblyVersion": "4.1.0.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Xml.XDocument/4.3.0": {
- "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"
- },
- "runtime": {
- "lib/netstandard1.3/System.Xml.XDocument.dll": {
- "assemblyVersion": "4.0.12.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Xml.XmlDocument/4.3.0": {
- "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"
- },
- "runtime": {
- "lib/netstandard1.3/System.Xml.XmlDocument.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "Trolley.NetCore.SDK/1.0.7": {
- "dependencies": {
- "NETStandard.Library": "1.6.1",
- "Newtonsoft.Json": "12.0.3"
- },
- "runtime": {
- "Trolley.dll": {}
- }
- }
- }
- },
- "libraries": {
- "tests/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "coverlet.collector/1.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-RAuno8s7DBGo2IdV/1d8YSnXMd/728K3PBT5R6/kfGx1yunBZmavlaFQfhGe7Q7N2nUMkvVET+7ITn3+KSg+Uw==",
- "path": "coverlet.collector/1.0.1",
- "hashPath": "coverlet.collector.1.0.1.nupkg.sha512"
- },
- "Microsoft.CSharp/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
- "path": "microsoft.csharp/4.3.0",
- "hashPath": "microsoft.csharp.4.3.0.nupkg.sha512"
- },
- "Microsoft.NET.Test.Sdk/16.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-56w1drIQqpMgg3IxHcfra/jXOngiD4pbl0j6TNeJMlOQGlZ8wCMlyRTvn6Crd/FgGjwKbWLurdOHNGrfzLtl6A==",
- "path": "microsoft.net.test.sdk/16.2.0",
- "hashPath": "microsoft.net.test.sdk.16.2.0.nupkg.sha512"
- },
- "Microsoft.NETCore.Platforms/1.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
- "path": "microsoft.netcore.platforms/1.1.0",
- "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
- "path": "microsoft.netcore.targets/1.1.0",
- "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
- },
- "Microsoft.Win32.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
- "path": "microsoft.win32.primitives/4.3.0",
- "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
- },
- "MSTest.TestAdapter/2.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VoXDhx+a/44RmQYpkrYWe3D6AP6kjqibe02NOj1t8Zn9uo8e90gXW22SYj3geEwNTcEdMg2XMq0SI2P0Fl2Trw==",
- "path": "mstest.testadapter/2.0.0",
- "hashPath": "mstest.testadapter.2.0.0.nupkg.sha512"
- },
- "MSTest.TestFramework/2.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-gDlwhzIqdhUB+tirA80c6jUnlAsWBl2RXsKwmCbeZ1XkTjufrZIrBs7cvBdxbzddAEFOZuqfeCHJK/rp0vloZg==",
- "path": "mstest.testframework/2.0.0",
- "hashPath": "mstest.testframework.2.0.0.nupkg.sha512"
- },
- "NETStandard.Library/1.6.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
- "path": "netstandard.library/1.6.1",
- "hashPath": "netstandard.library.1.6.1.nupkg.sha512"
- },
- "Newtonsoft.Json/12.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
- "path": "newtonsoft.json/12.0.3",
- "hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
- },
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
- "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
- "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
- "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.native.System/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
- "path": "runtime.native.system/4.3.0",
- "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
- },
- "runtime.native.System.IO.Compression/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
- "path": "runtime.native.system.io.compression/4.3.0",
- "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512"
- },
- "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
- "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
- "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
- "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
- "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
- "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
- "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
- "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
- "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "System.AppContext/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
- "path": "system.appcontext/4.3.0",
- "hashPath": "system.appcontext.4.3.0.nupkg.sha512"
- },
- "System.Buffers/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
- "path": "system.buffers/4.3.0",
- "hashPath": "system.buffers.4.3.0.nupkg.sha512"
- },
- "System.Collections/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
- "path": "system.collections/4.3.0",
- "hashPath": "system.collections.4.3.0.nupkg.sha512"
- },
- "System.Collections.Concurrent/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
- "path": "system.collections.concurrent/4.3.0",
- "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
- },
- "System.ComponentModel/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
- "path": "system.componentmodel/4.3.0",
- "hashPath": "system.componentmodel.4.3.0.nupkg.sha512"
- },
- "System.ComponentModel.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
- "path": "system.componentmodel.primitives/4.3.0",
- "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512"
- },
- "System.ComponentModel.TypeConverter/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
- "path": "system.componentmodel.typeconverter/4.3.0",
- "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512"
- },
- "System.Console/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
- "path": "system.console/4.3.0",
- "hashPath": "system.console.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.Debug/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
- "path": "system.diagnostics.debug/4.3.0",
- "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.DiagnosticSource/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==",
- "path": "system.diagnostics.diagnosticsource/4.3.0",
- "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.Tools/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
- "path": "system.diagnostics.tools/4.3.0",
- "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.Tracing/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
- "path": "system.diagnostics.tracing/4.3.0",
- "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
- },
- "System.Dynamic.Runtime/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
- "path": "system.dynamic.runtime/4.3.0",
- "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512"
- },
- "System.Globalization/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
- "path": "system.globalization/4.3.0",
- "hashPath": "system.globalization.4.3.0.nupkg.sha512"
- },
- "System.Globalization.Calendars/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
- "path": "system.globalization.calendars/4.3.0",
- "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
- },
- "System.IO/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
- "path": "system.io/4.3.0",
- "hashPath": "system.io.4.3.0.nupkg.sha512"
- },
- "System.IO.Compression/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
- "path": "system.io.compression/4.3.0",
- "hashPath": "system.io.compression.4.3.0.nupkg.sha512"
- },
- "System.IO.Compression.ZipFile/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
- "path": "system.io.compression.zipfile/4.3.0",
- "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512"
- },
- "System.IO.FileSystem/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
- "path": "system.io.filesystem/4.3.0",
- "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
- },
- "System.IO.FileSystem.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
- "path": "system.io.filesystem.primitives/4.3.0",
- "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
- },
- "System.Linq/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
- "path": "system.linq/4.3.0",
- "hashPath": "system.linq.4.3.0.nupkg.sha512"
- },
- "System.Linq.Expressions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
- "path": "system.linq.expressions/4.3.0",
- "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
- },
- "System.Net.Http/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
- "path": "system.net.http/4.3.0",
- "hashPath": "system.net.http.4.3.0.nupkg.sha512"
- },
- "System.Net.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
- "path": "system.net.primitives/4.3.0",
- "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
- },
- "System.Net.Sockets/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
- "path": "system.net.sockets/4.3.0",
- "hashPath": "system.net.sockets.4.3.0.nupkg.sha512"
- },
- "System.ObjectModel/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
- "path": "system.objectmodel/4.3.0",
- "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
- },
- "System.Reflection/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
- "path": "system.reflection/4.3.0",
- "hashPath": "system.reflection.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
- "path": "system.reflection.emit/4.3.0",
- "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
- "path": "system.reflection.emit.ilgeneration/4.3.0",
- "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
- "path": "system.reflection.extensions/4.3.0",
- "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
- "path": "system.reflection.primitives/4.3.0",
- "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
- },
- "System.Reflection.TypeExtensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
- "path": "system.reflection.typeextensions/4.3.0",
- "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
- },
- "System.Resources.ResourceManager/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
- "path": "system.resources.resourcemanager/4.3.0",
- "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
- },
- "System.Runtime/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
- "path": "system.runtime/4.3.0",
- "hashPath": "system.runtime.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
- "path": "system.runtime.extensions/4.3.0",
- "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Handles/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
- "path": "system.runtime.handles/4.3.0",
- "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
- },
- "System.Runtime.InteropServices/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
- "path": "system.runtime.interopservices/4.3.0",
- "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
- },
- "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
- "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
- "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Numerics/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
- "path": "system.runtime.numerics/4.3.0",
- "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Serialization.Formatters/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
- "path": "system.runtime.serialization.formatters/4.3.0",
- "hashPath": "system.runtime.serialization.formatters.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Serialization.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
- "path": "system.runtime.serialization.primitives/4.3.0",
- "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Algorithms/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
- "path": "system.security.cryptography.algorithms/4.3.0",
- "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Encoding/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
- "path": "system.security.cryptography.encoding/4.3.0",
- "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
- "path": "system.security.cryptography.primitives/4.3.0",
- "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.X509Certificates/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
- "path": "system.security.cryptography.x509certificates/4.3.0",
- "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
- },
- "System.Text.Encoding/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
- "path": "system.text.encoding/4.3.0",
- "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
- },
- "System.Text.Encoding.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
- "path": "system.text.encoding.extensions/4.3.0",
- "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
- },
- "System.Text.RegularExpressions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
- "path": "system.text.regularexpressions/4.3.0",
- "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
- },
- "System.Threading/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
- "path": "system.threading/4.3.0",
- "hashPath": "system.threading.4.3.0.nupkg.sha512"
- },
- "System.Threading.Tasks/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
- "path": "system.threading.tasks/4.3.0",
- "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
- },
- "System.Threading.Tasks.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
- "path": "system.threading.tasks.extensions/4.3.0",
- "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512"
- },
- "System.Threading.Timer/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
- "path": "system.threading.timer/4.3.0",
- "hashPath": "system.threading.timer.4.3.0.nupkg.sha512"
- },
- "System.Xml.ReaderWriter/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
- "path": "system.xml.readerwriter/4.3.0",
- "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
- },
- "System.Xml.XDocument/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
- "path": "system.xml.xdocument/4.3.0",
- "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
- },
- "System.Xml.XmlDocument/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
- "path": "system.xml.xmldocument/4.3.0",
- "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512"
- },
- "Trolley.NetCore.SDK/1.0.7": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- }
- }
-}
\ No newline at end of file
diff --git a/tests/bin/Release/netstandard1.3/tests.dll b/tests/bin/Release/netstandard1.3/tests.dll
deleted file mode 100644
index fd4a832..0000000
Binary files a/tests/bin/Release/netstandard1.3/tests.dll and /dev/null differ
diff --git a/tests/bin/Release/netstandard1.3/tests.pdb b/tests/bin/Release/netstandard1.3/tests.pdb
deleted file mode 100644
index e410b69..0000000
Binary files a/tests/bin/Release/netstandard1.3/tests.pdb and /dev/null differ
diff --git a/tests/config.cs b/tests/config.cs
index 97e4dc4..2d52007 100644
--- a/tests/config.cs
+++ b/tests/config.cs
@@ -14,6 +14,9 @@ class Config
public Config()
{
+ ACCESS_KEY = Environment.GetEnvironmentVariable("TROLLEY_ACCESS_KEY") ?? Environment.GetEnvironmentVariable("ACCESS_KEY") ?? "";
+ SECRET_KEY = Environment.GetEnvironmentVariable("TROLLEY_SECRET_KEY") ?? Environment.GetEnvironmentVariable("SECRET_KEY") ?? "";
+ BASE_URL = Environment.GetEnvironmentVariable("TROLLEY_API_BASE_URL") ?? Environment.GetEnvironmentVariable("BASE_URL") ?? "";
string filePath = Path.Combine("../../../", ".env");
@@ -38,22 +41,22 @@ public Config()
if (apiKeys.ContainsKey("ACCESS_KEY"))
{
- this.ACCESS_KEY = apiKeys["ACCESS_KEY"];
+ ACCESS_KEY = apiKeys["ACCESS_KEY"];
}
if (apiKeys.ContainsKey("SECRET_KEY"))
{
- this.SECRET_KEY = apiKeys["SECRET_KEY"];
+ SECRET_KEY = apiKeys["SECRET_KEY"];
}
if (apiKeys.ContainsKey("BASE_URL"))
{
- this.BASE_URL = apiKeys["BASE_URL"];
+ BASE_URL = apiKeys["BASE_URL"];
}
if (apiKeys.ContainsKey("RECIPIENT_ID"))
{
- this.RECIPIENT_ID = apiKeys["RECIPIENT_ID"];
+ RECIPIENT_ID = apiKeys["RECIPIENT_ID"];
}
}
else
diff --git a/tests/obj/Debug/netcoreapp2.0/.NETCoreApp,Version=v2.0.AssemblyAttributes.cs b/tests/obj/Debug/netcoreapp2.0/.NETCoreApp,Version=v2.0.AssemblyAttributes.cs
deleted file mode 100644
index d6ed338..0000000
--- a/tests/obj/Debug/netcoreapp2.0/.NETCoreApp,Version=v2.0.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v2.0", FrameworkDisplayName = "")]
diff --git a/tests/obj/Debug/netcoreapp2.0/tests.AssemblyInfo.cs b/tests/obj/Debug/netcoreapp2.0/tests.AssemblyInfo.cs
deleted file mode 100644
index cc146d2..0000000
--- a/tests/obj/Debug/netcoreapp2.0/tests.AssemblyInfo.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Reflection;
-
-[assembly: System.Reflection.AssemblyCompanyAttribute("tests")]
-[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
-[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
-[assembly: System.Reflection.AssemblyProductAttribute("tests")]
-[assembly: System.Reflection.AssemblyTitleAttribute("tests")]
-[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
-
-// Generated by the MSBuild WriteCodeFragment class.
-
diff --git a/tests/obj/Debug/netcoreapp2.0/tests.AssemblyInfoInputs.cache b/tests/obj/Debug/netcoreapp2.0/tests.AssemblyInfoInputs.cache
deleted file mode 100644
index 093e6ab..0000000
--- a/tests/obj/Debug/netcoreapp2.0/tests.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-d3b369aba622e2e84525614faf01b0288137ac6a
diff --git a/tests/obj/Debug/netcoreapp2.0/tests.GeneratedMSBuildEditorConfig.editorconfig b/tests/obj/Debug/netcoreapp2.0/tests.GeneratedMSBuildEditorConfig.editorconfig
deleted file mode 100644
index e48289b..0000000
--- a/tests/obj/Debug/netcoreapp2.0/tests.GeneratedMSBuildEditorConfig.editorconfig
+++ /dev/null
@@ -1,3 +0,0 @@
-is_global = true
-build_property.RootNamespace = tests
-build_property.ProjectDir = /Users/amanalam/src/sdk_dotnet/tests/
diff --git a/tests/obj/Debug/netcoreapp2.0/tests.assets.cache b/tests/obj/Debug/netcoreapp2.0/tests.assets.cache
deleted file mode 100644
index a261d90..0000000
Binary files a/tests/obj/Debug/netcoreapp2.0/tests.assets.cache and /dev/null differ
diff --git a/tests/obj/Debug/netcoreapp2.0/tests.csproj.AssemblyReference.cache b/tests/obj/Debug/netcoreapp2.0/tests.csproj.AssemblyReference.cache
deleted file mode 100644
index 827bb99..0000000
Binary files a/tests/obj/Debug/netcoreapp2.0/tests.csproj.AssemblyReference.cache and /dev/null differ
diff --git a/tests/obj/Debug/netcoreapp2.0/tests.csproj.CopyComplete b/tests/obj/Debug/netcoreapp2.0/tests.csproj.CopyComplete
deleted file mode 100644
index e69de29..0000000
diff --git a/tests/obj/Debug/netcoreapp2.0/tests.csproj.CoreCompileInputs.cache b/tests/obj/Debug/netcoreapp2.0/tests.csproj.CoreCompileInputs.cache
deleted file mode 100644
index be7351b..0000000
--- a/tests/obj/Debug/netcoreapp2.0/tests.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-4e56067a39fa4b7b0a20d0e44e420b6bc4acb502
diff --git a/tests/obj/Debug/netcoreapp2.0/tests.csproj.FileListAbsolute.txt b/tests/obj/Debug/netcoreapp2.0/tests.csproj.FileListAbsolute.txt
deleted file mode 100644
index 44083c2..0000000
--- a/tests/obj/Debug/netcoreapp2.0/tests.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,40 +0,0 @@
-/Users/joshua/Documents/git/dotnet-sdk/tests/bin/Debug/netcoreapp2.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll
-/Users/joshua/Documents/git/dotnet-sdk/tests/bin/Debug/netcoreapp2.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll
-/Users/joshua/Documents/git/dotnet-sdk/tests/bin/Debug/netcoreapp2.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll
-/Users/joshua/Documents/git/dotnet-sdk/tests/bin/Debug/netcoreapp2.0/tests.deps.json
-/Users/joshua/Documents/git/dotnet-sdk/tests/bin/Debug/netcoreapp2.0/tests.runtimeconfig.json
-/Users/joshua/Documents/git/dotnet-sdk/tests/bin/Debug/netcoreapp2.0/tests.runtimeconfig.dev.json
-/Users/joshua/Documents/git/dotnet-sdk/tests/bin/Debug/netcoreapp2.0/tests.dll
-/Users/joshua/Documents/git/dotnet-sdk/tests/bin/Debug/netcoreapp2.0/tests.pdb
-/Users/joshua/Documents/git/dotnet-sdk/tests/bin/Debug/netcoreapp2.0/Trolley.dll
-/Users/joshua/Documents/git/dotnet-sdk/tests/bin/Debug/netcoreapp2.0/Trolley.pdb
-/Users/joshua/Documents/git/dotnet-sdk/tests/bin/Debug/netcoreapp2.0/Trolley.dll.config
-/Users/joshua/Documents/git/dotnet-sdk/tests/obj/Debug/netcoreapp2.0/tests.GeneratedMSBuildEditorConfig.editorconfig
-/Users/joshua/Documents/git/dotnet-sdk/tests/obj/Debug/netcoreapp2.0/tests.AssemblyInfoInputs.cache
-/Users/joshua/Documents/git/dotnet-sdk/tests/obj/Debug/netcoreapp2.0/tests.AssemblyInfo.cs
-/Users/joshua/Documents/git/dotnet-sdk/tests/obj/Debug/netcoreapp2.0/tests.csproj.CoreCompileInputs.cache
-/Users/joshua/Documents/git/dotnet-sdk/tests/obj/Debug/netcoreapp2.0/tests.csproj.CopyComplete
-/Users/joshua/Documents/git/dotnet-sdk/tests/obj/Debug/netcoreapp2.0/tests.dll
-/Users/joshua/Documents/git/dotnet-sdk/tests/obj/Debug/netcoreapp2.0/tests.pdb
-/Users/joshua/Documents/git/dotnet-sdk/tests/obj/Debug/netcoreapp2.0/tests.genruntimeconfig.cache
-/Users/joshua/Documents/git/dotnet-sdk/tests/obj/Debug/netcoreapp2.0/tests.csproj.AssemblyReference.cache
-/Users/amanalam/src/sdk_dotnet/tests/bin/Debug/netcoreapp2.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll
-/Users/amanalam/src/sdk_dotnet/tests/bin/Debug/netcoreapp2.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll
-/Users/amanalam/src/sdk_dotnet/tests/bin/Debug/netcoreapp2.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll
-/Users/amanalam/src/sdk_dotnet/tests/bin/Debug/netcoreapp2.0/tests.deps.json
-/Users/amanalam/src/sdk_dotnet/tests/bin/Debug/netcoreapp2.0/tests.runtimeconfig.json
-/Users/amanalam/src/sdk_dotnet/tests/bin/Debug/netcoreapp2.0/tests.runtimeconfig.dev.json
-/Users/amanalam/src/sdk_dotnet/tests/bin/Debug/netcoreapp2.0/tests.dll
-/Users/amanalam/src/sdk_dotnet/tests/bin/Debug/netcoreapp2.0/tests.pdb
-/Users/amanalam/src/sdk_dotnet/tests/bin/Debug/netcoreapp2.0/Trolley.dll
-/Users/amanalam/src/sdk_dotnet/tests/bin/Debug/netcoreapp2.0/Trolley.pdb
-/Users/amanalam/src/sdk_dotnet/tests/bin/Debug/netcoreapp2.0/Trolley.dll.config
-/Users/amanalam/src/sdk_dotnet/tests/obj/Debug/netcoreapp2.0/tests.csproj.AssemblyReference.cache
-/Users/amanalam/src/sdk_dotnet/tests/obj/Debug/netcoreapp2.0/tests.GeneratedMSBuildEditorConfig.editorconfig
-/Users/amanalam/src/sdk_dotnet/tests/obj/Debug/netcoreapp2.0/tests.AssemblyInfoInputs.cache
-/Users/amanalam/src/sdk_dotnet/tests/obj/Debug/netcoreapp2.0/tests.AssemblyInfo.cs
-/Users/amanalam/src/sdk_dotnet/tests/obj/Debug/netcoreapp2.0/tests.csproj.CoreCompileInputs.cache
-/Users/amanalam/src/sdk_dotnet/tests/obj/Debug/netcoreapp2.0/tests.csproj.CopyComplete
-/Users/amanalam/src/sdk_dotnet/tests/obj/Debug/netcoreapp2.0/tests.dll
-/Users/amanalam/src/sdk_dotnet/tests/obj/Debug/netcoreapp2.0/tests.pdb
-/Users/amanalam/src/sdk_dotnet/tests/obj/Debug/netcoreapp2.0/tests.genruntimeconfig.cache
diff --git a/tests/obj/Debug/netcoreapp2.0/tests.csprojAssemblyReference.cache b/tests/obj/Debug/netcoreapp2.0/tests.csprojAssemblyReference.cache
deleted file mode 100644
index 8bbbca7..0000000
Binary files a/tests/obj/Debug/netcoreapp2.0/tests.csprojAssemblyReference.cache and /dev/null differ
diff --git a/tests/obj/Debug/netcoreapp2.0/tests.dll b/tests/obj/Debug/netcoreapp2.0/tests.dll
deleted file mode 100644
index a209820..0000000
Binary files a/tests/obj/Debug/netcoreapp2.0/tests.dll and /dev/null differ
diff --git a/tests/obj/Debug/netcoreapp2.0/tests.genruntimeconfig.cache b/tests/obj/Debug/netcoreapp2.0/tests.genruntimeconfig.cache
deleted file mode 100644
index ecade13..0000000
--- a/tests/obj/Debug/netcoreapp2.0/tests.genruntimeconfig.cache
+++ /dev/null
@@ -1 +0,0 @@
-38892c9082a095d451d116eae59e66cdc0fad623
diff --git a/tests/obj/Debug/netcoreapp2.0/tests.pdb b/tests/obj/Debug/netcoreapp2.0/tests.pdb
deleted file mode 100644
index cfc0641..0000000
Binary files a/tests/obj/Debug/netcoreapp2.0/tests.pdb and /dev/null differ
diff --git a/tests/obj/Debug/netcoreapp3.1/tests.AssemblyInfo.cs b/tests/obj/Debug/netcoreapp3.1/tests.AssemblyInfo.cs
deleted file mode 100644
index 64e9e1c..0000000
--- a/tests/obj/Debug/netcoreapp3.1/tests.AssemblyInfo.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.42000
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Reflection;
-
-[assembly: System.Reflection.AssemblyCompanyAttribute("tests")]
-[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
-[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
-[assembly: System.Reflection.AssemblyProductAttribute("tests")]
-[assembly: System.Reflection.AssemblyTitleAttribute("tests")]
-[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
-
-// Generated by the MSBuild WriteCodeFragment class.
-
diff --git a/tests/obj/Debug/netcoreapp3.1/tests.AssemblyInfoInputs.cache b/tests/obj/Debug/netcoreapp3.1/tests.AssemblyInfoInputs.cache
deleted file mode 100644
index 093e6ab..0000000
--- a/tests/obj/Debug/netcoreapp3.1/tests.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-d3b369aba622e2e84525614faf01b0288137ac6a
diff --git a/tests/obj/Debug/netcoreapp3.1/tests.assets.cache b/tests/obj/Debug/netcoreapp3.1/tests.assets.cache
deleted file mode 100644
index 3316159..0000000
Binary files a/tests/obj/Debug/netcoreapp3.1/tests.assets.cache and /dev/null differ
diff --git a/tests/obj/Debug/netcoreapp3.1/tests.csprojAssemblyReference.cache b/tests/obj/Debug/netcoreapp3.1/tests.csprojAssemblyReference.cache
deleted file mode 100644
index 6390322..0000000
Binary files a/tests/obj/Debug/netcoreapp3.1/tests.csprojAssemblyReference.cache and /dev/null differ
diff --git a/tests/obj/Debug/netstandard1.3/.NETStandard,Version=v1.3.AssemblyAttributes.cs b/tests/obj/Debug/netstandard1.3/.NETStandard,Version=v1.3.AssemblyAttributes.cs
deleted file mode 100644
index f104032..0000000
--- a/tests/obj/Debug/netstandard1.3/.NETStandard,Version=v1.3.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v1.3", FrameworkDisplayName = "")]
diff --git a/tests/obj/Debug/netstandard1.3/tests.AssemblyInfo.cs b/tests/obj/Debug/netstandard1.3/tests.AssemblyInfo.cs
deleted file mode 100644
index cc146d2..0000000
--- a/tests/obj/Debug/netstandard1.3/tests.AssemblyInfo.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Reflection;
-
-[assembly: System.Reflection.AssemblyCompanyAttribute("tests")]
-[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
-[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
-[assembly: System.Reflection.AssemblyProductAttribute("tests")]
-[assembly: System.Reflection.AssemblyTitleAttribute("tests")]
-[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
-
-// Generated by the MSBuild WriteCodeFragment class.
-
diff --git a/tests/obj/Debug/netstandard1.3/tests.AssemblyInfoInputs.cache b/tests/obj/Debug/netstandard1.3/tests.AssemblyInfoInputs.cache
deleted file mode 100644
index 093e6ab..0000000
--- a/tests/obj/Debug/netstandard1.3/tests.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-d3b369aba622e2e84525614faf01b0288137ac6a
diff --git a/tests/obj/Debug/netstandard1.3/tests.GeneratedMSBuildEditorConfig.editorconfig b/tests/obj/Debug/netstandard1.3/tests.GeneratedMSBuildEditorConfig.editorconfig
deleted file mode 100644
index e48289b..0000000
--- a/tests/obj/Debug/netstandard1.3/tests.GeneratedMSBuildEditorConfig.editorconfig
+++ /dev/null
@@ -1,3 +0,0 @@
-is_global = true
-build_property.RootNamespace = tests
-build_property.ProjectDir = /Users/amanalam/src/sdk_dotnet/tests/
diff --git a/tests/obj/Debug/netstandard1.3/tests.assets.cache b/tests/obj/Debug/netstandard1.3/tests.assets.cache
deleted file mode 100644
index e8c4c5f..0000000
Binary files a/tests/obj/Debug/netstandard1.3/tests.assets.cache and /dev/null differ
diff --git a/tests/obj/Debug/netstandard1.3/tests.csproj.AssemblyReference.cache b/tests/obj/Debug/netstandard1.3/tests.csproj.AssemblyReference.cache
deleted file mode 100644
index 5c4ba72..0000000
Binary files a/tests/obj/Debug/netstandard1.3/tests.csproj.AssemblyReference.cache and /dev/null differ
diff --git a/tests/obj/Debug/netstandard1.3/tests.csproj.CopyComplete b/tests/obj/Debug/netstandard1.3/tests.csproj.CopyComplete
deleted file mode 100644
index e69de29..0000000
diff --git a/tests/obj/Debug/netstandard1.3/tests.csproj.CoreCompileInputs.cache b/tests/obj/Debug/netstandard1.3/tests.csproj.CoreCompileInputs.cache
deleted file mode 100644
index 837938c..0000000
--- a/tests/obj/Debug/netstandard1.3/tests.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-8a1b79e944cbcb1a041d7df866874fd900c81216
diff --git a/tests/obj/Debug/netstandard1.3/tests.csproj.FileListAbsolute.txt b/tests/obj/Debug/netstandard1.3/tests.csproj.FileListAbsolute.txt
deleted file mode 100644
index f0bd280..0000000
--- a/tests/obj/Debug/netstandard1.3/tests.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,51 +0,0 @@
-<<<<<<< HEAD
-/Users/joshua/Documents/git/dotnet-sdk/tests/bin/Debug/netstandard1.3/tests.deps.json
-/Users/joshua/Documents/git/dotnet-sdk/tests/bin/Debug/netstandard1.3/tests.dll
-/Users/joshua/Documents/git/dotnet-sdk/tests/bin/Debug/netstandard1.3/tests.pdb
-/Users/joshua/Documents/git/dotnet-sdk/tests/bin/Debug/netstandard1.3/Trolley.dll
-/Users/joshua/Documents/git/dotnet-sdk/tests/bin/Debug/netstandard1.3/Trolley.pdb
-/Users/joshua/Documents/git/dotnet-sdk/tests/bin/Debug/netstandard1.3/Trolley.dll.config
-/Users/joshua/Documents/git/dotnet-sdk/tests/obj/Debug/netstandard1.3/tests.GeneratedMSBuildEditorConfig.editorconfig
-/Users/joshua/Documents/git/dotnet-sdk/tests/obj/Debug/netstandard1.3/tests.AssemblyInfoInputs.cache
-/Users/joshua/Documents/git/dotnet-sdk/tests/obj/Debug/netstandard1.3/tests.AssemblyInfo.cs
-/Users/joshua/Documents/git/dotnet-sdk/tests/obj/Debug/netstandard1.3/tests.csproj.CoreCompileInputs.cache
-/Users/joshua/Documents/git/dotnet-sdk/tests/obj/Debug/netstandard1.3/tests.csproj.CopyComplete
-/Users/joshua/Documents/git/dotnet-sdk/tests/obj/Debug/netstandard1.3/tests.dll
-/Users/joshua/Documents/git/dotnet-sdk/tests/obj/Debug/netstandard1.3/tests.pdb
-/Users/joshua/Documents/git/dotnet-sdk/tests/obj/Debug/netstandard1.3/tests.csproj.AssemblyReference.cache
-/Users/amanalam/src/sdk_dotnet/tests/bin/Debug/netstandard1.3/tests.deps.json
-/Users/amanalam/src/sdk_dotnet/tests/bin/Debug/netstandard1.3/tests.dll
-/Users/amanalam/src/sdk_dotnet/tests/bin/Debug/netstandard1.3/tests.pdb
-/Users/amanalam/src/sdk_dotnet/tests/bin/Debug/netstandard1.3/Trolley.dll
-/Users/amanalam/src/sdk_dotnet/tests/bin/Debug/netstandard1.3/Trolley.pdb
-/Users/amanalam/src/sdk_dotnet/tests/bin/Debug/netstandard1.3/Trolley.dll.config
-=======
-/Users/joshua/Documents/git/paymentrails_dotnet/tests/bin/Debug/netstandard1.3/tests.deps.json
-/Users/joshua/Documents/git/paymentrails_dotnet/tests/bin/Debug/netstandard1.3/tests.dll
-/Users/joshua/Documents/git/paymentrails_dotnet/tests/bin/Debug/netstandard1.3/tests.pdb
-/Users/joshua/Documents/git/paymentrails_dotnet/tests/bin/Debug/netstandard1.3/PaymentRails.dll
-/Users/joshua/Documents/git/paymentrails_dotnet/tests/bin/Debug/netstandard1.3/PaymentRails.pdb
-/Users/joshua/Documents/git/paymentrails_dotnet/tests/bin/Debug/netstandard1.3/PaymentRails.dll.config
-/Users/joshua/Documents/git/paymentrails_dotnet/tests/obj/Debug/netstandard1.3/tests.GeneratedMSBuildEditorConfig.editorconfig
-/Users/joshua/Documents/git/paymentrails_dotnet/tests/obj/Debug/netstandard1.3/tests.AssemblyInfoInputs.cache
-/Users/joshua/Documents/git/paymentrails_dotnet/tests/obj/Debug/netstandard1.3/tests.AssemblyInfo.cs
-/Users/joshua/Documents/git/paymentrails_dotnet/tests/obj/Debug/netstandard1.3/tests.csproj.CoreCompileInputs.cache
-/Users/joshua/Documents/git/paymentrails_dotnet/tests/obj/Debug/netstandard1.3/tests.csproj.CopyComplete
-/Users/joshua/Documents/git/paymentrails_dotnet/tests/obj/Debug/netstandard1.3/tests.dll
-/Users/joshua/Documents/git/paymentrails_dotnet/tests/obj/Debug/netstandard1.3/tests.pdb
-/Users/joshua/Documents/git/paymentrails_dotnet/tests/obj/Debug/netstandard1.3/tests.csproj.AssemblyReference.cache
-/Users/amanalam/src/sdk_dotnet/tests/bin/Debug/netstandard1.3/tests.deps.json
-/Users/amanalam/src/sdk_dotnet/tests/bin/Debug/netstandard1.3/tests.dll
-/Users/amanalam/src/sdk_dotnet/tests/bin/Debug/netstandard1.3/tests.pdb
-/Users/amanalam/src/sdk_dotnet/tests/bin/Debug/netstandard1.3/PaymentRails.dll
-/Users/amanalam/src/sdk_dotnet/tests/bin/Debug/netstandard1.3/PaymentRails.pdb
-/Users/amanalam/src/sdk_dotnet/tests/bin/Debug/netstandard1.3/PaymentRails.dll.config
->>>>>>> dev
-/Users/amanalam/src/sdk_dotnet/tests/obj/Debug/netstandard1.3/tests.csproj.AssemblyReference.cache
-/Users/amanalam/src/sdk_dotnet/tests/obj/Debug/netstandard1.3/tests.GeneratedMSBuildEditorConfig.editorconfig
-/Users/amanalam/src/sdk_dotnet/tests/obj/Debug/netstandard1.3/tests.AssemblyInfoInputs.cache
-/Users/amanalam/src/sdk_dotnet/tests/obj/Debug/netstandard1.3/tests.AssemblyInfo.cs
-/Users/amanalam/src/sdk_dotnet/tests/obj/Debug/netstandard1.3/tests.csproj.CoreCompileInputs.cache
-/Users/amanalam/src/sdk_dotnet/tests/obj/Debug/netstandard1.3/tests.csproj.CopyComplete
-/Users/amanalam/src/sdk_dotnet/tests/obj/Debug/netstandard1.3/tests.dll
-/Users/amanalam/src/sdk_dotnet/tests/obj/Debug/netstandard1.3/tests.pdb
diff --git a/tests/obj/Debug/netstandard1.3/tests.dll b/tests/obj/Debug/netstandard1.3/tests.dll
deleted file mode 100644
index 47a659c..0000000
Binary files a/tests/obj/Debug/netstandard1.3/tests.dll and /dev/null differ
diff --git a/tests/obj/Debug/netstandard1.3/tests.pdb b/tests/obj/Debug/netstandard1.3/tests.pdb
deleted file mode 100644
index caa58f8..0000000
Binary files a/tests/obj/Debug/netstandard1.3/tests.pdb and /dev/null differ
diff --git a/tests/obj/Release/netcoreapp2.0/.NETCoreApp,Version=v2.0.AssemblyAttributes.cs b/tests/obj/Release/netcoreapp2.0/.NETCoreApp,Version=v2.0.AssemblyAttributes.cs
deleted file mode 100644
index a38eecf..0000000
--- a/tests/obj/Release/netcoreapp2.0/.NETCoreApp,Version=v2.0.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v2.0", FrameworkDisplayName = "")]
diff --git a/tests/obj/Release/netcoreapp2.0/tests.AssemblyInfo.cs b/tests/obj/Release/netcoreapp2.0/tests.AssemblyInfo.cs
deleted file mode 100644
index 0863de1..0000000
--- a/tests/obj/Release/netcoreapp2.0/tests.AssemblyInfo.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.42000
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Reflection;
-
-[assembly: System.Reflection.AssemblyCompanyAttribute("tests")]
-[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
-[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
-[assembly: System.Reflection.AssemblyProductAttribute("tests")]
-[assembly: System.Reflection.AssemblyTitleAttribute("tests")]
-[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
-
-// Generated by the MSBuild WriteCodeFragment class.
-
diff --git a/tests/obj/Release/netcoreapp2.0/tests.AssemblyInfoInputs.cache b/tests/obj/Release/netcoreapp2.0/tests.AssemblyInfoInputs.cache
deleted file mode 100644
index da6f0b0..0000000
--- a/tests/obj/Release/netcoreapp2.0/tests.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-9d1cb8ffc67c1da6b5453360aeeba93c8f5fc9e8
diff --git a/tests/obj/Release/netcoreapp2.0/tests.assets.cache b/tests/obj/Release/netcoreapp2.0/tests.assets.cache
deleted file mode 100644
index 3b2a80b..0000000
Binary files a/tests/obj/Release/netcoreapp2.0/tests.assets.cache and /dev/null differ
diff --git a/tests/obj/Release/netcoreapp2.0/tests.csproj.CopyComplete b/tests/obj/Release/netcoreapp2.0/tests.csproj.CopyComplete
deleted file mode 100644
index e69de29..0000000
diff --git a/tests/obj/Release/netcoreapp2.0/tests.csproj.CoreCompileInputs.cache b/tests/obj/Release/netcoreapp2.0/tests.csproj.CoreCompileInputs.cache
deleted file mode 100644
index 01da11c..0000000
--- a/tests/obj/Release/netcoreapp2.0/tests.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-a13fc80b2f006e8e6321ef5455b2e1be608bdb5e
diff --git a/tests/obj/Release/netcoreapp2.0/tests.csproj.FileListAbsolute.txt b/tests/obj/Release/netcoreapp2.0/tests.csproj.FileListAbsolute.txt
deleted file mode 100644
index 35af045..0000000
--- a/tests/obj/Release/netcoreapp2.0/tests.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp2.0\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp2.0\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp2.0\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp2.0\tests.deps.json
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp2.0\tests.runtimeconfig.json
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp2.0\tests.runtimeconfig.dev.json
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp2.0\tests.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp2.0\tests.pdb
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp2.0\Trolley.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp2.0\Trolley.pdb
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp2.0\Trolley.dll.config
-D:\Git\dotnet-sdk\tests\obj\Release\netcoreapp2.0\tests.csprojAssemblyReference.cache
-D:\Git\dotnet-sdk\tests\obj\Release\netcoreapp2.0\tests.AssemblyInfoInputs.cache
-D:\Git\dotnet-sdk\tests\obj\Release\netcoreapp2.0\tests.AssemblyInfo.cs
-D:\Git\dotnet-sdk\tests\obj\Release\netcoreapp2.0\tests.csproj.CopyComplete
-D:\Git\dotnet-sdk\tests\obj\Release\netcoreapp2.0\tests.dll
-D:\Git\dotnet-sdk\tests\obj\Release\netcoreapp2.0\tests.pdb
-D:\Git\dotnet-sdk\tests\obj\Release\netcoreapp2.0\tests.csproj.CoreCompileInputs.cache
-D:\Git\dotnet-sdk\tests\obj\Release\netcoreapp2.0\tests.genruntimeconfig.cache
diff --git a/tests/obj/Release/netcoreapp2.0/tests.csprojAssemblyReference.cache b/tests/obj/Release/netcoreapp2.0/tests.csprojAssemblyReference.cache
deleted file mode 100644
index 94089cc..0000000
Binary files a/tests/obj/Release/netcoreapp2.0/tests.csprojAssemblyReference.cache and /dev/null differ
diff --git a/tests/obj/Release/netcoreapp2.0/tests.dll b/tests/obj/Release/netcoreapp2.0/tests.dll
deleted file mode 100644
index 698017f..0000000
Binary files a/tests/obj/Release/netcoreapp2.0/tests.dll and /dev/null differ
diff --git a/tests/obj/Release/netcoreapp2.0/tests.genruntimeconfig.cache b/tests/obj/Release/netcoreapp2.0/tests.genruntimeconfig.cache
deleted file mode 100644
index 7723b44..0000000
--- a/tests/obj/Release/netcoreapp2.0/tests.genruntimeconfig.cache
+++ /dev/null
@@ -1 +0,0 @@
-b9d200dda79870563380dabda6e090ce0dd69eee
diff --git a/tests/obj/Release/netcoreapp2.0/tests.pdb b/tests/obj/Release/netcoreapp2.0/tests.pdb
deleted file mode 100644
index 9e4dc6e..0000000
Binary files a/tests/obj/Release/netcoreapp2.0/tests.pdb and /dev/null differ
diff --git a/tests/obj/Release/netcoreapp3.1/tests.AssemblyInfo.cs b/tests/obj/Release/netcoreapp3.1/tests.AssemblyInfo.cs
deleted file mode 100644
index 0863de1..0000000
--- a/tests/obj/Release/netcoreapp3.1/tests.AssemblyInfo.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.42000
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Reflection;
-
-[assembly: System.Reflection.AssemblyCompanyAttribute("tests")]
-[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
-[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
-[assembly: System.Reflection.AssemblyProductAttribute("tests")]
-[assembly: System.Reflection.AssemblyTitleAttribute("tests")]
-[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
-
-// Generated by the MSBuild WriteCodeFragment class.
-
diff --git a/tests/obj/Release/netcoreapp3.1/tests.AssemblyInfoInputs.cache b/tests/obj/Release/netcoreapp3.1/tests.AssemblyInfoInputs.cache
deleted file mode 100644
index da6f0b0..0000000
--- a/tests/obj/Release/netcoreapp3.1/tests.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-9d1cb8ffc67c1da6b5453360aeeba93c8f5fc9e8
diff --git a/tests/obj/Release/netcoreapp3.1/tests.assets.cache b/tests/obj/Release/netcoreapp3.1/tests.assets.cache
deleted file mode 100644
index b3a3a1c..0000000
Binary files a/tests/obj/Release/netcoreapp3.1/tests.assets.cache and /dev/null differ
diff --git a/tests/obj/Release/netcoreapp3.1/tests.csproj.CopyComplete b/tests/obj/Release/netcoreapp3.1/tests.csproj.CopyComplete
deleted file mode 100644
index e69de29..0000000
diff --git a/tests/obj/Release/netcoreapp3.1/tests.csproj.FileListAbsolute.txt b/tests/obj/Release/netcoreapp3.1/tests.csproj.FileListAbsolute.txt
deleted file mode 100644
index d515976..0000000
--- a/tests/obj/Release/netcoreapp3.1/tests.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,95 +0,0 @@
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\tests.deps.json
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\tests.runtimeconfig.json
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\tests.runtimeconfig.dev.json
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\tests.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\tests.pdb
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\Microsoft.VisualStudio.CodeCoverage.Shim.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\Microsoft.TestPlatform.CoreUtilities.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\Microsoft.TestPlatform.PlatformAbstractions.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\Microsoft.VisualStudio.TestPlatform.ObjectModel.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\Microsoft.TestPlatform.CommunicationUtilities.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\Microsoft.TestPlatform.CrossPlatEngine.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\Microsoft.TestPlatform.Utilities.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\Microsoft.VisualStudio.TestPlatform.Common.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\testhost.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\Microsoft.VisualStudio.TestPlatform.TestFramework.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\Newtonsoft.Json.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\System.Xml.XPath.XmlDocument.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\cs\Microsoft.TestPlatform.CoreUtilities.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\cs\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\de\Microsoft.TestPlatform.CoreUtilities.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\de\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\es\Microsoft.TestPlatform.CoreUtilities.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\es\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\fr\Microsoft.TestPlatform.CoreUtilities.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\fr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\it\Microsoft.TestPlatform.CoreUtilities.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\it\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\ja\Microsoft.TestPlatform.CoreUtilities.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\ja\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\ko\Microsoft.TestPlatform.CoreUtilities.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\ko\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\pl\Microsoft.TestPlatform.CoreUtilities.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\pl\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\pt-BR\Microsoft.TestPlatform.CoreUtilities.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\pt-BR\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\ru\Microsoft.TestPlatform.CoreUtilities.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\ru\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\tr\Microsoft.TestPlatform.CoreUtilities.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\tr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\zh-Hans\Microsoft.TestPlatform.CoreUtilities.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\zh-Hans\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\zh-Hant\Microsoft.TestPlatform.CoreUtilities.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\zh-Hant\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\cs\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\cs\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\cs\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\de\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\de\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\de\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\es\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\es\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\es\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\fr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\fr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\fr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\it\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\it\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\it\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\ja\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\ja\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\ja\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\ko\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\ko\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\ko\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\pl\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\pl\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\pl\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\pt-BR\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\pt-BR\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\pt-BR\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\ru\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\ru\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\ru\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\tr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\tr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\tr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\zh-Hans\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\zh-Hans\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\zh-Hans\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\zh-Hant\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\zh-Hant\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\zh-Hant\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-D:\Git\dotnet-sdk\tests\obj\Release\netcoreapp3.1\tests.csprojAssemblyReference.cache
-D:\Git\dotnet-sdk\tests\obj\Release\netcoreapp3.1\tests.AssemblyInfoInputs.cache
-D:\Git\dotnet-sdk\tests\obj\Release\netcoreapp3.1\tests.AssemblyInfo.cs
-D:\Git\dotnet-sdk\tests\obj\Release\netcoreapp3.1\tests.csproj.CopyComplete
-D:\Git\dotnet-sdk\tests\obj\Release\netcoreapp3.1\tests.dll
-D:\Git\dotnet-sdk\tests\obj\Release\netcoreapp3.1\tests.pdb
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\Trolley.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\Trolley.pdb
-D:\Git\dotnet-sdk\tests\bin\Release\netcoreapp3.1\Trolley.dll.config
diff --git a/tests/obj/Release/netcoreapp3.1/tests.csprojAssemblyReference.cache b/tests/obj/Release/netcoreapp3.1/tests.csprojAssemblyReference.cache
deleted file mode 100644
index ef4edfd..0000000
Binary files a/tests/obj/Release/netcoreapp3.1/tests.csprojAssemblyReference.cache and /dev/null differ
diff --git a/tests/obj/Release/netcoreapp3.1/tests.dll b/tests/obj/Release/netcoreapp3.1/tests.dll
deleted file mode 100644
index 4185915..0000000
Binary files a/tests/obj/Release/netcoreapp3.1/tests.dll and /dev/null differ
diff --git a/tests/obj/Release/netcoreapp3.1/tests.pdb b/tests/obj/Release/netcoreapp3.1/tests.pdb
deleted file mode 100644
index 1198d10..0000000
Binary files a/tests/obj/Release/netcoreapp3.1/tests.pdb and /dev/null differ
diff --git a/tests/obj/Release/netstandard1.3/.NETStandard,Version=v1.3.AssemblyAttributes.cs b/tests/obj/Release/netstandard1.3/.NETStandard,Version=v1.3.AssemblyAttributes.cs
deleted file mode 100644
index f104032..0000000
--- a/tests/obj/Release/netstandard1.3/.NETStandard,Version=v1.3.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v1.3", FrameworkDisplayName = "")]
diff --git a/tests/obj/Release/netstandard1.3/tests.AssemblyInfo.cs b/tests/obj/Release/netstandard1.3/tests.AssemblyInfo.cs
deleted file mode 100644
index 0863de1..0000000
--- a/tests/obj/Release/netstandard1.3/tests.AssemblyInfo.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.42000
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Reflection;
-
-[assembly: System.Reflection.AssemblyCompanyAttribute("tests")]
-[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
-[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
-[assembly: System.Reflection.AssemblyProductAttribute("tests")]
-[assembly: System.Reflection.AssemblyTitleAttribute("tests")]
-[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
-
-// Generated by the MSBuild WriteCodeFragment class.
-
diff --git a/tests/obj/Release/netstandard1.3/tests.AssemblyInfoInputs.cache b/tests/obj/Release/netstandard1.3/tests.AssemblyInfoInputs.cache
deleted file mode 100644
index da6f0b0..0000000
--- a/tests/obj/Release/netstandard1.3/tests.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-9d1cb8ffc67c1da6b5453360aeeba93c8f5fc9e8
diff --git a/tests/obj/Release/netstandard1.3/tests.assets.cache b/tests/obj/Release/netstandard1.3/tests.assets.cache
deleted file mode 100644
index 12ba213..0000000
Binary files a/tests/obj/Release/netstandard1.3/tests.assets.cache and /dev/null differ
diff --git a/tests/obj/Release/netstandard1.3/tests.csproj.CopyComplete b/tests/obj/Release/netstandard1.3/tests.csproj.CopyComplete
deleted file mode 100644
index e69de29..0000000
diff --git a/tests/obj/Release/netstandard1.3/tests.csproj.CoreCompileInputs.cache b/tests/obj/Release/netstandard1.3/tests.csproj.CoreCompileInputs.cache
deleted file mode 100644
index 8b6a917..0000000
--- a/tests/obj/Release/netstandard1.3/tests.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-4496b853b796e01a46fa52bd74a4c6828aa5fe2e
diff --git a/tests/obj/Release/netstandard1.3/tests.csproj.FileListAbsolute.txt b/tests/obj/Release/netstandard1.3/tests.csproj.FileListAbsolute.txt
deleted file mode 100644
index 8eeb0ae..0000000
--- a/tests/obj/Release/netstandard1.3/tests.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,13 +0,0 @@
-D:\Git\dotnet-sdk\tests\bin\Release\netstandard1.3\tests.deps.json
-D:\Git\dotnet-sdk\tests\bin\Release\netstandard1.3\tests.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netstandard1.3\tests.pdb
-D:\Git\dotnet-sdk\tests\bin\Release\netstandard1.3\Trolley.dll
-D:\Git\dotnet-sdk\tests\bin\Release\netstandard1.3\Trolley.pdb
-D:\Git\dotnet-sdk\tests\bin\Release\netstandard1.3\Trolley.dll.config
-D:\Git\dotnet-sdk\tests\obj\Release\netstandard1.3\tests.csprojAssemblyReference.cache
-D:\Git\dotnet-sdk\tests\obj\Release\netstandard1.3\tests.AssemblyInfoInputs.cache
-D:\Git\dotnet-sdk\tests\obj\Release\netstandard1.3\tests.AssemblyInfo.cs
-D:\Git\dotnet-sdk\tests\obj\Release\netstandard1.3\tests.csproj.CopyComplete
-D:\Git\dotnet-sdk\tests\obj\Release\netstandard1.3\tests.dll
-D:\Git\dotnet-sdk\tests\obj\Release\netstandard1.3\tests.pdb
-D:\Git\dotnet-sdk\tests\obj\Release\netstandard1.3\tests.csproj.CoreCompileInputs.cache
diff --git a/tests/obj/Release/netstandard1.3/tests.csprojAssemblyReference.cache b/tests/obj/Release/netstandard1.3/tests.csprojAssemblyReference.cache
deleted file mode 100644
index 6b493c6..0000000
Binary files a/tests/obj/Release/netstandard1.3/tests.csprojAssemblyReference.cache and /dev/null differ
diff --git a/tests/obj/Release/netstandard1.3/tests.dll b/tests/obj/Release/netstandard1.3/tests.dll
deleted file mode 100644
index fd4a832..0000000
Binary files a/tests/obj/Release/netstandard1.3/tests.dll and /dev/null differ
diff --git a/tests/obj/Release/netstandard1.3/tests.pdb b/tests/obj/Release/netstandard1.3/tests.pdb
deleted file mode 100644
index e410b69..0000000
Binary files a/tests/obj/Release/netstandard1.3/tests.pdb and /dev/null differ
diff --git a/tests/obj/tests.csproj.nuget.g.props b/tests/obj/tests.csproj.nuget.g.props
deleted file mode 100644
index 276f151..0000000
--- a/tests/obj/tests.csproj.nuget.g.props
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
- True
- NuGet
- $(MSBuildThisFileDirectory)project.assets.json
- /Users/amanalam/.nuget/packages/
- /Users/amanalam/.nuget/packages/
- PackageReference
- 6.6.0
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/tests/obj/tests.csproj.nuget.g.targets b/tests/obj/tests.csproj.nuget.g.targets
deleted file mode 100644
index 18a6f77..0000000
--- a/tests/obj/tests.csproj.nuget.g.targets
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/tests/tests.csproj b/tests/tests.csproj
index f6271ea..c7032ed 100644
--- a/tests/tests.csproj
+++ b/tests/tests.csproj
@@ -1,8 +1,7 @@
- net6.0;netstandard2.0
-
+ net6.0
false
diff --git a/trolley/Configuration.cs b/trolley/Configuration.cs
index fde297d..d730247 100644
--- a/trolley/Configuration.cs
+++ b/trolley/Configuration.cs
@@ -67,6 +67,16 @@ public string ApiBase
public string enviromentToUrl(string enviroment)
{
+ if (string.IsNullOrEmpty(enviroment))
+ {
+ return "https://api.trolley.com";
+ }
+
+ if (enviroment.StartsWith("http://") || enviroment.StartsWith("https://"))
+ {
+ return enviroment.TrimEnd('/');
+ }
+
switch (enviroment)
{
case "development":
diff --git a/trolley/Properties/AssemblyInfo.cs b/trolley/Properties/AssemblyInfo.cs
index aaf5837..e1e35b9 100644
--- a/trolley/Properties/AssemblyInfo.cs
+++ b/trolley/Properties/AssemblyInfo.cs
@@ -32,4 +32,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.0.0.0")]
-[assembly: AssemblyFileVersion("2.0.0.0")]
+[assembly: AssemblyFileVersion("2.2.4.0")]
+[assembly: AssemblyInformationalVersion("2.2.4")]
diff --git a/trolley/trolley.csproj b/trolley/trolley.csproj
index 492a34d..c15859f 100644
--- a/trolley/trolley.csproj
+++ b/trolley/trolley.csproj
@@ -15,7 +15,7 @@
false
true
0
- 2.0.0.0
+ 2.2.4.0
false
true
false
@@ -28,6 +28,7 @@
true
2.2.4
The official Trolley .NET SDK to interface with the Trolley API (https://www.trolley.com/)
+ README.md
Copyright 2020
Jesse Tremblay, Jesse Silber, Joshua Cunningham, Aman Aalam
Trolley net sdk PaymentRails
@@ -45,6 +46,9 @@
+
+
+
diff --git a/trolley/trolley.nuspec b/trolley/trolley.nuspec
index 4508058..c93c0f9 100644
--- a/trolley/trolley.nuspec
+++ b/trolley/trolley.nuspec
@@ -2,7 +2,7 @@
trolleyhq
- 2.2.3
+ 2.2.4
$title$
Jesse Tremblay, Jesse Silber, Joshua Cunningham, Aman Aalam
aman.trolley, trolley-developers, PaymentRailsJesse, joshuapr