diff --git a/.github/workflows/build_artifacts.yml b/.github/workflows/build_artifacts.yml index 9ba577f27c..fb86de28f4 100644 --- a/.github/workflows/build_artifacts.yml +++ b/.github/workflows/build_artifacts.yml @@ -1,75 +1,74 @@ name: Build Artifacts on: - workflow_call: - inputs: - build-configuration: - default: 'Release' - required: false - type: string - mdix-version: - required: true - type: string - mdix-colors-version: - required: true - type: string - mdix-mahapps-version: - required: true - type: string - + workflow_call: + inputs: + build-configuration: + default: "Release" + required: false + type: string + mdix-version: + required: true + type: string + mdix-colors-version: + required: true + type: string + mdix-mahapps-version: + required: true + type: string jobs: - build: - name: Build and Test - runs-on: windows-latest + build: + name: Build and Test + runs-on: windows-latest + + env: + solution: MaterialDesignToolkit.Full.sln - env: - solution: MaterialDesignToolkit.Full.sln + steps: + - uses: actions/checkout@v4 - steps: - - uses: actions/checkout@v4 + - name: Setup .NET + uses: actions/setup-dotnet@v4 + with: + dotnet-version: | + 6.x + 7.x + 8.x - - name: Setup .NET - uses: actions/setup-dotnet@v4 - with: - dotnet-version: | - 6.x - 7.x - 8.x - - - name: Restore dependencies - run: dotnet restore ${{ env.solution }} - - - name: Build - run: dotnet build ${{ env.solution }} --configuration ${{ inputs.build-configuration }} --no-restore -p:Platform="Any CPU" -p:TreatWarningsAsErrors=True - env: - MDIXVersion: ${{ inputs.mdix-version }} - MDIXColorsVersion: ${{ inputs.mdix-colors-version }} - MDIXMahAppsVersion: ${{ inputs.mdix-mahapps-version }} - - - name: Test - timeout-minutes: 20 - run: dotnet test ${{ env.solution }} --configuration ${{ inputs.build-configuration }} --no-build --blame-crash --logger GitHubActions - - - name: Upload Screenshots - if: ${{ always() }} - uses: actions/upload-artifact@v4 - with: - name: Screenshots-${{ github.run_number }} - path: ${{ github.workspace }}\MaterialDesignThemes.UITests\bin\${{ inputs.build-configuration }}\net8.0-windows7\Screenshots - if-no-files-found: ignore + - name: Restore dependencies + run: dotnet restore ${{ env.solution }} + + - name: Build + run: dotnet build ${{ env.solution }} --configuration ${{ inputs.build-configuration }} --no-restore -p:Platform="Any CPU" -p:TreatWarningsAsErrors=True + env: + MDIXVersion: ${{ inputs.mdix-version }} + MDIXColorsVersion: ${{ inputs.mdix-colors-version }} + MDIXMahAppsVersion: ${{ inputs.mdix-mahapps-version }} + + - name: Test + timeout-minutes: 20 + run: dotnet test ${{ env.solution }} --configuration ${{ inputs.build-configuration }} --no-build --blame-crash --logger GitHubActions + + - name: Upload Screenshots + if: ${{ always() }} + uses: actions/upload-artifact@v4 + with: + name: Screenshots-${{ github.run_number }} + path: ${{ github.workspace }}tests\MaterialDesignThemes.UITests\bin\${{ inputs.build-configuration }}\net8.0-windows7\Screenshots + if-no-files-found: ignore - - name: Build NuGets - run: .\Scripts\BuildNugets.ps1 -MDIXVersion ${{ inputs.mdix-version }} -MDIXColorsVersion ${{ inputs.mdix-colors-version }} -MDIXMahAppsVersion ${{ inputs.mdix-mahapps-version }} + - name: Build NuGets + run: .\build\BuildNugets.ps1 -MDIXVersion ${{ inputs.mdix-version }} -MDIXColorsVersion ${{ inputs.mdix-colors-version }} -MDIXMahAppsVersion ${{ inputs.mdix-mahapps-version }} - - name: Upload NuGets - uses: actions/upload-artifact@v4 - with: - name: NuGets - path: "*.nupkg" + - name: Upload NuGets + uses: actions/upload-artifact@v4 + with: + name: NuGets + path: "*.nupkg" - - name: Upload Demo App - uses: actions/upload-artifact@v4 - with: - name: DemoApp - path: "MainDemo.Wpf/bin/${{ env.buildConfiguration }}" + - name: Upload Demo App + uses: actions/upload-artifact@v4 + with: + name: DemoApp + path: "src/MainDemo.Wpf/bin/${{ env.buildConfiguration }}" diff --git a/.github/workflows/control_styles.yml b/.github/workflows/control_styles.yml index 74c316e2c5..ed96333681 100644 --- a/.github/workflows/control_styles.yml +++ b/.github/workflows/control_styles.yml @@ -1,27 +1,26 @@ name: Wiki - Update Control Styles on: - # push: - # branches: [ master ] - workflow_dispatch: + # push: + # branches: [ master ] + workflow_dispatch: jobs: - build: + build: + runs-on: ubuntu-latest - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - name: Generate Control Styles Markdown - run: Scripts/GenerateThemesWikiMarkdown.ps1 - shell: pwsh - - name: Upload Control Styles to Wiki - uses: docker://decathlon/wiki-page-creator-action:latest - env: - GH_PAT: ${{ secrets.SA_TOKEN }} - ACTION_MAIL: mdixsa@outlook.com - ACTION_NAME: Material Design Service Account - OWNER: MaterialDesignInXAML - REPO_NAME: MaterialDesignInXamlToolkit - MD_FOLDER: Scripts - WIKI_PUSH_MESSAGE: Automatic update of ControlStyleList.md from GitHub Action + steps: + - uses: actions/checkout@v4 + - name: Generate Control Styles Markdown + run: build/GenerateThemesWikiMarkdown.ps1 + shell: pwsh + - name: Upload Control Styles to Wiki + uses: docker://decathlon/wiki-page-creator-action:latest + env: + GH_PAT: ${{ secrets.SA_TOKEN }} + ACTION_MAIL: mdixsa@outlook.com + ACTION_NAME: Material Design Service Account + OWNER: MaterialDesignInXAML + REPO_NAME: MaterialDesignInXamlToolkit + MD_FOLDER: build + WIKI_PUSH_MESSAGE: Automatic update of ControlStyleList.md from GitHub Action diff --git a/.github/workflows/icon_update.yml b/.github/workflows/icon_update.yml index 6d69237672..094c6af1de 100644 --- a/.github/workflows/icon_update.yml +++ b/.github/workflows/icon_update.yml @@ -1,49 +1,49 @@ name: Icon Update on: - workflow_dispatch: - schedule: - - cron: '0 3 * * *' + workflow_dispatch: + schedule: + - cron: "0 3 * * *" env: - GH_TOKEN: ${{ secrets.SA_PAT }} + GH_TOKEN: ${{ secrets.SA_PAT }} defaults: - run: - shell: pwsh + run: + shell: pwsh jobs: - build: - #This check prevents this from running on forks - if: ${{ github.repository == 'MaterialDesignInXAML/MaterialDesignInXamlToolkit' }} - - runs-on: windows-latest - - steps: - - uses: actions/checkout@v4 - - - name: Setup .NET - uses: actions/setup-dotnet@v4 - with: - dotnet-version: 7.x - - - name: Run Icon Generation - run: dotnet run -c Release -- icons - working-directory: ./mdresgen - - - name: Check for changes - id: check_for_changes - run: | - $hasChanges = $((git status --porcelain).Length -gt 0).ToString().ToLower() - "has_changes=$hasChanges" >> $env:GITHUB_OUTPUT - - - name: Open Pull Request - if: ${{ steps.check_for_changes.outputs.has_changes == 'true' }} - run: | - git config --local user.email "github-actions[bot]@users.noreply.github.com" - git config --local user.name "github-actions[bot]" - git checkout -b "automated/icon_update" - git commit -m "[bot] Pack Icon update" --all - git push -f --set-upstream origin automated/icon_update - gh pr create --fill - gh pr merge automated/icon_update --delete-branch --auto --squash + build: + #This check prevents this from running on forks + if: ${{ github.repository == 'MaterialDesignInXAML/MaterialDesignInXamlToolkit' }} + + runs-on: windows-latest + + steps: + - uses: actions/checkout@v4 + + - name: Setup .NET + uses: actions/setup-dotnet@v4 + with: + dotnet-version: 7.x + + - name: Run Icon Generation + run: dotnet run -c Release -- icons + working-directory: ./src/MaterialDesignToolkit.ResourceGeneration + + - name: Check for changes + id: check_for_changes + run: | + $hasChanges = $((git status --porcelain).Length -gt 0).ToString().ToLower() + "has_changes=$hasChanges" >> $env:GITHUB_OUTPUT + + - name: Open Pull Request + if: ${{ steps.check_for_changes.outputs.has_changes == 'true' }} + run: | + git config --local user.email "github-actions[bot]@users.noreply.github.com" + git config --local user.name "github-actions[bot]" + git checkout -b "automated/icon_update" + git commit -m "[bot] Pack Icon update" --all + git push -f --set-upstream origin automated/icon_update + gh pr create --fill + gh pr merge automated/icon_update --delete-branch --auto --squash diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 301812b21b..c1f87c550d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,309 +1,315 @@ name: Production Release on: - workflow_dispatch: - inputs: - milestone: - description: 'The milestone to generate a release for' - required: true - type: string + workflow_dispatch: + inputs: + milestone: + description: "The milestone to generate a release for" + required: true + type: string env: - solution: MaterialDesignToolkit.Full.sln - # Needed for GitHub CLI - GH_TOKEN: ${{ github.token }} + solution: MaterialDesignToolkit.Full.sln + # Needed for GitHub CLI + GH_TOKEN: ${{ github.token }} defaults: - run: - shell: pwsh + run: + shell: pwsh # Needed for updating the version numbers at the end of the pipeline permissions: - id-token: write - contents: write + id-token: write + contents: write jobs: - get_versions: - name: Get Versions - uses: ./.github/workflows/get_versions.yml - with: - is-full-release: true - - version_number_check: - needs: [get_versions] - runs-on: ubuntu-latest - name: Version matches milestone - - steps: - - name: Check versions - run: | - if ('${{ inputs.milestone }}' -ne '${{ needs.get_versions.outputs.mdix-version }}') { - Write-Error "Milestone ${{ inputs.milestone }} does not match MDIX ${{ needs.get_versions.outputs.mdix-version }}" - exit 1 - } else { - Write-Host "Versions match" - } - - build_release_notes: - runs-on: ubuntu-latest - name: Generate Release Notes - - steps: - - name: Get Contributors - id: get-contribs - uses: Keboo/GitHubHelper@master + get_versions: + name: Get Versions + uses: ./.github/workflows/get_versions.yml with: - milestone: '${{ inputs.milestone }}' - repository: 'MaterialDesignInXamlToolkit' - repository-owner: 'MaterialDesignInXAML' - token: ${{ github.token }} - - - name: Generate Release Notes - run: | - $response = gh api --method POST -H "Accept: application/vnd.github+json" /repos/${{ github.repository }}/releases/generate-notes -f tag_name='v${{ inputs.milestone }}' - $json = $response | ConvertFrom-Json - $releaseNotes = $json.body - $contributors = "${{ steps.get-contribs.outputs.contributors }}" - $releaseNotes | Out-File -Append "ReleaseNotes.md" - "`n" | Out-File -Append "ReleaseNotes.md" - $contributors | Out-File -Append "ReleaseNotes.md" - cat "ReleaseNotes.md" - - - name: Upload Release Notes - uses: actions/upload-artifact@v4 + is-full-release: true + + version_number_check: + needs: [get_versions] + runs-on: ubuntu-latest + name: Version matches milestone + + steps: + - name: Check versions + run: | + if ('${{ inputs.milestone }}' -ne '${{ needs.get_versions.outputs.mdix-version }}') { + Write-Error "Milestone ${{ inputs.milestone }} does not match MDIX ${{ needs.get_versions.outputs.mdix-version }}" + exit 1 + } else { + Write-Host "Versions match" + } + + build_release_notes: + runs-on: ubuntu-latest + name: Generate Release Notes + + steps: + - name: Get Contributors + id: get-contribs + uses: Keboo/GitHubHelper@master + with: + milestone: "${{ inputs.milestone }}" + repository: "MaterialDesignInXamlToolkit" + repository-owner: "MaterialDesignInXAML" + token: ${{ github.token }} + + - name: Generate Release Notes + run: | + $response = gh api --method POST -H "Accept: application/vnd.github+json" /repos/${{ github.repository }}/releases/generate-notes -f tag_name='v${{ inputs.milestone }}' + $json = $response | ConvertFrom-Json + $releaseNotes = $json.body + $contributors = "${{ steps.get-contribs.outputs.contributors }}" + $releaseNotes | Out-File -Append "ReleaseNotes.md" + "`n" | Out-File -Append "ReleaseNotes.md" + $contributors | Out-File -Append "ReleaseNotes.md" + cat "ReleaseNotes.md" + + - name: Upload Release Notes + uses: actions/upload-artifact@v4 + with: + name: ReleaseNotes + path: "ReleaseNotes.md" + + build_artifacts: + name: Build artifacts + needs: get_versions + uses: ./.github/workflows/build_artifacts.yml with: - name: ReleaseNotes - path: "ReleaseNotes.md" - - build_artifacts: - name: Build artifacts - needs: get_versions - uses: ./.github/workflows/build_artifacts.yml - with: - mdix-version: ${{ needs.get_versions.outputs.mdix-version }} - mdix-colors-version: ${{ needs.get_versions.outputs.mdix-colors-version }} - mdix-mahapps-version: ${{ needs.get_versions.outputs.mdix-mahapps-version }} - - build_icon_changes: - needs: [build_artifacts] - runs-on: windows-latest - name: Get Icon Changes - - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Download NuGet Artifacts - uses: actions/download-artifact@v4 - with: - name: NuGets - path: nugets - - - name: Get Previous NuGet release - run: | - $release = (gh api -H "Accept: application/vnd.github+json" /repos/${{ github.repository }}/releases/latest) | ConvertFrom-Json - gh release download "$($release.tag_name)" --repo "${{ github.repository }}" --pattern *.nupkg - working-directory: nugets - - - name: Create Icon Diff File - run: | - dotnet run --project ./mdresgen/mdresgen.csproj -c Release -- icon-diff - - - name: Upload Icon Changes - uses: actions/upload-artifact@v4 - with: - name: IconChanges - path: "IconChanges*.md" - - create_release: - needs: [build_release_notes, build_artifacts, build_icon_changes, version_number_check] - runs-on: ubuntu-latest - name: Create Draft Release - - steps: - - name: Download NuGet Artifacts - uses: actions/download-artifact@v4 - with: - name: NuGets - path: nugets - - - name: Download Demo App Artifacts - uses: actions/download-artifact@v4 - with: - name: DemoApp - path: demo-app - - - name: Zip Demo App - run: zip -r DemoApp.zip demo-app/* - - - name: Download Release Notes - uses: actions/download-artifact@v4 - with: - name: ReleaseNotes - - - name: Create Release - run: | - # We can't use glob pattern because of this bug https://github.com/cli/cli/issues/5099 - gh release create v${{ inputs.milestone }} --repo '${{ github.repository }}' --draft --latest --title "${{ inputs.milestone }}" --notes-file ReleaseNotes.md (Get-Item '${{ github.workspace }}/nugets/*.nupkg') '${{ github.workspace }}/DemoApp.zip' - - update_wiki: - needs: [create_release] - runs-on: ubuntu-latest - environment: production - name: Update Wiki - - steps: - - name: Checkout Wiki Repo - uses: actions/checkout@v4 - with: - repository: ${{ github.repository }}.wiki - - - name: Download Icon Changes - uses: actions/download-artifact@v4 - with: - name: IconChanges - path: icon-changes - - - name: Update Wiki - run: | - $iconUpdates = Get-ChildItem -Path "icon-changes/*.md" - foreach($update in $iconUpdates){ - Write-Host "Updating from $update" - if ($update.Name -match '-(?\d+\.\d+\.\d+)--(?\d+\.\d+\.\d+).md$') { - $previousVersion = $Matches.PreviousVersion - $targetVersion = $Matches.TargetVersion - - $majorVersion = $targetVersion.Split(".") | Select-Object -First 1 - - # Update the changes - $changesFileName = "$majorVersion-x-icon-changes" - $changesFile = "$changesFileName.md" - - if (!(Test-Path $changesFile)) { - New-Item -ItemType File $changesFile | Out-Null - } - @( - (Get-Content $update), - "", - (Get-Content $changesFile) - ) | Set-Content $changesFile - - # Update the PackIcon Release notes - [string[]] $releaseNotes = Get-Content "PackIcon-ReleaseNotes.md" - - $firstLine = $releaseNotes | Where-Object { $_.StartsWith("[Pack Icon Changes") } | Select-Object -First 1 - $index = $releaseNotes.IndexOf($firstLine) - - @( - ($releaseNotes | Select-Object -First $index), - "[Pack Icon Changes $previousVersion => $targetVersion]($changesFileName#pack-icon-changes-$($previousVersion -replace '\.', '')--$($targetVersion -replace '\.', ''))", - "", - ($releaseNotes | Select-Object -Skip $index) - ) | Set-Content "PackIcon-ReleaseNotes.md" - Remove-Item $update - } else { - Write-Warning "Did not parse version from $($update.Name)" - } - } - - - name: Push Wiki - run: | - git config --local user.email "github-actions[bot]@users.noreply.github.com" - git config --local user.name "github-actions[bot]" - git commit -m "[automated] Update Wiki with icon changes for ${{ inputs.milestone }}" --all - git push - - push_nugets: - needs: [create_release] - runs-on: ubuntu-latest - name: Push NuGets - environment: production - - steps: - - name: Download NuGet Artifacts - uses: actions/download-artifact@v4 - with: - name: NuGets - path: nugets - - - name: Push NuGets - run: | - dotnet nuget push nugets/*.nupkg --api-key ${{ secrets.PAT }} --source https://api.nuget.org/v3/index.json --skip-duplicate - - publish_release: - needs: [create_release] - runs-on: ubuntu-latest - name: Publish Release - environment: production - - steps: - - name: Publish Release - run: | - gh release edit v${{ inputs.milestone }} --repo '${{ github.repository }}' --draft=false - - close_milestone: - needs: [create_release] - runs-on: ubuntu-latest - name: Close Milestone - environment: production - - steps: - # Doing a checkout, until this issue is resolved. - # https://github.com/valeriobelli/gh-milestone/issues/15 - - uses: actions/checkout@v4 - - - name: Close Milestone - run: | - gh extension install valeriobelli/gh-milestone - $milestones = $(gh milestone list --json number,title) | ConvertFrom-Json - $milestoneNumber = ($milestones | Where-Object { $_.title -eq "${{ inputs.milestone }}" }).number - gh milestone edit $milestoneNumber --state closed - - update_version_numbers: - needs: [create_release] - runs-on: ubuntu-latest - name: Update Version Numbers - environment: production - - permissions: - actions: write - - steps: - # Checkout is needed so that we can update the get_versions.yml file - - uses: actions/checkout@v4 - - - name: Increment Version Numbers - run: | - function Update-Version { - param ( - [string]$Prefix - ) - $workflowPath = "./.github/workflows/get_versions.yml" - $workflowContent = Get-Content -Path $workflowPath - - $versionPattern = '"(\d+\.\d+\.)(\d+)"' - $pattern = "$Prefix`: $versionPattern" - $match = $workflowContent -match $pattern - - if ($match[0] -match $versionPattern) { - $newVersion = $Matches[1] + ([int]$Matches[2] + 1) - $workflowContent = $workflowContent -replace $pattern,"$Prefix`: `"$newVersion`"" - Write-Host "$Prefix updated to $newVersion" - } else { - Write-Error "Failed to update $Prefix version" - } - - Set-Content -Path $workflowPath -Value $workflowContent - } - - Update-Version -Prefix "mdix-version" - Update-Version -Prefix "mdix-colors-version" - Update-Version -Prefix "mdix-mahapps-version" - - - name: Push Changes - run: | - git config --local user.email "github-actions[bot]@users.noreply.github.com" - git config --local user.name "github-actions[bot]" - git commit -m "[automated] Increment version numbers after release of ${{ inputs.milestone }}" --all - git push + mdix-version: ${{ needs.get_versions.outputs.mdix-version }} + mdix-colors-version: ${{ needs.get_versions.outputs.mdix-colors-version }} + mdix-mahapps-version: ${{ needs.get_versions.outputs.mdix-mahapps-version }} + + build_icon_changes: + needs: [build_artifacts] + runs-on: windows-latest + name: Get Icon Changes + + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Download NuGet Artifacts + uses: actions/download-artifact@v4 + with: + name: NuGets + path: nugets + + - name: Get Previous NuGet release + run: | + $release = (gh api -H "Accept: application/vnd.github+json" /repos/${{ github.repository }}/releases/latest) | ConvertFrom-Json + gh release download "$($release.tag_name)" --repo "${{ github.repository }}" --pattern *.nupkg + working-directory: nugets + + - name: Create Icon Diff File + run: | + dotnet run --project ./src/MaterialDesignToolkit.ResourceGeneration/MaterialDesignToolkit.ResourceGeneration.csproj -c Release -- icon-diff + + - name: Upload Icon Changes + uses: actions/upload-artifact@v4 + with: + name: IconChanges + path: "IconChanges*.md" + + create_release: + needs: + [ + build_release_notes, + build_artifacts, + build_icon_changes, + version_number_check, + ] + runs-on: ubuntu-latest + name: Create Draft Release + + steps: + - name: Download NuGet Artifacts + uses: actions/download-artifact@v4 + with: + name: NuGets + path: nugets + + - name: Download Demo App Artifacts + uses: actions/download-artifact@v4 + with: + name: DemoApp + path: demo-app + + - name: Zip Demo App + run: zip -r DemoApp.zip demo-app/* + + - name: Download Release Notes + uses: actions/download-artifact@v4 + with: + name: ReleaseNotes + + - name: Create Release + run: | + # We can't use glob pattern because of this bug https://github.com/cli/cli/issues/5099 + gh release create v${{ inputs.milestone }} --repo '${{ github.repository }}' --draft --latest --title "${{ inputs.milestone }}" --notes-file ReleaseNotes.md (Get-Item '${{ github.workspace }}/nugets/*.nupkg') '${{ github.workspace }}/DemoApp.zip' + + update_wiki: + needs: [create_release] + runs-on: ubuntu-latest + environment: production + name: Update Wiki + + steps: + - name: Checkout Wiki Repo + uses: actions/checkout@v4 + with: + repository: ${{ github.repository }}.wiki + + - name: Download Icon Changes + uses: actions/download-artifact@v4 + with: + name: IconChanges + path: icon-changes + + - name: Update Wiki + run: | + $iconUpdates = Get-ChildItem -Path "icon-changes/*.md" + foreach($update in $iconUpdates){ + Write-Host "Updating from $update" + if ($update.Name -match '-(?\d+\.\d+\.\d+)--(?\d+\.\d+\.\d+).md$') { + $previousVersion = $Matches.PreviousVersion + $targetVersion = $Matches.TargetVersion + + $majorVersion = $targetVersion.Split(".") | Select-Object -First 1 + + # Update the changes + $changesFileName = "$majorVersion-x-icon-changes" + $changesFile = "$changesFileName.md" + + if (!(Test-Path $changesFile)) { + New-Item -ItemType File $changesFile | Out-Null + } + @( + (Get-Content $update), + "", + (Get-Content $changesFile) + ) | Set-Content $changesFile + + # Update the PackIcon Release notes + [string[]] $releaseNotes = Get-Content "PackIcon-ReleaseNotes.md" + + $firstLine = $releaseNotes | Where-Object { $_.StartsWith("[Pack Icon Changes") } | Select-Object -First 1 + $index = $releaseNotes.IndexOf($firstLine) + + @( + ($releaseNotes | Select-Object -First $index), + "[Pack Icon Changes $previousVersion => $targetVersion]($changesFileName#pack-icon-changes-$($previousVersion -replace '\.', '')--$($targetVersion -replace '\.', ''))", + "", + ($releaseNotes | Select-Object -Skip $index) + ) | Set-Content "PackIcon-ReleaseNotes.md" + Remove-Item $update + } else { + Write-Warning "Did not parse version from $($update.Name)" + } + } + + - name: Push Wiki + run: | + git config --local user.email "github-actions[bot]@users.noreply.github.com" + git config --local user.name "github-actions[bot]" + git commit -m "[automated] Update Wiki with icon changes for ${{ inputs.milestone }}" --all + git push + + push_nugets: + needs: [create_release] + runs-on: ubuntu-latest + name: Push NuGets + environment: production + + steps: + - name: Download NuGet Artifacts + uses: actions/download-artifact@v4 + with: + name: NuGets + path: nugets + + - name: Push NuGets + run: | + dotnet nuget push nugets/*.nupkg --api-key ${{ secrets.PAT }} --source https://api.nuget.org/v3/index.json --skip-duplicate + + publish_release: + needs: [create_release] + runs-on: ubuntu-latest + name: Publish Release + environment: production + + steps: + - name: Publish Release + run: | + gh release edit v${{ inputs.milestone }} --repo '${{ github.repository }}' --draft=false + + close_milestone: + needs: [create_release] + runs-on: ubuntu-latest + name: Close Milestone + environment: production + + steps: + # Doing a checkout, until this issue is resolved. + # https://github.com/valeriobelli/gh-milestone/issues/15 + - uses: actions/checkout@v4 + + - name: Close Milestone + run: | + gh extension install valeriobelli/gh-milestone + $milestones = $(gh milestone list --json number,title) | ConvertFrom-Json + $milestoneNumber = ($milestones | Where-Object { $_.title -eq "${{ inputs.milestone }}" }).number + gh milestone edit $milestoneNumber --state closed + + update_version_numbers: + needs: [create_release] + runs-on: ubuntu-latest + name: Update Version Numbers + environment: production + + permissions: + actions: write + + steps: + # Checkout is needed so that we can update the get_versions.yml file + - uses: actions/checkout@v4 + + - name: Increment Version Numbers + run: | + function Update-Version { + param ( + [string]$Prefix + ) + $workflowPath = "./.github/workflows/get_versions.yml" + $workflowContent = Get-Content -Path $workflowPath + + $versionPattern = '"(\d+\.\d+\.)(\d+)"' + $pattern = "$Prefix`: $versionPattern" + $match = $workflowContent -match $pattern + + if ($match[0] -match $versionPattern) { + $newVersion = $Matches[1] + ([int]$Matches[2] + 1) + $workflowContent = $workflowContent -replace $pattern,"$Prefix`: `"$newVersion`"" + Write-Host "$Prefix updated to $newVersion" + } else { + Write-Error "Failed to update $Prefix version" + } + + Set-Content -Path $workflowPath -Value $workflowContent + } + + Update-Version -Prefix "mdix-version" + Update-Version -Prefix "mdix-colors-version" + Update-Version -Prefix "mdix-mahapps-version" + + - name: Push Changes + run: | + git config --local user.email "github-actions[bot]@users.noreply.github.com" + git config --local user.name "github-actions[bot]" + git commit -m "[automated] Increment version numbers after release of ${{ inputs.milestone }}" --all + git push diff --git a/.gitignore b/.gitignore index 7dbc9b3231..eb4768399a 100644 --- a/.gitignore +++ b/.gitignore @@ -16,7 +16,6 @@ [Rr]eleases/ x64/ x86/ -build/ bld/ [Bb]in/ [Oo]bj/ diff --git a/Directory.Build.props b/Directory.Build.props index efa01c2f64..d5c2513673 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -7,7 +7,7 @@ prompt true - ..\key.snk + ..\..\build\key.snk false enable @@ -18,16 +18,16 @@ - - - - - - - - - - - + + + + + + + + + + + - + \ No newline at end of file diff --git a/Directory.Build.targets b/Directory.Build.targets deleted file mode 100644 index faf2349bae..0000000000 --- a/Directory.Build.targets +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/MainDemo.Uwp/App.xaml b/MainDemo.Uwp/App.xaml deleted file mode 100644 index 5231750733..0000000000 --- a/MainDemo.Uwp/App.xaml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/MainDemo.Uwp/App.xaml.cs b/MainDemo.Uwp/App.xaml.cs deleted file mode 100644 index 03999644d3..0000000000 --- a/MainDemo.Uwp/App.xaml.cs +++ /dev/null @@ -1,108 +0,0 @@ -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Runtime.InteropServices.WindowsRuntime; -using Windows.ApplicationModel; -using Windows.ApplicationModel.Activation; -using Windows.Foundation; -using Windows.Foundation.Collections; -using Windows.UI.Xaml; -using Windows.UI.Xaml.Controls; -using Windows.UI.Xaml.Controls.Primitives; -using Windows.UI.Xaml.Data; -using Windows.UI.Xaml.Input; -using Windows.UI.Xaml.Media; -using Windows.UI.Xaml.Navigation; - -namespace MainDemo.Uwp -{ - /// - /// Provides application-specific behavior to supplement the default Application class. - /// - sealed partial class App : Application - { - /// - /// Initializes the singleton application object. This is the first line of authored code - /// executed, and as such is the logical equivalent of main() or WinMain(). - /// - public App() - { - Microsoft.ApplicationInsights.WindowsAppInitializer.InitializeAsync( - Microsoft.ApplicationInsights.WindowsCollectors.Metadata | - Microsoft.ApplicationInsights.WindowsCollectors.Session); - this.InitializeComponent(); - this.Suspending += OnSuspending; - } - - /// - /// Invoked when the application is launched normally by the end user. Other entry points - /// will be used such as when the application is launched to open a specific file. - /// - /// Details about the launch request and process. - protected override void OnLaunched(LaunchActivatedEventArgs e) - { - -#if DEBUG - if (System.Diagnostics.Debugger.IsAttached) - { - this.DebugSettings.EnableFrameRateCounter = true; - } -#endif - - Frame rootFrame = Window.Current.Content as Frame; - - // Do not repeat app initialization when the Window already has content, - // just ensure that the window is active - if (rootFrame == null) - { - // Create a Frame to act as the navigation context and navigate to the first page - rootFrame = new Frame(); - - rootFrame.NavigationFailed += OnNavigationFailed; - - if (e.PreviousExecutionState == ApplicationExecutionState.Terminated) - { - //TODO: Load state from previously suspended application - } - - // Place the frame in the current Window - Window.Current.Content = rootFrame; - } - - if (rootFrame.Content == null) - { - // When the navigation stack isn't restored navigate to the first page, - // configuring the new page by passing required information as a navigation - // parameter - rootFrame.Navigate(typeof(MainPage), e.Arguments); - } - // Ensure the current window is active - Window.Current.Activate(); - } - - /// - /// Invoked when Navigation to a certain page fails - /// - /// The Frame which failed navigation - /// Details about the navigation failure - void OnNavigationFailed(object sender, NavigationFailedEventArgs e) - { - throw new Exception("Failed to load Page " + e.SourcePageType.FullName); - } - - /// - /// Invoked when application execution is being suspended. Application state is saved - /// without knowing whether the application will be terminated or resumed with the contents - /// of memory still intact. - /// - /// The source of the suspend request. - /// Details about the suspend request. - private void OnSuspending(object sender, SuspendingEventArgs e) - { - var deferral = e.SuspendingOperation.GetDeferral(); - //TODO: Save application state and stop any background activity - deferral.Complete(); - } - } -} diff --git a/MainDemo.Uwp/ApplicationInsights.config b/MainDemo.Uwp/ApplicationInsights.config deleted file mode 100644 index cb2a232da3..0000000000 --- a/MainDemo.Uwp/ApplicationInsights.config +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/MainDemo.Uwp/Assets/LockScreenLogo.scale-200.png b/MainDemo.Uwp/Assets/LockScreenLogo.scale-200.png deleted file mode 100644 index 735f57adb5..0000000000 Binary files a/MainDemo.Uwp/Assets/LockScreenLogo.scale-200.png and /dev/null differ diff --git a/MainDemo.Uwp/Assets/SplashScreen.scale-200.png b/MainDemo.Uwp/Assets/SplashScreen.scale-200.png deleted file mode 100644 index 023e7f1fed..0000000000 Binary files a/MainDemo.Uwp/Assets/SplashScreen.scale-200.png and /dev/null differ diff --git a/MainDemo.Uwp/Assets/Square150x150Logo.scale-200.png b/MainDemo.Uwp/Assets/Square150x150Logo.scale-200.png deleted file mode 100644 index af49fec1a5..0000000000 Binary files a/MainDemo.Uwp/Assets/Square150x150Logo.scale-200.png and /dev/null differ diff --git a/MainDemo.Uwp/Assets/Square44x44Logo.scale-200.png b/MainDemo.Uwp/Assets/Square44x44Logo.scale-200.png deleted file mode 100644 index ce342a2ec8..0000000000 Binary files a/MainDemo.Uwp/Assets/Square44x44Logo.scale-200.png and /dev/null differ diff --git a/MainDemo.Uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png b/MainDemo.Uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png deleted file mode 100644 index f6c02ce97e..0000000000 Binary files a/MainDemo.Uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png and /dev/null differ diff --git a/MainDemo.Uwp/Assets/StoreLogo.png b/MainDemo.Uwp/Assets/StoreLogo.png deleted file mode 100644 index 7385b56c0e..0000000000 Binary files a/MainDemo.Uwp/Assets/StoreLogo.png and /dev/null differ diff --git a/MainDemo.Uwp/Assets/Wide310x150Logo.scale-200.png b/MainDemo.Uwp/Assets/Wide310x150Logo.scale-200.png deleted file mode 100644 index 288995b397..0000000000 Binary files a/MainDemo.Uwp/Assets/Wide310x150Logo.scale-200.png and /dev/null differ diff --git a/MainDemo.Uwp/MainDemo.Uwp.csproj b/MainDemo.Uwp/MainDemo.Uwp.csproj deleted file mode 100644 index 2586a90a22..0000000000 --- a/MainDemo.Uwp/MainDemo.Uwp.csproj +++ /dev/null @@ -1,164 +0,0 @@ - - - - - Debug - x86 - {666A0F51-6B18-4C48-9772-5ED3FDB03A2E} - AppContainerExe - Properties - MainDemo.Uwp - MainDemo.Uwp - en-US - UAP - 10.0.18362.0 - 10.0.18362.0 - 14 - true - 512 - {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - MainDemo.Uwp_TemporaryKey.pfx - win10-arm;win10-arm-aot;win10-x86;win10-x86-aot;win10-x64;win10-x64-aot - - - true - bin\ARM\Debug\ - DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP - ;2008 - full - ARM - false - prompt - true - - - bin\ARM\Release\ - TRACE;NETFX_CORE;WINDOWS_UWP - true - ;2008 - pdbonly - ARM - false - prompt - true - true - - - true - bin\x64\Debug\ - DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP - ;2008 - full - x64 - false - prompt - true - - - bin\x64\Release\ - TRACE;NETFX_CORE;WINDOWS_UWP - true - ;2008 - pdbonly - x64 - false - prompt - true - true - - - true - bin\x86\Debug\ - DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP - ;2008 - full - x86 - false - prompt - true - - - bin\x86\Release\ - TRACE;NETFX_CORE;WINDOWS_UWP - true - ;2008 - pdbonly - x86 - false - prompt - true - true - - - - - PreserveNewest - - - - - App.xaml - - - MainPage.xaml - - - - - - Designer - - - - - - - - - - - - - - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - - - 2.21.0 - - - 1.2.3 - - - 1.1.1 - - - 6.2.14 - - - - - {e4686a3f-cc25-4eef-9a24-7cd4a22da233} - MaterialDesignThemes.Uwp - - - - 14.0 - - - - \ No newline at end of file diff --git a/MainDemo.Uwp/MainPage.xaml b/MainDemo.Uwp/MainPage.xaml deleted file mode 100644 index cfe812f137..0000000000 --- a/MainDemo.Uwp/MainPage.xaml +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - - - - - - Material Design In XAML Toolkit - UWP Edition - - - - - - - - - - - - - Material Design - - - diff --git a/MainDemo.Uwp/MainPage.xaml.cs b/MainDemo.Uwp/MainPage.xaml.cs deleted file mode 100644 index 1b71c3b818..0000000000 --- a/MainDemo.Uwp/MainPage.xaml.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Runtime.InteropServices.WindowsRuntime; -using Windows.Foundation; -using Windows.Foundation.Collections; -using Windows.UI.Xaml; -using Windows.UI.Xaml.Controls; -using Windows.UI.Xaml.Controls.Primitives; -using Windows.UI.Xaml.Data; -using Windows.UI.Xaml.Input; -using Windows.UI.Xaml.Media; -using Windows.UI.Xaml.Navigation; - -// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=402352&clcid=0x409 - -namespace MainDemo.Uwp -{ - /// - /// An empty page that can be used on its own or navigated to within a Frame. - /// - public sealed partial class MainPage : Page - { - public MainPage() - { - this.InitializeComponent(); - } - } -} diff --git a/MainDemo.Uwp/Package.appxmanifest b/MainDemo.Uwp/Package.appxmanifest deleted file mode 100644 index 0b4d55810c..0000000000 --- a/MainDemo.Uwp/Package.appxmanifest +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - MainDemo.Uwp - james - Assets\StoreLogo.png - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/MainDemo.Uwp/Properties/AssemblyInfo.cs b/MainDemo.Uwp/Properties/AssemblyInfo.cs deleted file mode 100644 index 2ea733da14..0000000000 --- a/MainDemo.Uwp/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,29 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("MainDemo.Uwp")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("MainDemo.Uwp")] -[assembly: AssemblyCopyright("Copyright © 2015")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] -[assembly: ComVisible(false)] diff --git a/MainDemo.Uwp/Properties/Default.rd.xml b/MainDemo.Uwp/Properties/Default.rd.xml deleted file mode 100644 index 80a960ce32..0000000000 --- a/MainDemo.Uwp/Properties/Default.rd.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/MainDemo.Uwp/project.lock.json b/MainDemo.Uwp/project.lock.json deleted file mode 100644 index e45e9989f2..0000000000 --- a/MainDemo.Uwp/project.lock.json +++ /dev/null @@ -1,15971 +0,0 @@ -{ - "version": 2, - "targets": { - "UAP,Version=v10.0": { - "Microsoft.ApplicationInsights/1.0.0": { - "type": "package", - "compile": { - "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {} - }, - "runtime": { - "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {} - } - }, - "Microsoft.ApplicationInsights.PersistenceChannel/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.ApplicationInsights": "1.0.0" - }, - "compile": { - "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {} - }, - "runtime": { - "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {} - } - }, - "Microsoft.ApplicationInsights.WindowsApps/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.ApplicationInsights": "1.0.0", - "Microsoft.ApplicationInsights.PersistenceChannel": "1.0.0" - }, - "compile": { - "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {} - }, - "runtime": { - "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {} - } - }, - "Microsoft.CSharp/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Dynamic.Runtime": "4.0.0", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.0.0", - "Microsoft.NETCore.Targets": "1.0.0", - "Microsoft.VisualBasic": "10.0.0", - "System.AppContext": "4.0.0", - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Collections.Immutable": "1.1.37", - "System.ComponentModel": "4.0.0", - "System.ComponentModel.Annotations": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tools": "4.0.0", - "System.Diagnostics.Tracing": "4.0.20", - "System.Dynamic.Runtime": "4.0.10", - "System.Globalization": "4.0.10", - "System.Globalization.Calendars": "4.0.0", - "System.Globalization.Extensions": "4.0.0", - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.IO.Compression.ZipFile": "4.0.0", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.IO.UnmanagedMemoryStream": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Linq.Parallel": "4.0.0", - "System.Linq.Queryable": "4.0.0", - "System.Net.Http": "4.0.0", - "System.Net.NetworkInformation": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Numerics.Vectors": "4.1.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.DispatchProxy": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Metadata": "1.0.22", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Numerics": "4.0.0", - "System.Security.Claims": "4.0.0", - "System.Security.Principal": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10", - "System.Threading.Tasks.Dataflow": "4.5.25", - "System.Threading.Tasks.Parallel": "4.0.0", - "System.Threading.Timer": "4.0.0", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XDocument": "4.0.10" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": { - "type": "package" - }, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime": "1.0.0" - }, - "compile": { - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/mscorlib.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "lib/netcore50/System.Core.dll": {}, - "lib/netcore50/System.Net.dll": {}, - "lib/netcore50/System.Numerics.dll": {}, - "lib/netcore50/System.Runtime.Serialization.dll": {}, - "lib/netcore50/System.ServiceModel.Web.dll": {}, - "lib/netcore50/System.ServiceModel.dll": {}, - "lib/netcore50/System.Windows.dll": {}, - "lib/netcore50/System.Xml.Linq.dll": {}, - "lib/netcore50/System.Xml.Serialization.dll": {}, - "lib/netcore50/System.Xml.dll": {}, - "lib/netcore50/System.dll": {} - }, - "runtimeTargets": { - "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.Core.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.Net.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.Numerics.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.ServiceModel.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.Windows.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.Xml.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/mscorlib.dll": { - "assetType": "runtime", - "rid": "aot" - } - } - }, - "Microsoft.NETCore.Runtime/1.0.0": { - "type": "package" - }, - "Microsoft.NETCore.Targets/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.0", - "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "5.0.0" - } - }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": { - "type": "package" - }, - "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore": "5.0.0", - "Microsoft.NETCore.Portable.Compatibility": "1.0.0", - "Microsoft.NETCore.Runtime": "1.0.0", - "Microsoft.Win32.Primitives": "4.0.0", - "System.ComponentModel.EventBasedAsync": "4.0.10", - "System.Data.Common": "4.0.0", - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.StackTrace": "4.0.0", - "System.IO.IsolatedStorage": "4.0.0", - "System.Net.Http.Rtc": "4.0.0", - "System.Net.Requests": "4.0.10", - "System.Net.Sockets": "4.0.0", - "System.Net.WebHeaderCollection": "4.0.0", - "System.Numerics.Vectors.WindowsRuntime": "4.0.0", - "System.Reflection.Context": "4.0.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", - "System.Runtime.Serialization.Json": "4.0.0", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Runtime.Serialization.Xml": "4.0.10", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.0", - "System.ServiceModel.Duplex": "4.0.0", - "System.ServiceModel.Http": "4.0.10", - "System.ServiceModel.NetTcp": "4.0.0", - "System.ServiceModel.Primitives": "4.0.0", - "System.ServiceModel.Security": "4.0.0", - "System.Text.Encoding.CodePages": "4.0.0", - "System.Xml.XmlSerializer": "4.0.10" - } - }, - "Microsoft.VisualBasic/10.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Dynamic.Runtime": "4.0.10", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "System.AppContext/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Collections.dll": {} - }, - "runtime": { - "lib/netcore50/System.Collections.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Collections.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Collections.Concurrent/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.0", - "System.Globalization": "4.0.10", - "System.Globalization.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.ComponentModel": "4.0.0", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.10": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.Data.Common/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Globalization": "4.0.10", - "System.IO": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Data.Common.dll": {} - }, - "runtime": { - "lib/dotnet/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Diagnostics.Debug/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Debug.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Diagnostics.StackTrace/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.StackTrace.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Diagnostics.Tools/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tracing.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Dynamic.Runtime/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.ObjectModel": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Dynamic.Runtime.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Globalization/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.dll": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Globalization.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Globalization.Calendars/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.Calendars.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Globalization.Extensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.IO.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.IO.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.IO.Compression/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.IO": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.0", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Expressions.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Linq.Parallel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Net.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.Http.Rtc/4.0.0": { - "type": "package", - "dependencies": { - "System.Net.Http": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.Rtc.dll": {} - } - }, - "System.Net.NetworkInformation/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.Networking": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "System.Net.Requests/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.IO": "4.0.10", - "System.Net.Http": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Net.WebHeaderCollection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Net.Requests.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.Requests.dll": {} - } - }, - "System.Net.Sockets/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.Networking": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.Sockets.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.0", - "System.Collections.Specialized": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.0": { - "type": "package", - "dependencies": { - "System.Numerics.Vectors": "4.1.0", - "System.Runtime": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlSerializer": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.DataContractSerialization.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Private.Networking/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.0", - "System.Collections": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Networking.dll": {} - } - }, - "System.Private.ServiceModel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Collections.Specialized": "4.0.0", - "System.ComponentModel.EventBasedAsync": "4.0.10", - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Linq.Queryable": "4.0.0", - "System.Net.Http": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Net.WebHeaderCollection": "4.0.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.DispatchProxy": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Runtime.Serialization.Xml": "4.0.10", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Security.Claims": "4.0.0", - "System.Security.Principal": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10", - "System.Threading.Timer": "4.0.0", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlDocument": "4.0.0", - "System.Xml.XmlSerializer": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.ServiceModel.dll": {} - } - }, - "System.Private.Uri/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Uri.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Reflection/4.0.10": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Reflection.Context/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.DispatchProxy.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Reflection.Extensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Reflection.Metadata/1.0.22": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Immutable": "1.1.37", - "System.Diagnostics.Debug": "4.0.0", - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Text.Encoding.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.TypeExtensions.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Resources.ResourceManager/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.10", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Runtime/4.0.20": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Runtime.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Extensions.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Runtime.Handles/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Handles.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Runtime.InteropServices/4.0.20": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Runtime.Numerics/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.DataContractSerialization": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Runtime.Serialization.Primitives/4.0.10": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.DataContractSerialization": "4.0.0", - "System.Runtime.Serialization.Primitives": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Runtime.WindowsRuntime/4.0.10": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.0", - "System.IO": "4.0.10", - "System.ObjectModel": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.WindowsRuntime": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - } - }, - "System.Security.Claims/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Security.Principal": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Text.Encoding.CodePages/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.Encoding.CodePages.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.Extensions.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Text.RegularExpressions/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Threading.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Threading.Overlapped/4.0.0": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Concurrent": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Diagnostics.Tracing": "4.0.0", - "System.Dynamic.Runtime": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.Concurrent": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Timer.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlDocument": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XmlSerializer.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "Win2D.uwp/1.3.0": { - "type": "package", - "compile": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {}, - "lib/uap10.0/Workaround1200257.dll": {} - }, - "runtime": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {}, - "lib/uap10.0/Workaround1200257.dll": {} - }, - "runtimeTargets": { - "runtimes/win10-arm/native/Microsoft.Graphics.Canvas.dll": { - "assetType": "native", - "rid": "win10-arm" - }, - "runtimes/win10-x64/native/Microsoft.Graphics.Canvas.dll": { - "assetType": "native", - "rid": "win10-x64" - }, - "runtimes/win10-x86/native/Microsoft.Graphics.Canvas.dll": { - "assetType": "native", - "rid": "win10-x86" - } - } - }, - "MaterialDesignThemes.Uwp/1.0.0": { - "type": "project", - "framework": "UAP,Version=v10.0", - "dependencies": { - "Microsoft.NETCore.UniversalWindowsPlatform": "5.0.0", - "Win2D.uwp": "1.3.0" - } - } - }, - "UAP,Version=v10.0/win10-arm": { - "Microsoft.ApplicationInsights/1.0.0": { - "type": "package", - "compile": { - "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {} - }, - "runtime": { - "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {} - } - }, - "Microsoft.ApplicationInsights.PersistenceChannel/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.ApplicationInsights": "1.0.0" - }, - "compile": { - "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {} - }, - "runtime": { - "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {} - } - }, - "Microsoft.ApplicationInsights.WindowsApps/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.ApplicationInsights": "1.0.0", - "Microsoft.ApplicationInsights.PersistenceChannel": "1.0.0" - }, - "compile": { - "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {} - }, - "runtime": { - "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {} - } - }, - "Microsoft.CSharp/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Dynamic.Runtime": "4.0.0", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.0.0", - "Microsoft.NETCore.Targets": "1.0.0", - "Microsoft.VisualBasic": "10.0.0", - "System.AppContext": "4.0.0", - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Collections.Immutable": "1.1.37", - "System.ComponentModel": "4.0.0", - "System.ComponentModel.Annotations": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tools": "4.0.0", - "System.Diagnostics.Tracing": "4.0.20", - "System.Dynamic.Runtime": "4.0.10", - "System.Globalization": "4.0.10", - "System.Globalization.Calendars": "4.0.0", - "System.Globalization.Extensions": "4.0.0", - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.IO.Compression.ZipFile": "4.0.0", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.IO.UnmanagedMemoryStream": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Linq.Parallel": "4.0.0", - "System.Linq.Queryable": "4.0.0", - "System.Net.Http": "4.0.0", - "System.Net.NetworkInformation": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Numerics.Vectors": "4.1.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.DispatchProxy": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Metadata": "1.0.22", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Numerics": "4.0.0", - "System.Security.Claims": "4.0.0", - "System.Security.Principal": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10", - "System.Threading.Tasks.Dataflow": "4.5.25", - "System.Threading.Tasks.Parallel": "4.0.0", - "System.Threading.Timer": "4.0.0", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XDocument": "4.0.10" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": { - "type": "package" - }, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime": "1.0.0" - }, - "compile": { - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/mscorlib.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "lib/netcore50/System.Core.dll": {}, - "lib/netcore50/System.Net.dll": {}, - "lib/netcore50/System.Numerics.dll": {}, - "lib/netcore50/System.Runtime.Serialization.dll": {}, - "lib/netcore50/System.ServiceModel.Web.dll": {}, - "lib/netcore50/System.ServiceModel.dll": {}, - "lib/netcore50/System.Windows.dll": {}, - "lib/netcore50/System.Xml.Linq.dll": {}, - "lib/netcore50/System.Xml.Serialization.dll": {}, - "lib/netcore50/System.Xml.dll": {}, - "lib/netcore50/System.dll": {} - } - }, - "Microsoft.NETCore.Runtime/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime.CoreCLR-arm": "1.0.0" - } - }, - "Microsoft.NETCore.Runtime.CoreCLR-arm/1.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "[4.0.10]", - "System.Diagnostics.Contracts": "[4.0.0]", - "System.Diagnostics.Debug": "[4.0.10]", - "System.Diagnostics.StackTrace": "[4.0.0]", - "System.Diagnostics.Tools": "[4.0.0]", - "System.Diagnostics.Tracing": "[4.0.20]", - "System.Globalization": "[4.0.10]", - "System.Globalization.Calendars": "[4.0.0]", - "System.IO": "[4.0.10]", - "System.ObjectModel": "[4.0.10]", - "System.Private.Uri": "[4.0.0]", - "System.Reflection": "[4.0.10]", - "System.Reflection.Extensions": "[4.0.0]", - "System.Reflection.Primitives": "[4.0.0]", - "System.Resources.ResourceManager": "[4.0.0]", - "System.Runtime": "[4.0.20]", - "System.Runtime.Extensions": "[4.0.10]", - "System.Runtime.Handles": "[4.0.0]", - "System.Runtime.InteropServices": "[4.0.20]", - "System.Text.Encoding": "[4.0.10]", - "System.Text.Encoding.Extensions": "[4.0.10]", - "System.Threading": "[4.0.10]", - "System.Threading.Tasks": "[4.0.10]", - "System.Threading.Timer": "[4.0.0]" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win8-arm/lib/dotnet/mscorlib.ni.dll": {} - }, - "native": { - "runtimes/win8-arm/native/clretwrc.dll": {}, - "runtimes/win8-arm/native/coreclr.dll": {}, - "runtimes/win8-arm/native/dbgshim.dll": {}, - "runtimes/win8-arm/native/mscordaccore.dll": {}, - "runtimes/win8-arm/native/mscordbi.dll": {}, - "runtimes/win8-arm/native/mscorrc.debug.dll": {}, - "runtimes/win8-arm/native/mscorrc.dll": {} - } - }, - "Microsoft.NETCore.Targets/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.0", - "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "5.0.0" - } - }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": { - "type": "package" - }, - "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore": "5.0.0", - "Microsoft.NETCore.Portable.Compatibility": "1.0.0", - "Microsoft.NETCore.Runtime": "1.0.0", - "Microsoft.Win32.Primitives": "4.0.0", - "System.ComponentModel.EventBasedAsync": "4.0.10", - "System.Data.Common": "4.0.0", - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.StackTrace": "4.0.0", - "System.IO.IsolatedStorage": "4.0.0", - "System.Net.Http.Rtc": "4.0.0", - "System.Net.Requests": "4.0.10", - "System.Net.Sockets": "4.0.0", - "System.Net.WebHeaderCollection": "4.0.0", - "System.Numerics.Vectors.WindowsRuntime": "4.0.0", - "System.Reflection.Context": "4.0.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", - "System.Runtime.Serialization.Json": "4.0.0", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Runtime.Serialization.Xml": "4.0.10", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.0", - "System.ServiceModel.Duplex": "4.0.0", - "System.ServiceModel.Http": "4.0.10", - "System.ServiceModel.NetTcp": "4.0.0", - "System.ServiceModel.Primitives": "4.0.0", - "System.ServiceModel.Security": "4.0.0", - "System.Text.Encoding.CodePages": "4.0.0", - "System.Xml.XmlSerializer": "4.0.10" - } - }, - "Microsoft.VisualBasic/10.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Dynamic.Runtime": "4.0.10", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "System.AppContext/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Collections.dll": {} - }, - "runtime": { - "lib/netcore50/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.0", - "System.Globalization": "4.0.10", - "System.Globalization.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.ComponentModel": "4.0.0", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.10": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.Data.Common/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Globalization": "4.0.10", - "System.IO": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Data.Common.dll": {} - }, - "runtime": { - "lib/dotnet/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.ObjectModel": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Emit.Lightweight": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.dll": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.IO.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.dll": {} - } - }, - "System.IO.Compression/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.IO": "4.0.0", - "System.IO.Compression.clrcompression-arm": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.clrcompression-arm/4.0.0": { - "type": "package", - "native": { - "runtimes/win10-arm/native/ClrCompression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.0", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Emit.Lightweight": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Net.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.Http.Rtc/4.0.0": { - "type": "package", - "dependencies": { - "System.Net.Http": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.Rtc.dll": {} - } - }, - "System.Net.NetworkInformation/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.Networking": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "System.Net.Requests/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.IO": "4.0.10", - "System.Net.Http": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Net.WebHeaderCollection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Net.Requests.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.Requests.dll": {} - } - }, - "System.Net.Sockets/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.Networking": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.Sockets.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.0", - "System.Collections.Specialized": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.0": { - "type": "package", - "dependencies": { - "System.Numerics.Vectors": "4.1.0", - "System.Runtime": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Emit.Lightweight": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlSerializer": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Private.Networking/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.0", - "System.Collections": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Networking.dll": {} - } - }, - "System.Private.ServiceModel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Collections.Specialized": "4.0.0", - "System.ComponentModel.EventBasedAsync": "4.0.10", - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Linq.Queryable": "4.0.0", - "System.Net.Http": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Net.WebHeaderCollection": "4.0.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.DispatchProxy": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Runtime.Serialization.Xml": "4.0.10", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Security.Claims": "4.0.0", - "System.Security.Principal": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10", - "System.Threading.Timer": "4.0.0", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlDocument": "4.0.0", - "System.Xml.XmlSerializer": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.ServiceModel.dll": {} - } - }, - "System.Private.Uri/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Uri.dll": {} - } - }, - "System.Reflection/4.0.10": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.dll": {} - } - }, - "System.Reflection.Context/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Emit": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/1.0.22": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Immutable": "1.1.37", - "System.Diagnostics.Debug": "4.0.0", - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Text.Encoding.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.10", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.20": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.20": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.DataContractSerialization": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.0.10": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.DataContractSerialization": "4.0.0", - "System.Runtime.Serialization.Primitives": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.0.10": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.0", - "System.IO": "4.0.10", - "System.ObjectModel": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.WindowsRuntime": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - } - }, - "System.Security.Claims/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Security.Principal": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.CodePages/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.Encoding.CodePages.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Concurrent": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Diagnostics.Tracing": "4.0.0", - "System.Dynamic.Runtime": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.Concurrent": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Emit": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlDocument": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XmlSerializer.dll": {} - } - }, - "Win2D.uwp/1.3.0": { - "type": "package", - "compile": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {}, - "lib/uap10.0/Workaround1200257.dll": {} - }, - "runtime": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {}, - "lib/uap10.0/Workaround1200257.dll": {} - }, - "native": { - "runtimes/win10-arm/native/Microsoft.Graphics.Canvas.dll": {} - } - }, - "MaterialDesignThemes.Uwp/1.0.0": { - "type": "project", - "framework": "UAP,Version=v10.0", - "dependencies": { - "Microsoft.NETCore.UniversalWindowsPlatform": "5.0.0", - "Win2D.uwp": "1.3.0" - } - } - }, - "UAP,Version=v10.0/win10-arm-aot": { - "Microsoft.ApplicationInsights/1.0.0": { - "type": "package", - "compile": { - "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {} - }, - "runtime": { - "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {} - } - }, - "Microsoft.ApplicationInsights.PersistenceChannel/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.ApplicationInsights": "1.0.0" - }, - "compile": { - "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {} - }, - "runtime": { - "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {} - } - }, - "Microsoft.ApplicationInsights.WindowsApps/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.ApplicationInsights": "1.0.0", - "Microsoft.ApplicationInsights.PersistenceChannel": "1.0.0" - }, - "compile": { - "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {} - }, - "runtime": { - "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {} - } - }, - "Microsoft.CSharp/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Dynamic.Runtime": "4.0.0", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.0.0", - "Microsoft.NETCore.Targets": "1.0.0", - "Microsoft.VisualBasic": "10.0.0", - "System.AppContext": "4.0.0", - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Collections.Immutable": "1.1.37", - "System.ComponentModel": "4.0.0", - "System.ComponentModel.Annotations": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tools": "4.0.0", - "System.Diagnostics.Tracing": "4.0.20", - "System.Dynamic.Runtime": "4.0.10", - "System.Globalization": "4.0.10", - "System.Globalization.Calendars": "4.0.0", - "System.Globalization.Extensions": "4.0.0", - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.IO.Compression.ZipFile": "4.0.0", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.IO.UnmanagedMemoryStream": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Linq.Parallel": "4.0.0", - "System.Linq.Queryable": "4.0.0", - "System.Net.Http": "4.0.0", - "System.Net.NetworkInformation": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Numerics.Vectors": "4.1.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.DispatchProxy": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Metadata": "1.0.22", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Numerics": "4.0.0", - "System.Security.Claims": "4.0.0", - "System.Security.Principal": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10", - "System.Threading.Tasks.Dataflow": "4.5.25", - "System.Threading.Tasks.Parallel": "4.0.0", - "System.Threading.Timer": "4.0.0", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XDocument": "4.0.10" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": { - "type": "package" - }, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime": "1.0.0" - }, - "compile": { - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/mscorlib.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "runtimes/aot/lib/netcore50/System.Core.dll": {}, - "runtimes/aot/lib/netcore50/System.Net.dll": {}, - "runtimes/aot/lib/netcore50/System.Numerics.dll": {}, - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {}, - "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {}, - "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {}, - "runtimes/aot/lib/netcore50/System.Windows.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.dll": {}, - "runtimes/aot/lib/netcore50/System.dll": {}, - "runtimes/aot/lib/netcore50/mscorlib.dll": {} - } - }, - "Microsoft.NETCore.Runtime/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime.Native": "1.0.0" - } - }, - "Microsoft.NETCore.Runtime.Native/1.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "[4.0.10]", - "System.Diagnostics.Contracts": "[4.0.0]", - "System.Diagnostics.Debug": "[4.0.10]", - "System.Diagnostics.StackTrace": "[4.0.0]", - "System.Diagnostics.Tools": "[4.0.0]", - "System.Diagnostics.Tracing": "[4.0.20]", - "System.Globalization": "[4.0.10]", - "System.Globalization.Calendars": "[4.0.0]", - "System.IO": "[4.0.10]", - "System.ObjectModel": "[4.0.10]", - "System.Private.Uri": "[4.0.0]", - "System.Reflection": "[4.0.10]", - "System.Reflection.Extensions": "[4.0.0]", - "System.Reflection.Primitives": "[4.0.0]", - "System.Resources.ResourceManager": "[4.0.0]", - "System.Runtime": "[4.0.20]", - "System.Runtime.Extensions": "[4.0.10]", - "System.Runtime.Handles": "[4.0.0]", - "System.Runtime.InteropServices": "[4.0.20]", - "System.Text.Encoding": "[4.0.10]", - "System.Text.Encoding.Extensions": "[4.0.10]", - "System.Threading": "[4.0.10]", - "System.Threading.Tasks": "[4.0.10]", - "System.Threading.Timer": "[4.0.0]" - } - }, - "Microsoft.NETCore.Targets/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.0", - "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "5.0.0" - } - }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": { - "type": "package" - }, - "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore": "5.0.0", - "Microsoft.NETCore.Portable.Compatibility": "1.0.0", - "Microsoft.NETCore.Runtime": "1.0.0", - "Microsoft.Win32.Primitives": "4.0.0", - "System.ComponentModel.EventBasedAsync": "4.0.10", - "System.Data.Common": "4.0.0", - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.StackTrace": "4.0.0", - "System.IO.IsolatedStorage": "4.0.0", - "System.Net.Http.Rtc": "4.0.0", - "System.Net.Requests": "4.0.10", - "System.Net.Sockets": "4.0.0", - "System.Net.WebHeaderCollection": "4.0.0", - "System.Numerics.Vectors.WindowsRuntime": "4.0.0", - "System.Reflection.Context": "4.0.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", - "System.Runtime.Serialization.Json": "4.0.0", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Runtime.Serialization.Xml": "4.0.10", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.0", - "System.ServiceModel.Duplex": "4.0.0", - "System.ServiceModel.Http": "4.0.10", - "System.ServiceModel.NetTcp": "4.0.0", - "System.ServiceModel.Primitives": "4.0.0", - "System.ServiceModel.Security": "4.0.0", - "System.Text.Encoding.CodePages": "4.0.0", - "System.Xml.XmlSerializer": "4.0.10" - } - }, - "Microsoft.VisualBasic/10.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Dynamic.Runtime": "4.0.10", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "System.AppContext/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Collections.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.0", - "System.Globalization": "4.0.10", - "System.Globalization.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.ComponentModel": "4.0.0", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.10": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.Data.Common/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Globalization": "4.0.10", - "System.IO": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Data.Common.dll": {} - }, - "runtime": { - "lib/dotnet/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.ObjectModel": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.IO.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.IO.dll": {} - } - }, - "System.IO.Compression/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.IO": "4.0.0", - "System.IO.Compression.clrcompression-arm": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.clrcompression-arm/4.0.0": { - "type": "package", - "native": { - "runtimes/win10-arm/native/ClrCompression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.0", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Linq.Expressions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Net.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.Http.Rtc/4.0.0": { - "type": "package", - "dependencies": { - "System.Net.Http": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.Rtc.dll": {} - } - }, - "System.Net.NetworkInformation/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.Networking": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "System.Net.Requests/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.IO": "4.0.10", - "System.Net.Http": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Net.WebHeaderCollection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Net.Requests.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.Requests.dll": {} - } - }, - "System.Net.Sockets/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.Networking": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.Sockets.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.0", - "System.Collections.Specialized": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.0": { - "type": "package", - "dependencies": { - "System.Numerics.Vectors": "4.1.0", - "System.Runtime": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlSerializer": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Private.Networking/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.0", - "System.Collections": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Networking.dll": {} - } - }, - "System.Private.ServiceModel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Collections.Specialized": "4.0.0", - "System.ComponentModel.EventBasedAsync": "4.0.10", - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Linq.Queryable": "4.0.0", - "System.Net.Http": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Net.WebHeaderCollection": "4.0.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.DispatchProxy": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Runtime.Serialization.Xml": "4.0.10", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Security.Claims": "4.0.0", - "System.Security.Principal": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10", - "System.Threading.Timer": "4.0.0", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlDocument": "4.0.0", - "System.Xml.XmlSerializer": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.ServiceModel.dll": {} - } - }, - "System.Private.Uri/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll": {} - } - }, - "System.Reflection/4.0.10": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {} - } - }, - "System.Reflection.Context/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Extensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/1.0.22": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Immutable": "1.1.37", - "System.Diagnostics.Debug": "4.0.0", - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Text.Encoding.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.10", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.20": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.20": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.DataContractSerialization": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.0.10": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.DataContractSerialization": "4.0.0", - "System.Runtime.Serialization.Primitives": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.0.10": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.0", - "System.IO": "4.0.10", - "System.ObjectModel": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.WindowsRuntime": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - } - }, - "System.Security.Claims/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Security.Principal": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.CodePages/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.Encoding.CodePages.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Concurrent": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Diagnostics.Tracing": "4.0.0", - "System.Dynamic.Runtime": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.Concurrent": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Emit": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlDocument": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {} - } - }, - "Win2D.uwp/1.3.0": { - "type": "package", - "compile": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {}, - "lib/uap10.0/Workaround1200257.dll": {} - }, - "runtime": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {}, - "lib/uap10.0/Workaround1200257.dll": {} - }, - "native": { - "runtimes/win10-arm/native/Microsoft.Graphics.Canvas.dll": {} - } - }, - "MaterialDesignThemes.Uwp/1.0.0": { - "type": "project", - "framework": "UAP,Version=v10.0", - "dependencies": { - "Microsoft.NETCore.UniversalWindowsPlatform": "5.0.0", - "Win2D.uwp": "1.3.0" - } - } - }, - "UAP,Version=v10.0/win10-x64": { - "Microsoft.ApplicationInsights/1.0.0": { - "type": "package", - "compile": { - "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {} - }, - "runtime": { - "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {} - } - }, - "Microsoft.ApplicationInsights.PersistenceChannel/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.ApplicationInsights": "1.0.0" - }, - "compile": { - "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {} - }, - "runtime": { - "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {} - } - }, - "Microsoft.ApplicationInsights.WindowsApps/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.ApplicationInsights": "1.0.0", - "Microsoft.ApplicationInsights.PersistenceChannel": "1.0.0" - }, - "compile": { - "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {} - }, - "runtime": { - "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {} - } - }, - "Microsoft.CSharp/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Dynamic.Runtime": "4.0.0", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.0.0", - "Microsoft.NETCore.Targets": "1.0.0", - "Microsoft.VisualBasic": "10.0.0", - "System.AppContext": "4.0.0", - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Collections.Immutable": "1.1.37", - "System.ComponentModel": "4.0.0", - "System.ComponentModel.Annotations": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tools": "4.0.0", - "System.Diagnostics.Tracing": "4.0.20", - "System.Dynamic.Runtime": "4.0.10", - "System.Globalization": "4.0.10", - "System.Globalization.Calendars": "4.0.0", - "System.Globalization.Extensions": "4.0.0", - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.IO.Compression.ZipFile": "4.0.0", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.IO.UnmanagedMemoryStream": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Linq.Parallel": "4.0.0", - "System.Linq.Queryable": "4.0.0", - "System.Net.Http": "4.0.0", - "System.Net.NetworkInformation": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Numerics.Vectors": "4.1.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.DispatchProxy": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Metadata": "1.0.22", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Numerics": "4.0.0", - "System.Security.Claims": "4.0.0", - "System.Security.Principal": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10", - "System.Threading.Tasks.Dataflow": "4.5.25", - "System.Threading.Tasks.Parallel": "4.0.0", - "System.Threading.Timer": "4.0.0", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XDocument": "4.0.10" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": { - "type": "package" - }, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime": "1.0.0" - }, - "compile": { - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/mscorlib.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "lib/netcore50/System.Core.dll": {}, - "lib/netcore50/System.Net.dll": {}, - "lib/netcore50/System.Numerics.dll": {}, - "lib/netcore50/System.Runtime.Serialization.dll": {}, - "lib/netcore50/System.ServiceModel.Web.dll": {}, - "lib/netcore50/System.ServiceModel.dll": {}, - "lib/netcore50/System.Windows.dll": {}, - "lib/netcore50/System.Xml.Linq.dll": {}, - "lib/netcore50/System.Xml.Serialization.dll": {}, - "lib/netcore50/System.Xml.dll": {}, - "lib/netcore50/System.dll": {} - } - }, - "Microsoft.NETCore.Runtime/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime.CoreCLR-x64": "1.0.0", - "Microsoft.NETCore.Windows.ApiSets-x64": "1.0.0" - } - }, - "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "[4.0.10]", - "System.Diagnostics.Contracts": "[4.0.0]", - "System.Diagnostics.Debug": "[4.0.10]", - "System.Diagnostics.StackTrace": "[4.0.0]", - "System.Diagnostics.Tools": "[4.0.0]", - "System.Diagnostics.Tracing": "[4.0.20]", - "System.Globalization": "[4.0.10]", - "System.Globalization.Calendars": "[4.0.0]", - "System.IO": "[4.0.10]", - "System.ObjectModel": "[4.0.10]", - "System.Private.Uri": "[4.0.0]", - "System.Reflection": "[4.0.10]", - "System.Reflection.Extensions": "[4.0.0]", - "System.Reflection.Primitives": "[4.0.0]", - "System.Resources.ResourceManager": "[4.0.0]", - "System.Runtime": "[4.0.20]", - "System.Runtime.Extensions": "[4.0.10]", - "System.Runtime.Handles": "[4.0.0]", - "System.Runtime.InteropServices": "[4.0.20]", - "System.Text.Encoding": "[4.0.10]", - "System.Text.Encoding.Extensions": "[4.0.10]", - "System.Threading": "[4.0.10]", - "System.Threading.Tasks": "[4.0.10]", - "System.Threading.Timer": "[4.0.0]" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll": {} - }, - "native": { - "runtimes/win7-x64/native/clretwrc.dll": {}, - "runtimes/win7-x64/native/coreclr.dll": {}, - "runtimes/win7-x64/native/dbgshim.dll": {}, - "runtimes/win7-x64/native/mscordaccore.dll": {}, - "runtimes/win7-x64/native/mscordbi.dll": {}, - "runtimes/win7-x64/native/mscorrc.debug.dll": {}, - "runtimes/win7-x64/native/mscorrc.dll": {} - } - }, - "Microsoft.NETCore.Targets/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.0", - "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "5.0.0" - } - }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": { - "type": "package" - }, - "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore": "5.0.0", - "Microsoft.NETCore.Portable.Compatibility": "1.0.0", - "Microsoft.NETCore.Runtime": "1.0.0", - "Microsoft.Win32.Primitives": "4.0.0", - "System.ComponentModel.EventBasedAsync": "4.0.10", - "System.Data.Common": "4.0.0", - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.StackTrace": "4.0.0", - "System.IO.IsolatedStorage": "4.0.0", - "System.Net.Http.Rtc": "4.0.0", - "System.Net.Requests": "4.0.10", - "System.Net.Sockets": "4.0.0", - "System.Net.WebHeaderCollection": "4.0.0", - "System.Numerics.Vectors.WindowsRuntime": "4.0.0", - "System.Reflection.Context": "4.0.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", - "System.Runtime.Serialization.Json": "4.0.0", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Runtime.Serialization.Xml": "4.0.10", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.0", - "System.ServiceModel.Duplex": "4.0.0", - "System.ServiceModel.Http": "4.0.10", - "System.ServiceModel.NetTcp": "4.0.0", - "System.ServiceModel.Primitives": "4.0.0", - "System.ServiceModel.Security": "4.0.0", - "System.Text.Encoding.CodePages": "4.0.0", - "System.Xml.XmlSerializer": "4.0.10" - } - }, - "Microsoft.NETCore.Windows.ApiSets-x64/1.0.0": { - "type": "package", - "native": { - "runtimes/win10-x64/native/_._": {} - } - }, - "Microsoft.VisualBasic/10.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Dynamic.Runtime": "4.0.10", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "System.AppContext/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Collections.dll": {} - }, - "runtime": { - "lib/netcore50/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.0", - "System.Globalization": "4.0.10", - "System.Globalization.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.ComponentModel": "4.0.0", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.10": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.Data.Common/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Globalization": "4.0.10", - "System.IO": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Data.Common.dll": {} - }, - "runtime": { - "lib/dotnet/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.ObjectModel": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Emit.Lightweight": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.dll": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.IO.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.dll": {} - } - }, - "System.IO.Compression/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.IO": "4.0.0", - "System.IO.Compression.clrcompression-x64": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.clrcompression-x64/4.0.0": { - "type": "package", - "native": { - "runtimes/win10-x64/native/ClrCompression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.0", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Emit.Lightweight": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Net.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.Http.Rtc/4.0.0": { - "type": "package", - "dependencies": { - "System.Net.Http": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.Rtc.dll": {} - } - }, - "System.Net.NetworkInformation/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.Networking": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "System.Net.Requests/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.IO": "4.0.10", - "System.Net.Http": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Net.WebHeaderCollection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Net.Requests.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.Requests.dll": {} - } - }, - "System.Net.Sockets/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.Networking": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.Sockets.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.0", - "System.Collections.Specialized": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.0": { - "type": "package", - "dependencies": { - "System.Numerics.Vectors": "4.1.0", - "System.Runtime": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Emit.Lightweight": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlSerializer": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Private.Networking/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.0", - "System.Collections": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Networking.dll": {} - } - }, - "System.Private.ServiceModel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Collections.Specialized": "4.0.0", - "System.ComponentModel.EventBasedAsync": "4.0.10", - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Linq.Queryable": "4.0.0", - "System.Net.Http": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Net.WebHeaderCollection": "4.0.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.DispatchProxy": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Runtime.Serialization.Xml": "4.0.10", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Security.Claims": "4.0.0", - "System.Security.Principal": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10", - "System.Threading.Timer": "4.0.0", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlDocument": "4.0.0", - "System.Xml.XmlSerializer": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.ServiceModel.dll": {} - } - }, - "System.Private.Uri/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Uri.dll": {} - } - }, - "System.Reflection/4.0.10": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.dll": {} - } - }, - "System.Reflection.Context/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Emit": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/1.0.22": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Immutable": "1.1.37", - "System.Diagnostics.Debug": "4.0.0", - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Text.Encoding.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.10", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.20": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.20": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.DataContractSerialization": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.0.10": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.DataContractSerialization": "4.0.0", - "System.Runtime.Serialization.Primitives": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.0.10": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.0", - "System.IO": "4.0.10", - "System.ObjectModel": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.WindowsRuntime": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - } - }, - "System.Security.Claims/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Security.Principal": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.CodePages/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.Encoding.CodePages.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Concurrent": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Diagnostics.Tracing": "4.0.0", - "System.Dynamic.Runtime": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.Concurrent": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Emit": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlDocument": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XmlSerializer.dll": {} - } - }, - "Win2D.uwp/1.3.0": { - "type": "package", - "compile": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {}, - "lib/uap10.0/Workaround1200257.dll": {} - }, - "runtime": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {}, - "lib/uap10.0/Workaround1200257.dll": {} - }, - "native": { - "runtimes/win10-x64/native/Microsoft.Graphics.Canvas.dll": {} - } - }, - "MaterialDesignThemes.Uwp/1.0.0": { - "type": "project", - "framework": "UAP,Version=v10.0", - "dependencies": { - "Microsoft.NETCore.UniversalWindowsPlatform": "5.0.0", - "Win2D.uwp": "1.3.0" - } - } - }, - "UAP,Version=v10.0/win10-x64-aot": { - "Microsoft.ApplicationInsights/1.0.0": { - "type": "package", - "compile": { - "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {} - }, - "runtime": { - "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {} - } - }, - "Microsoft.ApplicationInsights.PersistenceChannel/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.ApplicationInsights": "1.0.0" - }, - "compile": { - "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {} - }, - "runtime": { - "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {} - } - }, - "Microsoft.ApplicationInsights.WindowsApps/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.ApplicationInsights": "1.0.0", - "Microsoft.ApplicationInsights.PersistenceChannel": "1.0.0" - }, - "compile": { - "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {} - }, - "runtime": { - "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {} - } - }, - "Microsoft.CSharp/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Dynamic.Runtime": "4.0.0", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.0.0", - "Microsoft.NETCore.Targets": "1.0.0", - "Microsoft.VisualBasic": "10.0.0", - "System.AppContext": "4.0.0", - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Collections.Immutable": "1.1.37", - "System.ComponentModel": "4.0.0", - "System.ComponentModel.Annotations": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tools": "4.0.0", - "System.Diagnostics.Tracing": "4.0.20", - "System.Dynamic.Runtime": "4.0.10", - "System.Globalization": "4.0.10", - "System.Globalization.Calendars": "4.0.0", - "System.Globalization.Extensions": "4.0.0", - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.IO.Compression.ZipFile": "4.0.0", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.IO.UnmanagedMemoryStream": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Linq.Parallel": "4.0.0", - "System.Linq.Queryable": "4.0.0", - "System.Net.Http": "4.0.0", - "System.Net.NetworkInformation": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Numerics.Vectors": "4.1.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.DispatchProxy": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Metadata": "1.0.22", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Numerics": "4.0.0", - "System.Security.Claims": "4.0.0", - "System.Security.Principal": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10", - "System.Threading.Tasks.Dataflow": "4.5.25", - "System.Threading.Tasks.Parallel": "4.0.0", - "System.Threading.Timer": "4.0.0", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XDocument": "4.0.10" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": { - "type": "package" - }, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime": "1.0.0" - }, - "compile": { - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/mscorlib.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "runtimes/aot/lib/netcore50/System.Core.dll": {}, - "runtimes/aot/lib/netcore50/System.Net.dll": {}, - "runtimes/aot/lib/netcore50/System.Numerics.dll": {}, - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {}, - "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {}, - "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {}, - "runtimes/aot/lib/netcore50/System.Windows.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.dll": {}, - "runtimes/aot/lib/netcore50/System.dll": {}, - "runtimes/aot/lib/netcore50/mscorlib.dll": {} - } - }, - "Microsoft.NETCore.Runtime/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime.Native": "1.0.0" - } - }, - "Microsoft.NETCore.Runtime.Native/1.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "[4.0.10]", - "System.Diagnostics.Contracts": "[4.0.0]", - "System.Diagnostics.Debug": "[4.0.10]", - "System.Diagnostics.StackTrace": "[4.0.0]", - "System.Diagnostics.Tools": "[4.0.0]", - "System.Diagnostics.Tracing": "[4.0.20]", - "System.Globalization": "[4.0.10]", - "System.Globalization.Calendars": "[4.0.0]", - "System.IO": "[4.0.10]", - "System.ObjectModel": "[4.0.10]", - "System.Private.Uri": "[4.0.0]", - "System.Reflection": "[4.0.10]", - "System.Reflection.Extensions": "[4.0.0]", - "System.Reflection.Primitives": "[4.0.0]", - "System.Resources.ResourceManager": "[4.0.0]", - "System.Runtime": "[4.0.20]", - "System.Runtime.Extensions": "[4.0.10]", - "System.Runtime.Handles": "[4.0.0]", - "System.Runtime.InteropServices": "[4.0.20]", - "System.Text.Encoding": "[4.0.10]", - "System.Text.Encoding.Extensions": "[4.0.10]", - "System.Threading": "[4.0.10]", - "System.Threading.Tasks": "[4.0.10]", - "System.Threading.Timer": "[4.0.0]" - } - }, - "Microsoft.NETCore.Targets/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.0", - "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "5.0.0" - } - }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": { - "type": "package" - }, - "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore": "5.0.0", - "Microsoft.NETCore.Portable.Compatibility": "1.0.0", - "Microsoft.NETCore.Runtime": "1.0.0", - "Microsoft.Win32.Primitives": "4.0.0", - "System.ComponentModel.EventBasedAsync": "4.0.10", - "System.Data.Common": "4.0.0", - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.StackTrace": "4.0.0", - "System.IO.IsolatedStorage": "4.0.0", - "System.Net.Http.Rtc": "4.0.0", - "System.Net.Requests": "4.0.10", - "System.Net.Sockets": "4.0.0", - "System.Net.WebHeaderCollection": "4.0.0", - "System.Numerics.Vectors.WindowsRuntime": "4.0.0", - "System.Reflection.Context": "4.0.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", - "System.Runtime.Serialization.Json": "4.0.0", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Runtime.Serialization.Xml": "4.0.10", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.0", - "System.ServiceModel.Duplex": "4.0.0", - "System.ServiceModel.Http": "4.0.10", - "System.ServiceModel.NetTcp": "4.0.0", - "System.ServiceModel.Primitives": "4.0.0", - "System.ServiceModel.Security": "4.0.0", - "System.Text.Encoding.CodePages": "4.0.0", - "System.Xml.XmlSerializer": "4.0.10" - } - }, - "Microsoft.VisualBasic/10.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Dynamic.Runtime": "4.0.10", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "System.AppContext/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Collections.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.0", - "System.Globalization": "4.0.10", - "System.Globalization.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.ComponentModel": "4.0.0", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.10": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.Data.Common/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Globalization": "4.0.10", - "System.IO": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Data.Common.dll": {} - }, - "runtime": { - "lib/dotnet/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.ObjectModel": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.IO.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.IO.dll": {} - } - }, - "System.IO.Compression/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.IO": "4.0.0", - "System.IO.Compression.clrcompression-x64": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.clrcompression-x64/4.0.0": { - "type": "package", - "native": { - "runtimes/win10-x64/native/ClrCompression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.0", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Linq.Expressions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Net.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.Http.Rtc/4.0.0": { - "type": "package", - "dependencies": { - "System.Net.Http": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.Rtc.dll": {} - } - }, - "System.Net.NetworkInformation/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.Networking": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "System.Net.Requests/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.IO": "4.0.10", - "System.Net.Http": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Net.WebHeaderCollection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Net.Requests.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.Requests.dll": {} - } - }, - "System.Net.Sockets/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.Networking": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.Sockets.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.0", - "System.Collections.Specialized": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.0": { - "type": "package", - "dependencies": { - "System.Numerics.Vectors": "4.1.0", - "System.Runtime": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlSerializer": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Private.Networking/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.0", - "System.Collections": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Networking.dll": {} - } - }, - "System.Private.ServiceModel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Collections.Specialized": "4.0.0", - "System.ComponentModel.EventBasedAsync": "4.0.10", - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Linq.Queryable": "4.0.0", - "System.Net.Http": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Net.WebHeaderCollection": "4.0.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.DispatchProxy": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Runtime.Serialization.Xml": "4.0.10", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Security.Claims": "4.0.0", - "System.Security.Principal": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10", - "System.Threading.Timer": "4.0.0", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlDocument": "4.0.0", - "System.Xml.XmlSerializer": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.ServiceModel.dll": {} - } - }, - "System.Private.Uri/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll": {} - } - }, - "System.Reflection/4.0.10": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {} - } - }, - "System.Reflection.Context/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Extensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/1.0.22": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Immutable": "1.1.37", - "System.Diagnostics.Debug": "4.0.0", - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Text.Encoding.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.10", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.20": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.20": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.DataContractSerialization": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.0.10": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.DataContractSerialization": "4.0.0", - "System.Runtime.Serialization.Primitives": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.0.10": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.0", - "System.IO": "4.0.10", - "System.ObjectModel": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.WindowsRuntime": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - } - }, - "System.Security.Claims/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Security.Principal": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.CodePages/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.Encoding.CodePages.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Concurrent": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Diagnostics.Tracing": "4.0.0", - "System.Dynamic.Runtime": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.Concurrent": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Emit": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlDocument": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {} - } - }, - "Win2D.uwp/1.3.0": { - "type": "package", - "compile": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {}, - "lib/uap10.0/Workaround1200257.dll": {} - }, - "runtime": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {}, - "lib/uap10.0/Workaround1200257.dll": {} - }, - "native": { - "runtimes/win10-x64/native/Microsoft.Graphics.Canvas.dll": {} - } - }, - "MaterialDesignThemes.Uwp/1.0.0": { - "type": "project", - "framework": "UAP,Version=v10.0", - "dependencies": { - "Microsoft.NETCore.UniversalWindowsPlatform": "5.0.0", - "Win2D.uwp": "1.3.0" - } - } - }, - "UAP,Version=v10.0/win10-x86": { - "Microsoft.ApplicationInsights/1.0.0": { - "type": "package", - "compile": { - "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {} - }, - "runtime": { - "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {} - } - }, - "Microsoft.ApplicationInsights.PersistenceChannel/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.ApplicationInsights": "1.0.0" - }, - "compile": { - "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {} - }, - "runtime": { - "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {} - } - }, - "Microsoft.ApplicationInsights.WindowsApps/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.ApplicationInsights": "1.0.0", - "Microsoft.ApplicationInsights.PersistenceChannel": "1.0.0" - }, - "compile": { - "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {} - }, - "runtime": { - "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {} - } - }, - "Microsoft.CSharp/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Dynamic.Runtime": "4.0.0", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.0.0", - "Microsoft.NETCore.Targets": "1.0.0", - "Microsoft.VisualBasic": "10.0.0", - "System.AppContext": "4.0.0", - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Collections.Immutable": "1.1.37", - "System.ComponentModel": "4.0.0", - "System.ComponentModel.Annotations": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tools": "4.0.0", - "System.Diagnostics.Tracing": "4.0.20", - "System.Dynamic.Runtime": "4.0.10", - "System.Globalization": "4.0.10", - "System.Globalization.Calendars": "4.0.0", - "System.Globalization.Extensions": "4.0.0", - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.IO.Compression.ZipFile": "4.0.0", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.IO.UnmanagedMemoryStream": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Linq.Parallel": "4.0.0", - "System.Linq.Queryable": "4.0.0", - "System.Net.Http": "4.0.0", - "System.Net.NetworkInformation": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Numerics.Vectors": "4.1.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.DispatchProxy": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Metadata": "1.0.22", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Numerics": "4.0.0", - "System.Security.Claims": "4.0.0", - "System.Security.Principal": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10", - "System.Threading.Tasks.Dataflow": "4.5.25", - "System.Threading.Tasks.Parallel": "4.0.0", - "System.Threading.Timer": "4.0.0", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XDocument": "4.0.10" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": { - "type": "package" - }, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime": "1.0.0" - }, - "compile": { - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/mscorlib.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "lib/netcore50/System.Core.dll": {}, - "lib/netcore50/System.Net.dll": {}, - "lib/netcore50/System.Numerics.dll": {}, - "lib/netcore50/System.Runtime.Serialization.dll": {}, - "lib/netcore50/System.ServiceModel.Web.dll": {}, - "lib/netcore50/System.ServiceModel.dll": {}, - "lib/netcore50/System.Windows.dll": {}, - "lib/netcore50/System.Xml.Linq.dll": {}, - "lib/netcore50/System.Xml.Serialization.dll": {}, - "lib/netcore50/System.Xml.dll": {}, - "lib/netcore50/System.dll": {} - } - }, - "Microsoft.NETCore.Runtime/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime.CoreCLR-x86": "1.0.0", - "Microsoft.NETCore.Windows.ApiSets-x86": "1.0.0" - } - }, - "Microsoft.NETCore.Runtime.CoreCLR-x86/1.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "[4.0.10]", - "System.Diagnostics.Contracts": "[4.0.0]", - "System.Diagnostics.Debug": "[4.0.10]", - "System.Diagnostics.StackTrace": "[4.0.0]", - "System.Diagnostics.Tools": "[4.0.0]", - "System.Diagnostics.Tracing": "[4.0.20]", - "System.Globalization": "[4.0.10]", - "System.Globalization.Calendars": "[4.0.0]", - "System.IO": "[4.0.10]", - "System.ObjectModel": "[4.0.10]", - "System.Private.Uri": "[4.0.0]", - "System.Reflection": "[4.0.10]", - "System.Reflection.Extensions": "[4.0.0]", - "System.Reflection.Primitives": "[4.0.0]", - "System.Resources.ResourceManager": "[4.0.0]", - "System.Runtime": "[4.0.20]", - "System.Runtime.Extensions": "[4.0.10]", - "System.Runtime.Handles": "[4.0.0]", - "System.Runtime.InteropServices": "[4.0.20]", - "System.Text.Encoding": "[4.0.10]", - "System.Text.Encoding.Extensions": "[4.0.10]", - "System.Threading": "[4.0.10]", - "System.Threading.Tasks": "[4.0.10]", - "System.Threading.Timer": "[4.0.0]" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7-x86/lib/dotnet/mscorlib.ni.dll": {} - }, - "native": { - "runtimes/win7-x86/native/clretwrc.dll": {}, - "runtimes/win7-x86/native/coreclr.dll": {}, - "runtimes/win7-x86/native/dbgshim.dll": {}, - "runtimes/win7-x86/native/mscordaccore.dll": {}, - "runtimes/win7-x86/native/mscordbi.dll": {}, - "runtimes/win7-x86/native/mscorrc.debug.dll": {}, - "runtimes/win7-x86/native/mscorrc.dll": {} - } - }, - "Microsoft.NETCore.Targets/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.0", - "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "5.0.0" - } - }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": { - "type": "package" - }, - "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore": "5.0.0", - "Microsoft.NETCore.Portable.Compatibility": "1.0.0", - "Microsoft.NETCore.Runtime": "1.0.0", - "Microsoft.Win32.Primitives": "4.0.0", - "System.ComponentModel.EventBasedAsync": "4.0.10", - "System.Data.Common": "4.0.0", - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.StackTrace": "4.0.0", - "System.IO.IsolatedStorage": "4.0.0", - "System.Net.Http.Rtc": "4.0.0", - "System.Net.Requests": "4.0.10", - "System.Net.Sockets": "4.0.0", - "System.Net.WebHeaderCollection": "4.0.0", - "System.Numerics.Vectors.WindowsRuntime": "4.0.0", - "System.Reflection.Context": "4.0.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", - "System.Runtime.Serialization.Json": "4.0.0", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Runtime.Serialization.Xml": "4.0.10", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.0", - "System.ServiceModel.Duplex": "4.0.0", - "System.ServiceModel.Http": "4.0.10", - "System.ServiceModel.NetTcp": "4.0.0", - "System.ServiceModel.Primitives": "4.0.0", - "System.ServiceModel.Security": "4.0.0", - "System.Text.Encoding.CodePages": "4.0.0", - "System.Xml.XmlSerializer": "4.0.10" - } - }, - "Microsoft.NETCore.Windows.ApiSets-x86/1.0.0": { - "type": "package", - "native": { - "runtimes/win10-x86/native/_._": {} - } - }, - "Microsoft.VisualBasic/10.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Dynamic.Runtime": "4.0.10", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "System.AppContext/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Collections.dll": {} - }, - "runtime": { - "lib/netcore50/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.0", - "System.Globalization": "4.0.10", - "System.Globalization.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.ComponentModel": "4.0.0", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.10": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.Data.Common/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Globalization": "4.0.10", - "System.IO": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Data.Common.dll": {} - }, - "runtime": { - "lib/dotnet/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.ObjectModel": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Emit.Lightweight": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.dll": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.IO.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.dll": {} - } - }, - "System.IO.Compression/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.IO": "4.0.0", - "System.IO.Compression.clrcompression-x86": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.clrcompression-x86/4.0.0": { - "type": "package", - "native": { - "runtimes/win10-x86/native/ClrCompression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.0", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Emit.Lightweight": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Net.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.Http.Rtc/4.0.0": { - "type": "package", - "dependencies": { - "System.Net.Http": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.Rtc.dll": {} - } - }, - "System.Net.NetworkInformation/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.Networking": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "System.Net.Requests/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.IO": "4.0.10", - "System.Net.Http": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Net.WebHeaderCollection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Net.Requests.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.Requests.dll": {} - } - }, - "System.Net.Sockets/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.Networking": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.Sockets.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.0", - "System.Collections.Specialized": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.0": { - "type": "package", - "dependencies": { - "System.Numerics.Vectors": "4.1.0", - "System.Runtime": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Emit.Lightweight": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlSerializer": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Private.Networking/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.0", - "System.Collections": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Networking.dll": {} - } - }, - "System.Private.ServiceModel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Collections.Specialized": "4.0.0", - "System.ComponentModel.EventBasedAsync": "4.0.10", - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Linq.Queryable": "4.0.0", - "System.Net.Http": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Net.WebHeaderCollection": "4.0.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.DispatchProxy": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Runtime.Serialization.Xml": "4.0.10", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Security.Claims": "4.0.0", - "System.Security.Principal": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10", - "System.Threading.Timer": "4.0.0", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlDocument": "4.0.0", - "System.Xml.XmlSerializer": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.ServiceModel.dll": {} - } - }, - "System.Private.Uri/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Uri.dll": {} - } - }, - "System.Reflection/4.0.10": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.dll": {} - } - }, - "System.Reflection.Context/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Emit": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/1.0.22": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Immutable": "1.1.37", - "System.Diagnostics.Debug": "4.0.0", - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Text.Encoding.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.10", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.20": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.20": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.DataContractSerialization": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.0.10": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.DataContractSerialization": "4.0.0", - "System.Runtime.Serialization.Primitives": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.0.10": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.0", - "System.IO": "4.0.10", - "System.ObjectModel": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.WindowsRuntime": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - } - }, - "System.Security.Claims/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Security.Principal": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.CodePages/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.Encoding.CodePages.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Concurrent": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Diagnostics.Tracing": "4.0.0", - "System.Dynamic.Runtime": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.Concurrent": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Emit": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlDocument": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XmlSerializer.dll": {} - } - }, - "Win2D.uwp/1.3.0": { - "type": "package", - "compile": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {}, - "lib/uap10.0/Workaround1200257.dll": {} - }, - "runtime": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {}, - "lib/uap10.0/Workaround1200257.dll": {} - }, - "native": { - "runtimes/win10-x86/native/Microsoft.Graphics.Canvas.dll": {} - } - }, - "MaterialDesignThemes.Uwp/1.0.0": { - "type": "project", - "framework": "UAP,Version=v10.0", - "dependencies": { - "Microsoft.NETCore.UniversalWindowsPlatform": "5.0.0", - "Win2D.uwp": "1.3.0" - } - } - }, - "UAP,Version=v10.0/win10-x86-aot": { - "Microsoft.ApplicationInsights/1.0.0": { - "type": "package", - "compile": { - "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {} - }, - "runtime": { - "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {} - } - }, - "Microsoft.ApplicationInsights.PersistenceChannel/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.ApplicationInsights": "1.0.0" - }, - "compile": { - "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {} - }, - "runtime": { - "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {} - } - }, - "Microsoft.ApplicationInsights.WindowsApps/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.ApplicationInsights": "1.0.0", - "Microsoft.ApplicationInsights.PersistenceChannel": "1.0.0" - }, - "compile": { - "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {} - }, - "runtime": { - "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {} - } - }, - "Microsoft.CSharp/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Dynamic.Runtime": "4.0.0", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.0.0", - "Microsoft.NETCore.Targets": "1.0.0", - "Microsoft.VisualBasic": "10.0.0", - "System.AppContext": "4.0.0", - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Collections.Immutable": "1.1.37", - "System.ComponentModel": "4.0.0", - "System.ComponentModel.Annotations": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tools": "4.0.0", - "System.Diagnostics.Tracing": "4.0.20", - "System.Dynamic.Runtime": "4.0.10", - "System.Globalization": "4.0.10", - "System.Globalization.Calendars": "4.0.0", - "System.Globalization.Extensions": "4.0.0", - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.IO.Compression.ZipFile": "4.0.0", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.IO.UnmanagedMemoryStream": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Linq.Parallel": "4.0.0", - "System.Linq.Queryable": "4.0.0", - "System.Net.Http": "4.0.0", - "System.Net.NetworkInformation": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Numerics.Vectors": "4.1.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.DispatchProxy": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Metadata": "1.0.22", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Numerics": "4.0.0", - "System.Security.Claims": "4.0.0", - "System.Security.Principal": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10", - "System.Threading.Tasks.Dataflow": "4.5.25", - "System.Threading.Tasks.Parallel": "4.0.0", - "System.Threading.Timer": "4.0.0", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XDocument": "4.0.10" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": { - "type": "package" - }, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime": "1.0.0" - }, - "compile": { - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/mscorlib.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "runtimes/aot/lib/netcore50/System.Core.dll": {}, - "runtimes/aot/lib/netcore50/System.Net.dll": {}, - "runtimes/aot/lib/netcore50/System.Numerics.dll": {}, - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {}, - "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {}, - "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {}, - "runtimes/aot/lib/netcore50/System.Windows.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.dll": {}, - "runtimes/aot/lib/netcore50/System.dll": {}, - "runtimes/aot/lib/netcore50/mscorlib.dll": {} - } - }, - "Microsoft.NETCore.Runtime/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime.Native": "1.0.0" - } - }, - "Microsoft.NETCore.Runtime.Native/1.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "[4.0.10]", - "System.Diagnostics.Contracts": "[4.0.0]", - "System.Diagnostics.Debug": "[4.0.10]", - "System.Diagnostics.StackTrace": "[4.0.0]", - "System.Diagnostics.Tools": "[4.0.0]", - "System.Diagnostics.Tracing": "[4.0.20]", - "System.Globalization": "[4.0.10]", - "System.Globalization.Calendars": "[4.0.0]", - "System.IO": "[4.0.10]", - "System.ObjectModel": "[4.0.10]", - "System.Private.Uri": "[4.0.0]", - "System.Reflection": "[4.0.10]", - "System.Reflection.Extensions": "[4.0.0]", - "System.Reflection.Primitives": "[4.0.0]", - "System.Resources.ResourceManager": "[4.0.0]", - "System.Runtime": "[4.0.20]", - "System.Runtime.Extensions": "[4.0.10]", - "System.Runtime.Handles": "[4.0.0]", - "System.Runtime.InteropServices": "[4.0.20]", - "System.Text.Encoding": "[4.0.10]", - "System.Text.Encoding.Extensions": "[4.0.10]", - "System.Threading": "[4.0.10]", - "System.Threading.Tasks": "[4.0.10]", - "System.Threading.Timer": "[4.0.0]" - } - }, - "Microsoft.NETCore.Targets/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.0", - "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "5.0.0" - } - }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": { - "type": "package" - }, - "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore": "5.0.0", - "Microsoft.NETCore.Portable.Compatibility": "1.0.0", - "Microsoft.NETCore.Runtime": "1.0.0", - "Microsoft.Win32.Primitives": "4.0.0", - "System.ComponentModel.EventBasedAsync": "4.0.10", - "System.Data.Common": "4.0.0", - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.StackTrace": "4.0.0", - "System.IO.IsolatedStorage": "4.0.0", - "System.Net.Http.Rtc": "4.0.0", - "System.Net.Requests": "4.0.10", - "System.Net.Sockets": "4.0.0", - "System.Net.WebHeaderCollection": "4.0.0", - "System.Numerics.Vectors.WindowsRuntime": "4.0.0", - "System.Reflection.Context": "4.0.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", - "System.Runtime.Serialization.Json": "4.0.0", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Runtime.Serialization.Xml": "4.0.10", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.0", - "System.ServiceModel.Duplex": "4.0.0", - "System.ServiceModel.Http": "4.0.10", - "System.ServiceModel.NetTcp": "4.0.0", - "System.ServiceModel.Primitives": "4.0.0", - "System.ServiceModel.Security": "4.0.0", - "System.Text.Encoding.CodePages": "4.0.0", - "System.Xml.XmlSerializer": "4.0.10" - } - }, - "Microsoft.VisualBasic/10.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Dynamic.Runtime": "4.0.10", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "System.AppContext/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Collections.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.0", - "System.Globalization": "4.0.10", - "System.Globalization.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.ComponentModel": "4.0.0", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.10": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.Data.Common/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Globalization": "4.0.10", - "System.IO": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Data.Common.dll": {} - }, - "runtime": { - "lib/dotnet/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.ObjectModel": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.IO.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.IO.dll": {} - } - }, - "System.IO.Compression/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.IO": "4.0.0", - "System.IO.Compression.clrcompression-x86": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.clrcompression-x86/4.0.0": { - "type": "package", - "native": { - "runtimes/win10-x86/native/ClrCompression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.0", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Linq.Expressions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Net.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.Http.Rtc/4.0.0": { - "type": "package", - "dependencies": { - "System.Net.Http": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.Rtc.dll": {} - } - }, - "System.Net.NetworkInformation/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.Networking": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "System.Net.Requests/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.IO": "4.0.10", - "System.Net.Http": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Net.WebHeaderCollection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Net.Requests.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.Requests.dll": {} - } - }, - "System.Net.Sockets/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.Networking": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.Sockets.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.0", - "System.Collections.Specialized": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.0": { - "type": "package", - "dependencies": { - "System.Numerics.Vectors": "4.1.0", - "System.Runtime": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlSerializer": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Private.Networking/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.0", - "System.Collections": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Networking.dll": {} - } - }, - "System.Private.ServiceModel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Collections.Specialized": "4.0.0", - "System.ComponentModel.EventBasedAsync": "4.0.10", - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Linq.Queryable": "4.0.0", - "System.Net.Http": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Net.WebHeaderCollection": "4.0.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.DispatchProxy": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Runtime.Serialization.Xml": "4.0.10", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Security.Claims": "4.0.0", - "System.Security.Principal": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10", - "System.Threading.Timer": "4.0.0", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlDocument": "4.0.0", - "System.Xml.XmlSerializer": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.ServiceModel.dll": {} - } - }, - "System.Private.Uri/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll": {} - } - }, - "System.Reflection/4.0.10": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {} - } - }, - "System.Reflection.Context/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Extensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/1.0.22": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Immutable": "1.1.37", - "System.Diagnostics.Debug": "4.0.0", - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Text.Encoding.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.10", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.20": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.20": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.DataContractSerialization": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.0.10": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.DataContractSerialization": "4.0.0", - "System.Runtime.Serialization.Primitives": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.0.10": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.0", - "System.IO": "4.0.10", - "System.ObjectModel": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.WindowsRuntime": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - } - }, - "System.Security.Claims/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Security.Principal": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.CodePages/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.Encoding.CodePages.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Concurrent": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Diagnostics.Tracing": "4.0.0", - "System.Dynamic.Runtime": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.Concurrent": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Emit": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlDocument": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {} - } - }, - "Win2D.uwp/1.3.0": { - "type": "package", - "compile": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {}, - "lib/uap10.0/Workaround1200257.dll": {} - }, - "runtime": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {}, - "lib/uap10.0/Workaround1200257.dll": {} - }, - "native": { - "runtimes/win10-x86/native/Microsoft.Graphics.Canvas.dll": {} - } - }, - "MaterialDesignThemes.Uwp/1.0.0": { - "type": "project", - "framework": "UAP,Version=v10.0", - "dependencies": { - "Microsoft.NETCore.UniversalWindowsPlatform": "5.0.0", - "Win2D.uwp": "1.3.0" - } - } - } - }, - "libraries": { - "Microsoft.ApplicationInsights/1.0.0": { - "sha512": "HZ47/thX57SOuIivSvIbsR6L9CCb/Yt3IyB2i4KHmmNlf3DO+lqFwWIKDdbDNWKX+qh0Rg20/JSMPK0dwUsYYw==", - "type": "package", - "path": "microsoft.applicationinsights/1.0.0", - "files": [ - "Microsoft.ApplicationInsights.1.0.0.nupkg.sha512", - "Microsoft.ApplicationInsights.nuspec", - "lib/net40/Microsoft.ApplicationInsights.XML", - "lib/net40/Microsoft.ApplicationInsights.dll", - "lib/net45/Microsoft.ApplicationInsights.XML", - "lib/net45/Microsoft.ApplicationInsights.dll", - "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.XML", - "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll", - "lib/wp8/Microsoft.ApplicationInsights.XML", - "lib/wp8/Microsoft.ApplicationInsights.dll" - ] - }, - "Microsoft.ApplicationInsights.PersistenceChannel/1.0.0": { - "sha512": "0qQXC+CtbyF2RPuld5pF74fxsnP6ml0LUnzQ6GL9AXXY64LPsLDsPUAymoUffo7LZvPDppZboTYX59TfVxKA7A==", - "type": "package", - "path": "microsoft.applicationinsights.persistencechannel/1.0.0", - "files": [ - "Microsoft.ApplicationInsights.PersistenceChannel.1.0.0.nupkg.sha512", - "Microsoft.ApplicationInsights.PersistenceChannel.nuspec", - "lib/net40/Microsoft.ApplicationInsights.PersistenceChannel.XML", - "lib/net40/Microsoft.ApplicationInsights.PersistenceChannel.dll", - "lib/portable-win8+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.XML", - "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll", - "lib/wp8/Microsoft.ApplicationInsights.PersistenceChannel.XML", - "lib/wp8/Microsoft.ApplicationInsights.PersistenceChannel.dll" - ] - }, - "Microsoft.ApplicationInsights.WindowsApps/1.0.0": { - "sha512": "NvBQnFeiFd0O1QdBz06UGApD7zn7ztVi7qO18IsM3EjiXRNgfrEBXB+azNm8XqLY8xGFAqh3HAuSd/wHZMe0XA==", - "type": "package", - "path": "microsoft.applicationinsights.windowsapps/1.0.0", - "files": [ - "Microsoft.ApplicationInsights.WindowsApps.1.0.0.nupkg.sha512", - "Microsoft.ApplicationInsights.WindowsApps.nuspec", - "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.XML", - "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll", - "lib/wp8/Microsoft.ApplicationInsights.Extensibility.Windows.XML", - "lib/wp8/Microsoft.ApplicationInsights.Extensibility.Windows.dll", - "lib/wpa81/Microsoft.ApplicationInsights.Extensibility.Windows.XML", - "lib/wpa81/Microsoft.ApplicationInsights.Extensibility.Windows.dll" - ] - }, - "Microsoft.CSharp/4.0.0": { - "sha512": "oWqeKUxHXdK6dL2CFjgMcaBISbkk+AqEg+yvJHE4DElNzS4QaTsCflgkkqZwVlWby1Dg9zo9n+iCAMFefFdJ/A==", - "type": "package", - "path": "microsoft.csharp/4.0.0", - "files": [ - "Microsoft.CSharp.4.0.0.nupkg.sha512", - "Microsoft.CSharp.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/Microsoft.CSharp.dll", - "lib/net45/_._", - "lib/netcore50/Microsoft.CSharp.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/Microsoft.CSharp.dll", - "ref/dotnet/Microsoft.CSharp.xml", - "ref/dotnet/de/Microsoft.CSharp.xml", - "ref/dotnet/es/Microsoft.CSharp.xml", - "ref/dotnet/fr/Microsoft.CSharp.xml", - "ref/dotnet/it/Microsoft.CSharp.xml", - "ref/dotnet/ja/Microsoft.CSharp.xml", - "ref/dotnet/ko/Microsoft.CSharp.xml", - "ref/dotnet/ru/Microsoft.CSharp.xml", - "ref/dotnet/zh-hans/Microsoft.CSharp.xml", - "ref/dotnet/zh-hant/Microsoft.CSharp.xml", - "ref/net45/_._", - "ref/netcore50/Microsoft.CSharp.dll", - "ref/netcore50/Microsoft.CSharp.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "Microsoft.NETCore/5.0.0": { - "sha512": "QQMp0yYQbIdfkKhdEE6Umh2Xonau7tasG36Trw/YlHoWgYQLp7T9L+ZD8EPvdj5ubRhtOuKEKwM7HMpkagB9ZA==", - "type": "package", - "path": "microsoft.netcore/5.0.0", - "files": [ - "Microsoft.NETCore.5.0.0.nupkg.sha512", - "Microsoft.NETCore.nuspec", - "_._" - ] - }, - "Microsoft.NETCore.Platforms/1.0.0": { - "sha512": "0N77OwGZpXqUco2C/ynv1os7HqdFYifvNIbveLDKqL5PZaz05Rl9enCwVBjF61aumHKueLWIJ3prnmdAXxww4A==", - "type": "package", - "path": "microsoft.netcore.platforms/1.0.0", - "files": [ - "Microsoft.NETCore.Platforms.1.0.0.nupkg.sha512", - "Microsoft.NETCore.Platforms.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "sha512": "5/IFqf2zN1jzktRJitxO+5kQ+0AilcIbPvSojSJwDG3cGNSMZg44LXLB5E9RkSETE0Wh4QoALdNh1koKoF7/mA==", - "type": "package", - "path": "microsoft.netcore.portable.compatibility/1.0.0", - "files": [ - "Microsoft.NETCore.Portable.Compatibility.1.0.0.nupkg.sha512", - "Microsoft.NETCore.Portable.Compatibility.nuspec", - "lib/dnxcore50/System.ComponentModel.DataAnnotations.dll", - "lib/dnxcore50/System.Core.dll", - "lib/dnxcore50/System.Net.dll", - "lib/dnxcore50/System.Numerics.dll", - "lib/dnxcore50/System.Runtime.Serialization.dll", - "lib/dnxcore50/System.ServiceModel.Web.dll", - "lib/dnxcore50/System.ServiceModel.dll", - "lib/dnxcore50/System.Windows.dll", - "lib/dnxcore50/System.Xml.Linq.dll", - "lib/dnxcore50/System.Xml.Serialization.dll", - "lib/dnxcore50/System.Xml.dll", - "lib/dnxcore50/System.dll", - "lib/net45/_._", - "lib/netcore50/System.ComponentModel.DataAnnotations.dll", - "lib/netcore50/System.Core.dll", - "lib/netcore50/System.Net.dll", - "lib/netcore50/System.Numerics.dll", - "lib/netcore50/System.Runtime.Serialization.dll", - "lib/netcore50/System.ServiceModel.Web.dll", - "lib/netcore50/System.ServiceModel.dll", - "lib/netcore50/System.Windows.dll", - "lib/netcore50/System.Xml.Linq.dll", - "lib/netcore50/System.Xml.Serialization.dll", - "lib/netcore50/System.Xml.dll", - "lib/netcore50/System.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.ComponentModel.DataAnnotations.dll", - "ref/dotnet/System.Core.dll", - "ref/dotnet/System.Net.dll", - "ref/dotnet/System.Numerics.dll", - "ref/dotnet/System.Runtime.Serialization.dll", - "ref/dotnet/System.ServiceModel.Web.dll", - "ref/dotnet/System.ServiceModel.dll", - "ref/dotnet/System.Windows.dll", - "ref/dotnet/System.Xml.Linq.dll", - "ref/dotnet/System.Xml.Serialization.dll", - "ref/dotnet/System.Xml.dll", - "ref/dotnet/System.dll", - "ref/dotnet/mscorlib.dll", - "ref/net45/_._", - "ref/netcore50/System.ComponentModel.DataAnnotations.dll", - "ref/netcore50/System.Core.dll", - "ref/netcore50/System.Net.dll", - "ref/netcore50/System.Numerics.dll", - "ref/netcore50/System.Runtime.Serialization.dll", - "ref/netcore50/System.ServiceModel.Web.dll", - "ref/netcore50/System.ServiceModel.dll", - "ref/netcore50/System.Windows.dll", - "ref/netcore50/System.Xml.Linq.dll", - "ref/netcore50/System.Xml.Serialization.dll", - "ref/netcore50/System.Xml.dll", - "ref/netcore50/System.dll", - "ref/netcore50/mscorlib.dll", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll", - "runtimes/aot/lib/netcore50/System.Core.dll", - "runtimes/aot/lib/netcore50/System.Net.dll", - "runtimes/aot/lib/netcore50/System.Numerics.dll", - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll", - "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll", - "runtimes/aot/lib/netcore50/System.ServiceModel.dll", - "runtimes/aot/lib/netcore50/System.Windows.dll", - "runtimes/aot/lib/netcore50/System.Xml.Linq.dll", - "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll", - "runtimes/aot/lib/netcore50/System.Xml.dll", - "runtimes/aot/lib/netcore50/System.dll", - "runtimes/aot/lib/netcore50/mscorlib.dll" - ] - }, - "Microsoft.NETCore.Runtime/1.0.0": { - "sha512": "AjaMNpXLW4miEQorIqyn6iQ+BZBId6qXkhwyeh1vl6kXLqosZusbwmLNlvj/xllSQrd3aImJbvlHusam85g+xQ==", - "type": "package", - "path": "microsoft.netcore.runtime/1.0.0", - "files": [ - "Microsoft.NETCore.Runtime.1.0.0.nupkg.sha512", - "Microsoft.NETCore.Runtime.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.Runtime.CoreCLR-arm/1.0.0": { - "sha512": "hoJfIl981eXwn9Tz8onO/J1xaYApIfp/YrhjSh9rRhml1U5Wj80LBgyp/6n+KI3VlvcAraThhnHnCTp+M3Uh+w==", - "type": "package", - "path": "microsoft.netcore.runtime.coreclr-arm/1.0.0", - "files": [ - "Microsoft.NETCore.Runtime.CoreCLR-arm.1.0.0.nupkg.sha512", - "Microsoft.NETCore.Runtime.CoreCLR-arm.nuspec", - "ref/dotnet/_._", - "runtimes/win8-arm/lib/dotnet/mscorlib.ni.dll", - "runtimes/win8-arm/native/clretwrc.dll", - "runtimes/win8-arm/native/coreclr.dll", - "runtimes/win8-arm/native/dbgshim.dll", - "runtimes/win8-arm/native/mscordaccore.dll", - "runtimes/win8-arm/native/mscordbi.dll", - "runtimes/win8-arm/native/mscorrc.debug.dll", - "runtimes/win8-arm/native/mscorrc.dll" - ] - }, - "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0": { - "sha512": "DaY5Z13xCZpnVIGluC5sCo4/0wy1rl6mptBH7v3RYi3guAmG88aSeFoQzyZepo0H0jEixUxNFM0+MB6Jc+j0bw==", - "type": "package", - "path": "microsoft.netcore.runtime.coreclr-x64/1.0.0", - "files": [ - "Microsoft.NETCore.Runtime.CoreCLR-x64.1.0.0.nupkg.sha512", - "Microsoft.NETCore.Runtime.CoreCLR-x64.nuspec", - "ref/dotnet/_._", - "runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll", - "runtimes/win7-x64/native/clretwrc.dll", - "runtimes/win7-x64/native/coreclr.dll", - "runtimes/win7-x64/native/dbgshim.dll", - "runtimes/win7-x64/native/mscordaccore.dll", - "runtimes/win7-x64/native/mscordbi.dll", - "runtimes/win7-x64/native/mscorrc.debug.dll", - "runtimes/win7-x64/native/mscorrc.dll" - ] - }, - "Microsoft.NETCore.Runtime.CoreCLR-x86/1.0.0": { - "sha512": "2LDffu5Is/X01GVPVuye4Wmz9/SyGDNq1Opgl5bXG3206cwNiCwsQgILOtfSWVp5mn4w401+8cjhBy3THW8HQQ==", - "type": "package", - "path": "microsoft.netcore.runtime.coreclr-x86/1.0.0", - "files": [ - "Microsoft.NETCore.Runtime.CoreCLR-x86.1.0.0.nupkg.sha512", - "Microsoft.NETCore.Runtime.CoreCLR-x86.nuspec", - "ref/dotnet/_._", - "runtimes/win7-x86/lib/dotnet/mscorlib.ni.dll", - "runtimes/win7-x86/native/clretwrc.dll", - "runtimes/win7-x86/native/coreclr.dll", - "runtimes/win7-x86/native/dbgshim.dll", - "runtimes/win7-x86/native/mscordaccore.dll", - "runtimes/win7-x86/native/mscordbi.dll", - "runtimes/win7-x86/native/mscorrc.debug.dll", - "runtimes/win7-x86/native/mscorrc.dll" - ] - }, - "Microsoft.NETCore.Runtime.Native/1.0.0": { - "sha512": "tMsWWrH1AJCguiM22zK/vr6COxqz62Q1F02B07IXAUN405R3HGk5SkD/DL0Hte+OTjNtW9LkKXpOggGBRwYFNg==", - "type": "package", - "path": "microsoft.netcore.runtime.native/1.0.0", - "files": [ - "Microsoft.NETCore.Runtime.Native.1.0.0.nupkg.sha512", - "Microsoft.NETCore.Runtime.Native.nuspec", - "_._" - ] - }, - "Microsoft.NETCore.Targets/1.0.0": { - "sha512": "XfITpPjYLYRmAeZtb9diw6P7ylLQsSC1U2a/xj10iQpnHxkiLEBXop/psw15qMPuNca7lqgxWvzZGpQxphuXaw==", - "type": "package", - "path": "microsoft.netcore.targets/1.0.0", - "files": [ - "Microsoft.NETCore.Targets.1.0.0.nupkg.sha512", - "Microsoft.NETCore.Targets.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": { - "sha512": "jszcJ6okLlhqF4OQbhSbixLOuLUyVT3BP7Y7/i7fcDMwnHBd1Pmdz6M1Al9SMDKVLA2oSaItg4tq6C0ydv8lYQ==", - "type": "package", - "path": "microsoft.netcore.targets.universalwindowsplatform/5.0.0", - "files": [ - "Microsoft.NETCore.Targets.UniversalWindowsPlatform.5.0.0.nupkg.sha512", - "Microsoft.NETCore.Targets.UniversalWindowsPlatform.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": { - "sha512": "D0nsAm+yTk0oSSC7E6PcmuuEewBAQbGgIXNcCnRqQ4qLPdQLMjMHg8cilGs3xZgwTRQmMtEn45TAatrU1otWPQ==", - "type": "package", - "path": "microsoft.netcore.universalwindowsplatform/5.0.0", - "files": [ - "Microsoft.NETCore.UniversalWindowsPlatform.5.0.0.nupkg.sha512", - "Microsoft.NETCore.UniversalWindowsPlatform.nuspec", - "_._" - ] - }, - "Microsoft.NETCore.Windows.ApiSets-x64/1.0.0": { - "sha512": "NC+dpFMdhujz2sWAdJ8EmBk07p1zOlNi0FCCnZEbzftABpw9xZ99EMP/bUJrPTgCxHfzJAiuLPOtAauzVINk0w==", - "type": "package", - "path": "microsoft.netcore.windows.apisets-x64/1.0.0", - "files": [ - "Microsoft.NETCore.Windows.ApiSets-x64.1.0.0.nupkg.sha512", - "Microsoft.NETCore.Windows.ApiSets-x64.nuspec", - "runtimes/win10-x64/native/_._", - "runtimes/win7-x64/native/API-MS-Win-Base-Util-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll", - "runtimes/win7-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll", - "runtimes/win7-x64/native/API-MS-Win-Core-PrivateProfile-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Core-String-L2-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Core-StringAnsi-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-EventLog-Legacy-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Eventing-Consumer-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Eventing-Controller-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Eventing-Legacy-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Eventing-Provider-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Security-LsaPolicy-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-devices-config-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-devices-config-L1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-com-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-com-private-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-comm-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-console-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-console-l2-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-datetime-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-datetime-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-debug-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-debug-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-delayload-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-errorhandling-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-errorhandling-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-fibers-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-fibers-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-file-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-file-l1-2-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-file-l1-2-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-file-l2-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-file-l2-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-handle-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-heap-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-heap-obsolete-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-interlocked-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-io-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-io-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-kernel32-legacy-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll", - "runtimes/win7-x64/native/api-ms-win-core-libraryloader-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-libraryloader-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-localization-l1-2-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-localization-l1-2-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-localization-l2-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-localization-obsolete-l1-2-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-2.dll", - "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-3.dll", - "runtimes/win7-x64/native/api-ms-win-core-namedpipe-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-namedpipe-l1-2-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-normalization-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-privateprofile-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-processenvironment-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-processenvironment-l1-2-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-processsecurity-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-processthreads-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-processthreads-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-processthreads-l1-1-2.dll", - "runtimes/win7-x64/native/api-ms-win-core-profile-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-psapi-ansi-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-psapi-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-psapi-obsolete-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-realtime-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-registry-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-registry-l2-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-rtlsupport-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-shlwapi-legacy-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-shutdown-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-shutdown-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-string-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-string-obsolete-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-string-obsolete-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-stringloader-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-stringloader-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-synch-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-synch-l1-2-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-2.dll", - "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-3.dll", - "runtimes/win7-x64/native/api-ms-win-core-threadpool-l1-2-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-threadpool-legacy-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-threadpool-private-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-timezone-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-url-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-util-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-version-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-winrt-error-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-winrt-error-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-winrt-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-winrt-registration-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-winrt-robuffer-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-winrt-string-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-wow64-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-xstate-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-xstate-l2-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-ro-typeresolution-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-security-base-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-security-cpwl-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-security-cryptoapi-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-security-lsalookup-l2-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-security-lsalookup-l2-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-security-provider-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-security-sddl-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-service-core-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-service-core-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-service-management-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-service-management-l2-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-service-private-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-service-private-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-service-winsvc-l1-1-0.dll", - "runtimes/win7-x64/native/ext-ms-win-advapi32-encryptedfile-l1-1-0.dll", - "runtimes/win8-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll", - "runtimes/win8-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll", - "runtimes/win8-x64/native/API-MS-Win-devices-config-L1-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-file-l1-2-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-file-l2-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll", - "runtimes/win8-x64/native/api-ms-win-core-localization-l1-2-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-localization-obsolete-l1-2-0.dll", - "runtimes/win8-x64/native/api-ms-win-core-memory-l1-1-2.dll", - "runtimes/win8-x64/native/api-ms-win-core-memory-l1-1-3.dll", - "runtimes/win8-x64/native/api-ms-win-core-namedpipe-l1-2-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-privateprofile-l1-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-processthreads-l1-1-2.dll", - "runtimes/win8-x64/native/api-ms-win-core-shutdown-l1-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-string-obsolete-l1-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-stringloader-l1-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-sysinfo-l1-2-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-sysinfo-l1-2-2.dll", - "runtimes/win8-x64/native/api-ms-win-core-sysinfo-l1-2-3.dll", - "runtimes/win8-x64/native/api-ms-win-core-winrt-error-l1-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-xstate-l2-1-0.dll", - "runtimes/win8-x64/native/api-ms-win-security-cpwl-l1-1-0.dll", - "runtimes/win8-x64/native/api-ms-win-security-cryptoapi-l1-1-0.dll", - "runtimes/win8-x64/native/api-ms-win-security-lsalookup-l2-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-service-private-l1-1-1.dll", - "runtimes/win81-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll", - "runtimes/win81-x64/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll", - "runtimes/win81-x64/native/api-ms-win-core-memory-l1-1-3.dll", - "runtimes/win81-x64/native/api-ms-win-core-namedpipe-l1-2-1.dll", - "runtimes/win81-x64/native/api-ms-win-core-string-obsolete-l1-1-1.dll", - "runtimes/win81-x64/native/api-ms-win-core-sysinfo-l1-2-2.dll", - "runtimes/win81-x64/native/api-ms-win-core-sysinfo-l1-2-3.dll", - "runtimes/win81-x64/native/api-ms-win-security-cpwl-l1-1-0.dll" - ] - }, - "Microsoft.NETCore.Windows.ApiSets-x86/1.0.0": { - "sha512": "/HDRdhz5bZyhHwQ/uk/IbnDIX5VDTsHntEZYkTYo57dM+U3Ttel9/OJv0mjL64wTO/QKUJJNKp9XO+m7nSVjJQ==", - "type": "package", - "path": "microsoft.netcore.windows.apisets-x86/1.0.0", - "files": [ - "Microsoft.NETCore.Windows.ApiSets-x86.1.0.0.nupkg.sha512", - "Microsoft.NETCore.Windows.ApiSets-x86.nuspec", - "runtimes/win10-x86/native/_._", - "runtimes/win7-x86/native/API-MS-Win-Base-Util-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll", - "runtimes/win7-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll", - "runtimes/win7-x86/native/API-MS-Win-Core-PrivateProfile-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Core-String-L2-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Core-StringAnsi-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-EventLog-Legacy-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Eventing-Consumer-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Eventing-Controller-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Eventing-Legacy-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Eventing-Provider-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Security-LsaPolicy-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-devices-config-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-devices-config-L1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-com-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-com-private-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-comm-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-console-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-console-l2-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-datetime-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-datetime-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-debug-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-debug-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-delayload-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-errorhandling-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-errorhandling-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-fibers-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-fibers-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-file-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-file-l1-2-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-file-l1-2-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-file-l2-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-file-l2-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-handle-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-heap-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-heap-obsolete-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-interlocked-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-io-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-io-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-kernel32-legacy-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll", - "runtimes/win7-x86/native/api-ms-win-core-libraryloader-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-libraryloader-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-localization-l1-2-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-localization-l1-2-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-localization-l2-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-localization-obsolete-l1-2-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-2.dll", - "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-3.dll", - "runtimes/win7-x86/native/api-ms-win-core-namedpipe-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-namedpipe-l1-2-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-normalization-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-privateprofile-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-processenvironment-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-processenvironment-l1-2-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-processsecurity-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-processthreads-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-processthreads-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-processthreads-l1-1-2.dll", - "runtimes/win7-x86/native/api-ms-win-core-profile-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-psapi-ansi-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-psapi-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-psapi-obsolete-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-realtime-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-registry-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-registry-l2-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-rtlsupport-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-shlwapi-legacy-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-shutdown-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-shutdown-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-string-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-string-obsolete-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-string-obsolete-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-stringloader-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-stringloader-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-synch-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-synch-l1-2-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-2.dll", - "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-3.dll", - "runtimes/win7-x86/native/api-ms-win-core-threadpool-l1-2-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-threadpool-legacy-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-threadpool-private-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-timezone-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-url-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-util-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-version-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-winrt-error-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-winrt-error-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-winrt-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-winrt-registration-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-winrt-robuffer-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-winrt-string-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-wow64-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-xstate-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-xstate-l2-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-ro-typeresolution-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-security-base-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-security-cpwl-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-security-cryptoapi-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-security-lsalookup-l2-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-security-lsalookup-l2-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-security-provider-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-security-sddl-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-service-core-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-service-core-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-service-management-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-service-management-l2-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-service-private-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-service-private-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-service-winsvc-l1-1-0.dll", - "runtimes/win7-x86/native/ext-ms-win-advapi32-encryptedfile-l1-1-0.dll", - "runtimes/win8-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll", - "runtimes/win8-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll", - "runtimes/win8-x86/native/API-MS-Win-devices-config-L1-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-file-l1-2-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-file-l2-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll", - "runtimes/win8-x86/native/api-ms-win-core-localization-l1-2-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-localization-obsolete-l1-2-0.dll", - "runtimes/win8-x86/native/api-ms-win-core-memory-l1-1-2.dll", - "runtimes/win8-x86/native/api-ms-win-core-memory-l1-1-3.dll", - "runtimes/win8-x86/native/api-ms-win-core-namedpipe-l1-2-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-privateprofile-l1-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-processthreads-l1-1-2.dll", - "runtimes/win8-x86/native/api-ms-win-core-shutdown-l1-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-string-obsolete-l1-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-stringloader-l1-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-sysinfo-l1-2-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-sysinfo-l1-2-2.dll", - "runtimes/win8-x86/native/api-ms-win-core-sysinfo-l1-2-3.dll", - "runtimes/win8-x86/native/api-ms-win-core-winrt-error-l1-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-xstate-l2-1-0.dll", - "runtimes/win8-x86/native/api-ms-win-security-cpwl-l1-1-0.dll", - "runtimes/win8-x86/native/api-ms-win-security-cryptoapi-l1-1-0.dll", - "runtimes/win8-x86/native/api-ms-win-security-lsalookup-l2-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-service-private-l1-1-1.dll", - "runtimes/win81-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll", - "runtimes/win81-x86/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll", - "runtimes/win81-x86/native/api-ms-win-core-memory-l1-1-3.dll", - "runtimes/win81-x86/native/api-ms-win-core-namedpipe-l1-2-1.dll", - "runtimes/win81-x86/native/api-ms-win-core-string-obsolete-l1-1-1.dll", - "runtimes/win81-x86/native/api-ms-win-core-sysinfo-l1-2-2.dll", - "runtimes/win81-x86/native/api-ms-win-core-sysinfo-l1-2-3.dll", - "runtimes/win81-x86/native/api-ms-win-security-cpwl-l1-1-0.dll" - ] - }, - "Microsoft.VisualBasic/10.0.0": { - "sha512": "5BEm2/HAVd97whRlCChU7rmSh/9cwGlZ/NTNe3Jl07zuPWfKQq5TUvVNUmdvmEe8QRecJLZ4/e7WF1i1O8V42g==", - "type": "package", - "path": "microsoft.visualbasic/10.0.0", - "files": [ - "Microsoft.VisualBasic.10.0.0.nupkg.sha512", - "Microsoft.VisualBasic.nuspec", - "lib/dotnet/Microsoft.VisualBasic.dll", - "lib/net45/_._", - "lib/netcore50/Microsoft.VisualBasic.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "ref/dotnet/Microsoft.VisualBasic.dll", - "ref/dotnet/Microsoft.VisualBasic.xml", - "ref/dotnet/de/Microsoft.VisualBasic.xml", - "ref/dotnet/es/Microsoft.VisualBasic.xml", - "ref/dotnet/fr/Microsoft.VisualBasic.xml", - "ref/dotnet/it/Microsoft.VisualBasic.xml", - "ref/dotnet/ja/Microsoft.VisualBasic.xml", - "ref/dotnet/ko/Microsoft.VisualBasic.xml", - "ref/dotnet/ru/Microsoft.VisualBasic.xml", - "ref/dotnet/zh-hans/Microsoft.VisualBasic.xml", - "ref/dotnet/zh-hant/Microsoft.VisualBasic.xml", - "ref/net45/_._", - "ref/netcore50/Microsoft.VisualBasic.dll", - "ref/netcore50/Microsoft.VisualBasic.xml", - "ref/win8/_._", - "ref/wpa81/_._" - ] - }, - "Microsoft.Win32.Primitives/4.0.0": { - "sha512": "CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==", - "type": "package", - "path": "microsoft.win32.primitives/4.0.0", - "files": [ - "Microsoft.Win32.Primitives.4.0.0.nupkg.sha512", - "Microsoft.Win32.Primitives.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/Microsoft.Win32.Primitives.dll", - "lib/net46/Microsoft.Win32.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/Microsoft.Win32.Primitives.dll", - "ref/dotnet/Microsoft.Win32.Primitives.xml", - "ref/dotnet/de/Microsoft.Win32.Primitives.xml", - "ref/dotnet/es/Microsoft.Win32.Primitives.xml", - "ref/dotnet/fr/Microsoft.Win32.Primitives.xml", - "ref/dotnet/it/Microsoft.Win32.Primitives.xml", - "ref/dotnet/ja/Microsoft.Win32.Primitives.xml", - "ref/dotnet/ko/Microsoft.Win32.Primitives.xml", - "ref/dotnet/ru/Microsoft.Win32.Primitives.xml", - "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml", - "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml", - "ref/net46/Microsoft.Win32.Primitives.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.AppContext/4.0.0": { - "sha512": "gUoYgAWDC3+xhKeU5KSLbYDhTdBYk9GssrMSCcWUADzOglW+s0AmwVhOUGt2tL5xUl7ZXoYTPdA88zCgKrlG0A==", - "type": "package", - "path": "system.appcontext/4.0.0", - "files": [ - "System.AppContext.4.0.0.nupkg.sha512", - "System.AppContext.nuspec", - "lib/DNXCore50/System.AppContext.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.AppContext.dll", - "lib/netcore50/System.AppContext.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.AppContext.dll", - "ref/dotnet/System.AppContext.xml", - "ref/dotnet/de/System.AppContext.xml", - "ref/dotnet/es/System.AppContext.xml", - "ref/dotnet/fr/System.AppContext.xml", - "ref/dotnet/it/System.AppContext.xml", - "ref/dotnet/ja/System.AppContext.xml", - "ref/dotnet/ko/System.AppContext.xml", - "ref/dotnet/ru/System.AppContext.xml", - "ref/dotnet/zh-hans/System.AppContext.xml", - "ref/dotnet/zh-hant/System.AppContext.xml", - "ref/net46/System.AppContext.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Collections/4.0.10": { - "sha512": "ux6ilcZZjV/Gp7JEZpe+2V1eTueq6NuoGRM3eZCFuPM25hLVVgCRuea6STW8hvqreIOE59irJk5/ovpA5xQipw==", - "type": "package", - "path": "system.collections/4.0.10", - "files": [ - "System.Collections.4.0.10.nupkg.sha512", - "System.Collections.nuspec", - "lib/DNXCore50/System.Collections.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Collections.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Collections.dll", - "ref/dotnet/System.Collections.xml", - "ref/dotnet/de/System.Collections.xml", - "ref/dotnet/es/System.Collections.xml", - "ref/dotnet/fr/System.Collections.xml", - "ref/dotnet/it/System.Collections.xml", - "ref/dotnet/ja/System.Collections.xml", - "ref/dotnet/ko/System.Collections.xml", - "ref/dotnet/ru/System.Collections.xml", - "ref/dotnet/zh-hans/System.Collections.xml", - "ref/dotnet/zh-hant/System.Collections.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Collections.dll" - ] - }, - "System.Collections.Concurrent/4.0.10": { - "sha512": "ZtMEqOPAjAIqR8fqom9AOKRaB94a+emO2O8uOP6vyJoNswSPrbiwN7iH53rrVpvjMVx0wr4/OMpI7486uGZjbw==", - "type": "package", - "path": "system.collections.concurrent/4.0.10", - "files": [ - "System.Collections.Concurrent.4.0.10.nupkg.sha512", - "System.Collections.Concurrent.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.Collections.Concurrent.dll", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Collections.Concurrent.dll", - "ref/dotnet/System.Collections.Concurrent.xml", - "ref/dotnet/de/System.Collections.Concurrent.xml", - "ref/dotnet/es/System.Collections.Concurrent.xml", - "ref/dotnet/fr/System.Collections.Concurrent.xml", - "ref/dotnet/it/System.Collections.Concurrent.xml", - "ref/dotnet/ja/System.Collections.Concurrent.xml", - "ref/dotnet/ko/System.Collections.Concurrent.xml", - "ref/dotnet/ru/System.Collections.Concurrent.xml", - "ref/dotnet/zh-hans/System.Collections.Concurrent.xml", - "ref/dotnet/zh-hant/System.Collections.Concurrent.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Collections.Immutable/1.1.37": { - "sha512": "fTpqwZYBzoklTT+XjTRK8KxvmrGkYHzBiylCcKyQcxiOM8k+QvhNBxRvFHDWzy4OEP5f8/9n+xQ9mEgEXY+muA==", - "type": "package", - "path": "system.collections.immutable/1.1.37", - "files": [ - "System.Collections.Immutable.1.1.37.nupkg.sha512", - "System.Collections.Immutable.nuspec", - "lib/dotnet/System.Collections.Immutable.dll", - "lib/dotnet/System.Collections.Immutable.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml" - ] - }, - "System.Collections.NonGeneric/4.0.0": { - "sha512": "rVgwrFBMkmp8LI6GhAYd6Bx+2uLIXjRfNg6Ie+ASfX8ESuh9e2HNxFy2yh1MPIXZq3OAYa+0mmULVwpnEC6UDA==", - "type": "package", - "path": "system.collections.nongeneric/4.0.0", - "files": [ - "System.Collections.NonGeneric.4.0.0.nupkg.sha512", - "System.Collections.NonGeneric.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.Collections.NonGeneric.dll", - "lib/net46/System.Collections.NonGeneric.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Collections.NonGeneric.dll", - "ref/dotnet/System.Collections.NonGeneric.xml", - "ref/dotnet/de/System.Collections.NonGeneric.xml", - "ref/dotnet/es/System.Collections.NonGeneric.xml", - "ref/dotnet/fr/System.Collections.NonGeneric.xml", - "ref/dotnet/it/System.Collections.NonGeneric.xml", - "ref/dotnet/ja/System.Collections.NonGeneric.xml", - "ref/dotnet/ko/System.Collections.NonGeneric.xml", - "ref/dotnet/ru/System.Collections.NonGeneric.xml", - "ref/dotnet/zh-hans/System.Collections.NonGeneric.xml", - "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml", - "ref/net46/System.Collections.NonGeneric.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Collections.Specialized/4.0.0": { - "sha512": "poJFwQCUOoXqvdoGxx+3p8Z63yawcYKPBSFP67Z2jICeOINvEIQZN7mVOAnC7gsVF0WU+A2wtVwfhagC7UCgAg==", - "type": "package", - "path": "system.collections.specialized/4.0.0", - "files": [ - "System.Collections.Specialized.4.0.0.nupkg.sha512", - "System.Collections.Specialized.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.Collections.Specialized.dll", - "lib/net46/System.Collections.Specialized.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Collections.Specialized.dll", - "ref/dotnet/System.Collections.Specialized.xml", - "ref/dotnet/de/System.Collections.Specialized.xml", - "ref/dotnet/es/System.Collections.Specialized.xml", - "ref/dotnet/fr/System.Collections.Specialized.xml", - "ref/dotnet/it/System.Collections.Specialized.xml", - "ref/dotnet/ja/System.Collections.Specialized.xml", - "ref/dotnet/ko/System.Collections.Specialized.xml", - "ref/dotnet/ru/System.Collections.Specialized.xml", - "ref/dotnet/zh-hans/System.Collections.Specialized.xml", - "ref/dotnet/zh-hant/System.Collections.Specialized.xml", - "ref/net46/System.Collections.Specialized.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.ComponentModel/4.0.0": { - "sha512": "BzpLdSi++ld7rJLOOt5f/G9GxujP202bBgKORsHcGV36rLB0mfSA2h8chTMoBzFhgN7TE14TmJ2J7Q1RyNCTAw==", - "type": "package", - "path": "system.componentmodel/4.0.0", - "files": [ - "System.ComponentModel.4.0.0.nupkg.sha512", - "System.ComponentModel.nuspec", - "lib/dotnet/System.ComponentModel.dll", - "lib/net45/_._", - "lib/netcore50/System.ComponentModel.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.ComponentModel.dll", - "ref/dotnet/System.ComponentModel.xml", - "ref/dotnet/de/System.ComponentModel.xml", - "ref/dotnet/es/System.ComponentModel.xml", - "ref/dotnet/fr/System.ComponentModel.xml", - "ref/dotnet/it/System.ComponentModel.xml", - "ref/dotnet/ja/System.ComponentModel.xml", - "ref/dotnet/ko/System.ComponentModel.xml", - "ref/dotnet/ru/System.ComponentModel.xml", - "ref/dotnet/zh-hans/System.ComponentModel.xml", - "ref/dotnet/zh-hant/System.ComponentModel.xml", - "ref/net45/_._", - "ref/netcore50/System.ComponentModel.dll", - "ref/netcore50/System.ComponentModel.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._" - ] - }, - "System.ComponentModel.Annotations/4.0.10": { - "sha512": "7+XGyEZx24nP1kpHxCB9e+c6D0fdVDvFwE1xujE9BzlXyNVcy5J5aIO0H/ECupx21QpyRvzZibGAHfL/XLL6dw==", - "type": "package", - "path": "system.componentmodel.annotations/4.0.10", - "files": [ - "System.ComponentModel.Annotations.4.0.10.nupkg.sha512", - "System.ComponentModel.Annotations.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.ComponentModel.Annotations.dll", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.ComponentModel.Annotations.dll", - "ref/dotnet/System.ComponentModel.Annotations.xml", - "ref/dotnet/de/System.ComponentModel.Annotations.xml", - "ref/dotnet/es/System.ComponentModel.Annotations.xml", - "ref/dotnet/fr/System.ComponentModel.Annotations.xml", - "ref/dotnet/it/System.ComponentModel.Annotations.xml", - "ref/dotnet/ja/System.ComponentModel.Annotations.xml", - "ref/dotnet/ko/System.ComponentModel.Annotations.xml", - "ref/dotnet/ru/System.ComponentModel.Annotations.xml", - "ref/dotnet/zh-hans/System.ComponentModel.Annotations.xml", - "ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.ComponentModel.EventBasedAsync/4.0.10": { - "sha512": "d6kXcHUgP0jSPXEQ6hXJYCO6CzfoCi7t9vR3BfjSQLrj4HzpuATpx1gkN7itmTW1O+wjuw6rai4378Nj6N70yw==", - "type": "package", - "path": "system.componentmodel.eventbasedasync/4.0.10", - "files": [ - "System.ComponentModel.EventBasedAsync.4.0.10.nupkg.sha512", - "System.ComponentModel.EventBasedAsync.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", - "ref/dotnet/System.ComponentModel.EventBasedAsync.xml", - "ref/dotnet/de/System.ComponentModel.EventBasedAsync.xml", - "ref/dotnet/es/System.ComponentModel.EventBasedAsync.xml", - "ref/dotnet/fr/System.ComponentModel.EventBasedAsync.xml", - "ref/dotnet/it/System.ComponentModel.EventBasedAsync.xml", - "ref/dotnet/ja/System.ComponentModel.EventBasedAsync.xml", - "ref/dotnet/ko/System.ComponentModel.EventBasedAsync.xml", - "ref/dotnet/ru/System.ComponentModel.EventBasedAsync.xml", - "ref/dotnet/zh-hans/System.ComponentModel.EventBasedAsync.xml", - "ref/dotnet/zh-hant/System.ComponentModel.EventBasedAsync.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Data.Common/4.0.0": { - "sha512": "SA7IdoTWiImVr0exDM68r0mKmR4f/qFGxZUrJQKu4YS7F+3afWzSOCezHxWdevQ0ONi4WRQsOiv+Zf9p8H0Feg==", - "type": "package", - "path": "system.data.common/4.0.0", - "files": [ - "System.Data.Common.4.0.0.nupkg.sha512", - "System.Data.Common.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.Data.Common.dll", - "lib/net46/System.Data.Common.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Data.Common.dll", - "ref/dotnet/System.Data.Common.xml", - "ref/dotnet/de/System.Data.Common.xml", - "ref/dotnet/es/System.Data.Common.xml", - "ref/dotnet/fr/System.Data.Common.xml", - "ref/dotnet/it/System.Data.Common.xml", - "ref/dotnet/ja/System.Data.Common.xml", - "ref/dotnet/ko/System.Data.Common.xml", - "ref/dotnet/ru/System.Data.Common.xml", - "ref/dotnet/zh-hans/System.Data.Common.xml", - "ref/dotnet/zh-hant/System.Data.Common.xml", - "ref/net46/System.Data.Common.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Diagnostics.Contracts/4.0.0": { - "sha512": "lMc7HNmyIsu0pKTdA4wf+FMq5jvouUd+oUpV4BdtyqoV0Pkbg9u/7lTKFGqpjZRQosWHq1+B32Lch2wf4AmloA==", - "type": "package", - "path": "system.diagnostics.contracts/4.0.0", - "files": [ - "System.Diagnostics.Contracts.4.0.0.nupkg.sha512", - "System.Diagnostics.Contracts.nuspec", - "lib/DNXCore50/System.Diagnostics.Contracts.dll", - "lib/net45/_._", - "lib/netcore50/System.Diagnostics.Contracts.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Diagnostics.Contracts.dll", - "ref/dotnet/System.Diagnostics.Contracts.xml", - "ref/dotnet/de/System.Diagnostics.Contracts.xml", - "ref/dotnet/es/System.Diagnostics.Contracts.xml", - "ref/dotnet/fr/System.Diagnostics.Contracts.xml", - "ref/dotnet/it/System.Diagnostics.Contracts.xml", - "ref/dotnet/ja/System.Diagnostics.Contracts.xml", - "ref/dotnet/ko/System.Diagnostics.Contracts.xml", - "ref/dotnet/ru/System.Diagnostics.Contracts.xml", - "ref/dotnet/zh-hans/System.Diagnostics.Contracts.xml", - "ref/dotnet/zh-hant/System.Diagnostics.Contracts.xml", - "ref/net45/_._", - "ref/netcore50/System.Diagnostics.Contracts.dll", - "ref/netcore50/System.Diagnostics.Contracts.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll" - ] - }, - "System.Diagnostics.Debug/4.0.10": { - "sha512": "pi2KthuvI2LWV2c2V+fwReDsDiKpNl040h6DcwFOb59SafsPT/V1fCy0z66OKwysurJkBMmp5j5CBe3Um+ub0g==", - "type": "package", - "path": "system.diagnostics.debug/4.0.10", - "files": [ - "System.Diagnostics.Debug.4.0.10.nupkg.sha512", - "System.Diagnostics.Debug.nuspec", - "lib/DNXCore50/System.Diagnostics.Debug.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Diagnostics.Debug.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Diagnostics.Debug.dll", - "ref/dotnet/System.Diagnostics.Debug.xml", - "ref/dotnet/de/System.Diagnostics.Debug.xml", - "ref/dotnet/es/System.Diagnostics.Debug.xml", - "ref/dotnet/fr/System.Diagnostics.Debug.xml", - "ref/dotnet/it/System.Diagnostics.Debug.xml", - "ref/dotnet/ja/System.Diagnostics.Debug.xml", - "ref/dotnet/ko/System.Diagnostics.Debug.xml", - "ref/dotnet/ru/System.Diagnostics.Debug.xml", - "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", - "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll" - ] - }, - "System.Diagnostics.StackTrace/4.0.0": { - "sha512": "PItgenqpRiMqErvQONBlfDwctKpWVrcDSW5pppNZPJ6Bpiyz+KjsWoSiaqs5dt03HEbBTMNCrZb8KCkh7YfXmw==", - "type": "package", - "path": "system.diagnostics.stacktrace/4.0.0", - "files": [ - "System.Diagnostics.StackTrace.4.0.0.nupkg.sha512", - "System.Diagnostics.StackTrace.nuspec", - "lib/DNXCore50/System.Diagnostics.StackTrace.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Diagnostics.StackTrace.dll", - "lib/netcore50/System.Diagnostics.StackTrace.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Diagnostics.StackTrace.dll", - "ref/dotnet/System.Diagnostics.StackTrace.xml", - "ref/dotnet/de/System.Diagnostics.StackTrace.xml", - "ref/dotnet/es/System.Diagnostics.StackTrace.xml", - "ref/dotnet/fr/System.Diagnostics.StackTrace.xml", - "ref/dotnet/it/System.Diagnostics.StackTrace.xml", - "ref/dotnet/ja/System.Diagnostics.StackTrace.xml", - "ref/dotnet/ko/System.Diagnostics.StackTrace.xml", - "ref/dotnet/ru/System.Diagnostics.StackTrace.xml", - "ref/dotnet/zh-hans/System.Diagnostics.StackTrace.xml", - "ref/dotnet/zh-hant/System.Diagnostics.StackTrace.xml", - "ref/net46/System.Diagnostics.StackTrace.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll" - ] - }, - "System.Diagnostics.Tools/4.0.0": { - "sha512": "uw5Qi2u5Cgtv4xv3+8DeB63iaprPcaEHfpeJqlJiLjIVy6v0La4ahJ6VW9oPbJNIjcavd24LKq0ctT9ssuQXsw==", - "type": "package", - "path": "system.diagnostics.tools/4.0.0", - "files": [ - "System.Diagnostics.Tools.4.0.0.nupkg.sha512", - "System.Diagnostics.Tools.nuspec", - "lib/DNXCore50/System.Diagnostics.Tools.dll", - "lib/net45/_._", - "lib/netcore50/System.Diagnostics.Tools.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Diagnostics.Tools.dll", - "ref/dotnet/System.Diagnostics.Tools.xml", - "ref/dotnet/de/System.Diagnostics.Tools.xml", - "ref/dotnet/es/System.Diagnostics.Tools.xml", - "ref/dotnet/fr/System.Diagnostics.Tools.xml", - "ref/dotnet/it/System.Diagnostics.Tools.xml", - "ref/dotnet/ja/System.Diagnostics.Tools.xml", - "ref/dotnet/ko/System.Diagnostics.Tools.xml", - "ref/dotnet/ru/System.Diagnostics.Tools.xml", - "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml", - "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml", - "ref/net45/_._", - "ref/netcore50/System.Diagnostics.Tools.dll", - "ref/netcore50/System.Diagnostics.Tools.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll" - ] - }, - "System.Diagnostics.Tracing/4.0.20": { - "sha512": "gn/wexGHc35Fv++5L1gYHMY5g25COfiZ0PGrL+3PfwzoJd4X2LbTAm/U8d385SI6BKQBI/z4dQfvneS9J27+Tw==", - "type": "package", - "path": "system.diagnostics.tracing/4.0.20", - "files": [ - "System.Diagnostics.Tracing.4.0.20.nupkg.sha512", - "System.Diagnostics.Tracing.nuspec", - "lib/DNXCore50/System.Diagnostics.Tracing.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Diagnostics.Tracing.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Diagnostics.Tracing.dll", - "ref/dotnet/System.Diagnostics.Tracing.xml", - "ref/dotnet/de/System.Diagnostics.Tracing.xml", - "ref/dotnet/es/System.Diagnostics.Tracing.xml", - "ref/dotnet/fr/System.Diagnostics.Tracing.xml", - "ref/dotnet/it/System.Diagnostics.Tracing.xml", - "ref/dotnet/ja/System.Diagnostics.Tracing.xml", - "ref/dotnet/ko/System.Diagnostics.Tracing.xml", - "ref/dotnet/ru/System.Diagnostics.Tracing.xml", - "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", - "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll" - ] - }, - "System.Dynamic.Runtime/4.0.10": { - "sha512": "r10VTLdlxtYp46BuxomHnwx7vIoMOr04CFoC/jJJfY22f7HQQ4P+cXY2Nxo6/rIxNNqOxwdbQQwv7Gl88Jsu1w==", - "type": "package", - "path": "system.dynamic.runtime/4.0.10", - "files": [ - "System.Dynamic.Runtime.4.0.10.nupkg.sha512", - "System.Dynamic.Runtime.nuspec", - "lib/DNXCore50/System.Dynamic.Runtime.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Dynamic.Runtime.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Dynamic.Runtime.dll", - "ref/dotnet/System.Dynamic.Runtime.xml", - "ref/dotnet/de/System.Dynamic.Runtime.xml", - "ref/dotnet/es/System.Dynamic.Runtime.xml", - "ref/dotnet/fr/System.Dynamic.Runtime.xml", - "ref/dotnet/it/System.Dynamic.Runtime.xml", - "ref/dotnet/ja/System.Dynamic.Runtime.xml", - "ref/dotnet/ko/System.Dynamic.Runtime.xml", - "ref/dotnet/ru/System.Dynamic.Runtime.xml", - "ref/dotnet/zh-hans/System.Dynamic.Runtime.xml", - "ref/dotnet/zh-hant/System.Dynamic.Runtime.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll" - ] - }, - "System.Globalization/4.0.10": { - "sha512": "kzRtbbCNAxdafFBDogcM36ehA3th8c1PGiz8QRkZn8O5yMBorDHSK8/TGJPYOaCS5zdsGk0u9qXHnW91nqy7fw==", - "type": "package", - "path": "system.globalization/4.0.10", - "files": [ - "System.Globalization.4.0.10.nupkg.sha512", - "System.Globalization.nuspec", - "lib/DNXCore50/System.Globalization.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Globalization.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Globalization.dll", - "ref/dotnet/System.Globalization.xml", - "ref/dotnet/de/System.Globalization.xml", - "ref/dotnet/es/System.Globalization.xml", - "ref/dotnet/fr/System.Globalization.xml", - "ref/dotnet/it/System.Globalization.xml", - "ref/dotnet/ja/System.Globalization.xml", - "ref/dotnet/ko/System.Globalization.xml", - "ref/dotnet/ru/System.Globalization.xml", - "ref/dotnet/zh-hans/System.Globalization.xml", - "ref/dotnet/zh-hant/System.Globalization.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Globalization.dll" - ] - }, - "System.Globalization.Calendars/4.0.0": { - "sha512": "cL6WrdGKnNBx9W/iTr+jbffsEO4RLjEtOYcpVSzPNDoli6X5Q6bAfWtJYbJNOPi8Q0fXgBEvKK1ncFL/3FTqlA==", - "type": "package", - "path": "system.globalization.calendars/4.0.0", - "files": [ - "System.Globalization.Calendars.4.0.0.nupkg.sha512", - "System.Globalization.Calendars.nuspec", - "lib/DNXCore50/System.Globalization.Calendars.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Globalization.Calendars.dll", - "lib/netcore50/System.Globalization.Calendars.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Globalization.Calendars.dll", - "ref/dotnet/System.Globalization.Calendars.xml", - "ref/dotnet/de/System.Globalization.Calendars.xml", - "ref/dotnet/es/System.Globalization.Calendars.xml", - "ref/dotnet/fr/System.Globalization.Calendars.xml", - "ref/dotnet/it/System.Globalization.Calendars.xml", - "ref/dotnet/ja/System.Globalization.Calendars.xml", - "ref/dotnet/ko/System.Globalization.Calendars.xml", - "ref/dotnet/ru/System.Globalization.Calendars.xml", - "ref/dotnet/zh-hans/System.Globalization.Calendars.xml", - "ref/dotnet/zh-hant/System.Globalization.Calendars.xml", - "ref/net46/System.Globalization.Calendars.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll" - ] - }, - "System.Globalization.Extensions/4.0.0": { - "sha512": "rqbUXiwpBCvJ18ySCsjh20zleazO+6fr3s5GihC2sVwhyS0MUl6+oc5Rzk0z6CKkS4kmxbZQSeZLsK7cFSO0ng==", - "type": "package", - "path": "system.globalization.extensions/4.0.0", - "files": [ - "System.Globalization.Extensions.4.0.0.nupkg.sha512", - "System.Globalization.Extensions.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.Globalization.Extensions.dll", - "lib/net46/System.Globalization.Extensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Globalization.Extensions.dll", - "ref/dotnet/System.Globalization.Extensions.xml", - "ref/dotnet/de/System.Globalization.Extensions.xml", - "ref/dotnet/es/System.Globalization.Extensions.xml", - "ref/dotnet/fr/System.Globalization.Extensions.xml", - "ref/dotnet/it/System.Globalization.Extensions.xml", - "ref/dotnet/ja/System.Globalization.Extensions.xml", - "ref/dotnet/ko/System.Globalization.Extensions.xml", - "ref/dotnet/ru/System.Globalization.Extensions.xml", - "ref/dotnet/zh-hans/System.Globalization.Extensions.xml", - "ref/dotnet/zh-hant/System.Globalization.Extensions.xml", - "ref/net46/System.Globalization.Extensions.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.IO/4.0.10": { - "sha512": "kghf1CeYT+W2lw8a50/GxFz5HR9t6RkL4BvjxtTp1NxtEFWywnMA9W8FH/KYXiDNThcw9u/GOViDON4iJFGXIQ==", - "type": "package", - "path": "system.io/4.0.10", - "files": [ - "System.IO.4.0.10.nupkg.sha512", - "System.IO.nuspec", - "lib/DNXCore50/System.IO.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.IO.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.IO.dll", - "ref/dotnet/System.IO.xml", - "ref/dotnet/de/System.IO.xml", - "ref/dotnet/es/System.IO.xml", - "ref/dotnet/fr/System.IO.xml", - "ref/dotnet/it/System.IO.xml", - "ref/dotnet/ja/System.IO.xml", - "ref/dotnet/ko/System.IO.xml", - "ref/dotnet/ru/System.IO.xml", - "ref/dotnet/zh-hans/System.IO.xml", - "ref/dotnet/zh-hant/System.IO.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.IO.dll" - ] - }, - "System.IO.Compression/4.0.0": { - "sha512": "S+ljBE3py8pujTrsOOYHtDg2cnAifn6kBu/pfh1hMWIXd8DoVh0ADTA6Puv4q+nYj+Msm6JoFLNwuRSmztbsDQ==", - "type": "package", - "path": "system.io.compression/4.0.0", - "files": [ - "System.IO.Compression.4.0.0.nupkg.sha512", - "System.IO.Compression.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.IO.Compression.dll", - "lib/net45/_._", - "lib/netcore50/System.IO.Compression.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.IO.Compression.dll", - "ref/dotnet/System.IO.Compression.xml", - "ref/dotnet/de/System.IO.Compression.xml", - "ref/dotnet/es/System.IO.Compression.xml", - "ref/dotnet/fr/System.IO.Compression.xml", - "ref/dotnet/it/System.IO.Compression.xml", - "ref/dotnet/ja/System.IO.Compression.xml", - "ref/dotnet/ko/System.IO.Compression.xml", - "ref/dotnet/ru/System.IO.Compression.xml", - "ref/dotnet/zh-hans/System.IO.Compression.xml", - "ref/dotnet/zh-hant/System.IO.Compression.xml", - "ref/net45/_._", - "ref/netcore50/System.IO.Compression.dll", - "ref/netcore50/System.IO.Compression.xml", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json" - ] - }, - "System.IO.Compression.clrcompression-arm/4.0.0": { - "sha512": "Kk21GecAbI+H6tMP6/lMssGObbhoHwLiREiB5UkNMCypdxACuF+6gmrdDTousCUcbH28CJeo7tArrnUc+bchuw==", - "type": "package", - "path": "system.io.compression.clrcompression-arm/4.0.0", - "files": [ - "System.IO.Compression.clrcompression-arm.4.0.0.nupkg.sha512", - "System.IO.Compression.clrcompression-arm.nuspec", - "runtimes/win10-arm/native/ClrCompression.dll", - "runtimes/win7-arm/native/clrcompression.dll" - ] - }, - "System.IO.Compression.clrcompression-x64/4.0.0": { - "sha512": "Lqr+URMwKzf+8HJF6YrqEqzKzDzFJTE4OekaxqdIns71r8Ufbd8SbZa0LKl9q+7nu6Em4SkIEXVMB7plSXekOw==", - "type": "package", - "path": "system.io.compression.clrcompression-x64/4.0.0", - "files": [ - "System.IO.Compression.clrcompression-x64.4.0.0.nupkg.sha512", - "System.IO.Compression.clrcompression-x64.nuspec", - "runtimes/win10-x64/native/ClrCompression.dll", - "runtimes/win7-x64/native/clrcompression.dll" - ] - }, - "System.IO.Compression.clrcompression-x86/4.0.0": { - "sha512": "GmevpuaMRzYDXHu+xuV10fxTO8DsP7OKweWxYtkaxwVnDSj9X6RBupSiXdiveq9yj/xjZ1NbG+oRRRb99kj+VQ==", - "type": "package", - "path": "system.io.compression.clrcompression-x86/4.0.0", - "files": [ - "System.IO.Compression.clrcompression-x86.4.0.0.nupkg.sha512", - "System.IO.Compression.clrcompression-x86.nuspec", - "runtimes/win10-x86/native/ClrCompression.dll", - "runtimes/win7-x86/native/clrcompression.dll" - ] - }, - "System.IO.Compression.ZipFile/4.0.0": { - "sha512": "pwntmtsJqtt6Lez4Iyv4GVGW6DaXUTo9Rnlsx0MFagRgX+8F/sxG5S/IzDJabBj68sUWViz1QJrRZL4V9ngWDg==", - "type": "package", - "path": "system.io.compression.zipfile/4.0.0", - "files": [ - "System.IO.Compression.ZipFile.4.0.0.nupkg.sha512", - "System.IO.Compression.ZipFile.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.IO.Compression.ZipFile.dll", - "lib/net46/System.IO.Compression.ZipFile.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.IO.Compression.ZipFile.dll", - "ref/dotnet/System.IO.Compression.ZipFile.xml", - "ref/dotnet/de/System.IO.Compression.ZipFile.xml", - "ref/dotnet/es/System.IO.Compression.ZipFile.xml", - "ref/dotnet/fr/System.IO.Compression.ZipFile.xml", - "ref/dotnet/it/System.IO.Compression.ZipFile.xml", - "ref/dotnet/ja/System.IO.Compression.ZipFile.xml", - "ref/dotnet/ko/System.IO.Compression.ZipFile.xml", - "ref/dotnet/ru/System.IO.Compression.ZipFile.xml", - "ref/dotnet/zh-hans/System.IO.Compression.ZipFile.xml", - "ref/dotnet/zh-hant/System.IO.Compression.ZipFile.xml", - "ref/net46/System.IO.Compression.ZipFile.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.IO.FileSystem/4.0.0": { - "sha512": "eo05SPWfG+54UA0wxgRIYOuOslq+2QrJLXZaJDDsfLXG15OLguaItW39NYZTqUb4DeGOkU4R0wpOLOW4ynMUDQ==", - "type": "package", - "path": "system.io.filesystem/4.0.0", - "files": [ - "System.IO.FileSystem.4.0.0.nupkg.sha512", - "System.IO.FileSystem.nuspec", - "lib/DNXCore50/System.IO.FileSystem.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.dll", - "lib/netcore50/System.IO.FileSystem.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.IO.FileSystem.dll", - "ref/dotnet/System.IO.FileSystem.xml", - "ref/dotnet/de/System.IO.FileSystem.xml", - "ref/dotnet/es/System.IO.FileSystem.xml", - "ref/dotnet/fr/System.IO.FileSystem.xml", - "ref/dotnet/it/System.IO.FileSystem.xml", - "ref/dotnet/ja/System.IO.FileSystem.xml", - "ref/dotnet/ko/System.IO.FileSystem.xml", - "ref/dotnet/ru/System.IO.FileSystem.xml", - "ref/dotnet/zh-hans/System.IO.FileSystem.xml", - "ref/dotnet/zh-hant/System.IO.FileSystem.xml", - "ref/net46/System.IO.FileSystem.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "sha512": "7pJUvYi/Yq3A5nagqCCiOw3+aJp3xXc/Cjr8dnJDnER3/6kX3LEencfqmXUcPl9+7OvRNyPMNhqsLAcMK6K/KA==", - "type": "package", - "path": "system.io.filesystem.primitives/4.0.0", - "files": [ - "System.IO.FileSystem.Primitives.4.0.0.nupkg.sha512", - "System.IO.FileSystem.Primitives.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.IO.FileSystem.Primitives.dll", - "lib/net46/System.IO.FileSystem.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.IO.FileSystem.Primitives.dll", - "ref/dotnet/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/de/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/es/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/it/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", - "ref/net46/System.IO.FileSystem.Primitives.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.IO.IsolatedStorage/4.0.0": { - "sha512": "d5KimUbZ49Ki6A/uwU+Iodng+nhJvpRs7hr/828cfeXC02LxUiggnRnAu+COtWcKvJ2YbBmAGOcO4GLK4fX1+w==", - "type": "package", - "path": "system.io.isolatedstorage/4.0.0", - "files": [ - "System.IO.IsolatedStorage.4.0.0.nupkg.sha512", - "System.IO.IsolatedStorage.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/netcore50/System.IO.IsolatedStorage.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.IO.IsolatedStorage.dll", - "ref/dotnet/System.IO.IsolatedStorage.xml", - "ref/dotnet/de/System.IO.IsolatedStorage.xml", - "ref/dotnet/es/System.IO.IsolatedStorage.xml", - "ref/dotnet/fr/System.IO.IsolatedStorage.xml", - "ref/dotnet/it/System.IO.IsolatedStorage.xml", - "ref/dotnet/ja/System.IO.IsolatedStorage.xml", - "ref/dotnet/ko/System.IO.IsolatedStorage.xml", - "ref/dotnet/ru/System.IO.IsolatedStorage.xml", - "ref/dotnet/zh-hans/System.IO.IsolatedStorage.xml", - "ref/dotnet/zh-hant/System.IO.IsolatedStorage.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "sha512": "i2xczgQfwHmolORBNHxV9b5izP8VOBxgSA2gf+H55xBvwqtR+9r9adtzlc7at0MAwiLcsk6V1TZlv2vfRQr8Sw==", - "type": "package", - "path": "system.io.unmanagedmemorystream/4.0.0", - "files": [ - "System.IO.UnmanagedMemoryStream.4.0.0.nupkg.sha512", - "System.IO.UnmanagedMemoryStream.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll", - "lib/net46/System.IO.UnmanagedMemoryStream.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll", - "ref/dotnet/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/de/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/es/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/fr/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/it/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/ja/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/ko/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/ru/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/zh-hans/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/zh-hant/System.IO.UnmanagedMemoryStream.xml", - "ref/net46/System.IO.UnmanagedMemoryStream.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Linq/4.0.0": { - "sha512": "r6Hlc+ytE6m/9UBr+nNRRdoJEWjoeQiT3L3lXYFDHoXk3VYsRBCDNXrawcexw7KPLaH0zamQLiAb6avhZ50cGg==", - "type": "package", - "path": "system.linq/4.0.0", - "files": [ - "System.Linq.4.0.0.nupkg.sha512", - "System.Linq.nuspec", - "lib/dotnet/System.Linq.dll", - "lib/net45/_._", - "lib/netcore50/System.Linq.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Linq.dll", - "ref/dotnet/System.Linq.xml", - "ref/dotnet/de/System.Linq.xml", - "ref/dotnet/es/System.Linq.xml", - "ref/dotnet/fr/System.Linq.xml", - "ref/dotnet/it/System.Linq.xml", - "ref/dotnet/ja/System.Linq.xml", - "ref/dotnet/ko/System.Linq.xml", - "ref/dotnet/ru/System.Linq.xml", - "ref/dotnet/zh-hans/System.Linq.xml", - "ref/dotnet/zh-hant/System.Linq.xml", - "ref/net45/_._", - "ref/netcore50/System.Linq.dll", - "ref/netcore50/System.Linq.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._" - ] - }, - "System.Linq.Expressions/4.0.10": { - "sha512": "qhFkPqRsTfXBaacjQhxwwwUoU7TEtwlBIULj7nG7i4qAkvivil31VvOvDKppCSui5yGw0/325ZeNaMYRvTotXw==", - "type": "package", - "path": "system.linq.expressions/4.0.10", - "files": [ - "System.Linq.Expressions.4.0.10.nupkg.sha512", - "System.Linq.Expressions.nuspec", - "lib/DNXCore50/System.Linq.Expressions.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Linq.Expressions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Linq.Expressions.dll", - "ref/dotnet/System.Linq.Expressions.xml", - "ref/dotnet/de/System.Linq.Expressions.xml", - "ref/dotnet/es/System.Linq.Expressions.xml", - "ref/dotnet/fr/System.Linq.Expressions.xml", - "ref/dotnet/it/System.Linq.Expressions.xml", - "ref/dotnet/ja/System.Linq.Expressions.xml", - "ref/dotnet/ko/System.Linq.Expressions.xml", - "ref/dotnet/ru/System.Linq.Expressions.xml", - "ref/dotnet/zh-hans/System.Linq.Expressions.xml", - "ref/dotnet/zh-hant/System.Linq.Expressions.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll" - ] - }, - "System.Linq.Parallel/4.0.0": { - "sha512": "PtH7KKh1BbzVow4XY17pnrn7Io63ApMdwzRE2o2HnzsKQD/0o7X5xe6mxrDUqTm9ZCR3/PNhAlP13VY1HnHsbA==", - "type": "package", - "path": "system.linq.parallel/4.0.0", - "files": [ - "System.Linq.Parallel.4.0.0.nupkg.sha512", - "System.Linq.Parallel.nuspec", - "lib/dotnet/System.Linq.Parallel.dll", - "lib/net45/_._", - "lib/netcore50/System.Linq.Parallel.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Linq.Parallel.dll", - "ref/dotnet/System.Linq.Parallel.xml", - "ref/dotnet/de/System.Linq.Parallel.xml", - "ref/dotnet/es/System.Linq.Parallel.xml", - "ref/dotnet/fr/System.Linq.Parallel.xml", - "ref/dotnet/it/System.Linq.Parallel.xml", - "ref/dotnet/ja/System.Linq.Parallel.xml", - "ref/dotnet/ko/System.Linq.Parallel.xml", - "ref/dotnet/ru/System.Linq.Parallel.xml", - "ref/dotnet/zh-hans/System.Linq.Parallel.xml", - "ref/dotnet/zh-hant/System.Linq.Parallel.xml", - "ref/net45/_._", - "ref/netcore50/System.Linq.Parallel.dll", - "ref/netcore50/System.Linq.Parallel.xml", - "ref/win8/_._", - "ref/wpa81/_._" - ] - }, - "System.Linq.Queryable/4.0.0": { - "sha512": "DIlvCNn3ucFvwMMzXcag4aFnFJ1fdxkQ5NqwJe9Nh7y8ozzhDm07YakQL/yoF3P1dLzY1T2cTpuwbAmVSdXyBA==", - "type": "package", - "path": "system.linq.queryable/4.0.0", - "files": [ - "System.Linq.Queryable.4.0.0.nupkg.sha512", - "System.Linq.Queryable.nuspec", - "lib/dotnet/System.Linq.Queryable.dll", - "lib/net45/_._", - "lib/netcore50/System.Linq.Queryable.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Linq.Queryable.dll", - "ref/dotnet/System.Linq.Queryable.xml", - "ref/dotnet/de/System.Linq.Queryable.xml", - "ref/dotnet/es/System.Linq.Queryable.xml", - "ref/dotnet/fr/System.Linq.Queryable.xml", - "ref/dotnet/it/System.Linq.Queryable.xml", - "ref/dotnet/ja/System.Linq.Queryable.xml", - "ref/dotnet/ko/System.Linq.Queryable.xml", - "ref/dotnet/ru/System.Linq.Queryable.xml", - "ref/dotnet/zh-hans/System.Linq.Queryable.xml", - "ref/dotnet/zh-hant/System.Linq.Queryable.xml", - "ref/net45/_._", - "ref/netcore50/System.Linq.Queryable.dll", - "ref/netcore50/System.Linq.Queryable.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._" - ] - }, - "System.Net.Http/4.0.0": { - "sha512": "mZuAl7jw/mFY8jUq4ITKECxVBh9a8SJt9BC/+lJbmo7cRKspxE3PsITz+KiaCEsexN5WYPzwBOx0oJH/0HlPyQ==", - "type": "package", - "path": "system.net.http/4.0.0", - "files": [ - "System.Net.Http.4.0.0.nupkg.sha512", - "System.Net.Http.nuspec", - "lib/DNXCore50/System.Net.Http.dll", - "lib/net45/_._", - "lib/netcore50/System.Net.Http.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Net.Http.dll", - "ref/dotnet/System.Net.Http.xml", - "ref/dotnet/de/System.Net.Http.xml", - "ref/dotnet/es/System.Net.Http.xml", - "ref/dotnet/fr/System.Net.Http.xml", - "ref/dotnet/it/System.Net.Http.xml", - "ref/dotnet/ja/System.Net.Http.xml", - "ref/dotnet/ko/System.Net.Http.xml", - "ref/dotnet/ru/System.Net.Http.xml", - "ref/dotnet/zh-hans/System.Net.Http.xml", - "ref/dotnet/zh-hant/System.Net.Http.xml", - "ref/net45/_._", - "ref/netcore50/System.Net.Http.dll", - "ref/netcore50/System.Net.Http.xml", - "ref/win8/_._", - "ref/wpa81/_._" - ] - }, - "System.Net.Http.Rtc/4.0.0": { - "sha512": "PlE+oJgXdbxPmZYR6GBywRkyIPovjB1Y0SYHizj2Iflgu80uJQC4szl9gue4rKI2FgXiEbj9JL7wL5K3mp9HAQ==", - "type": "package", - "path": "system.net.http.rtc/4.0.0", - "files": [ - "System.Net.Http.Rtc.4.0.0.nupkg.sha512", - "System.Net.Http.Rtc.nuspec", - "lib/netcore50/System.Net.Http.Rtc.dll", - "lib/win8/_._", - "ref/dotnet/System.Net.Http.Rtc.dll", - "ref/dotnet/System.Net.Http.Rtc.xml", - "ref/dotnet/de/System.Net.Http.Rtc.xml", - "ref/dotnet/es/System.Net.Http.Rtc.xml", - "ref/dotnet/fr/System.Net.Http.Rtc.xml", - "ref/dotnet/it/System.Net.Http.Rtc.xml", - "ref/dotnet/ja/System.Net.Http.Rtc.xml", - "ref/dotnet/ko/System.Net.Http.Rtc.xml", - "ref/dotnet/ru/System.Net.Http.Rtc.xml", - "ref/dotnet/zh-hans/System.Net.Http.Rtc.xml", - "ref/dotnet/zh-hant/System.Net.Http.Rtc.xml", - "ref/netcore50/System.Net.Http.Rtc.dll", - "ref/netcore50/System.Net.Http.Rtc.xml", - "ref/win8/_._" - ] - }, - "System.Net.NetworkInformation/4.0.0": { - "sha512": "D68KCf5VK1G1GgFUwD901gU6cnMITksOdfdxUCt9ReCZfT1pigaDqjJ7XbiLAM4jm7TfZHB7g5mbOf1mbG3yBA==", - "type": "package", - "path": "system.net.networkinformation/4.0.0", - "files": [ - "System.Net.NetworkInformation.4.0.0.nupkg.sha512", - "System.Net.NetworkInformation.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Net.NetworkInformation.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Net.NetworkInformation.dll", - "ref/dotnet/System.Net.NetworkInformation.xml", - "ref/dotnet/de/System.Net.NetworkInformation.xml", - "ref/dotnet/es/System.Net.NetworkInformation.xml", - "ref/dotnet/fr/System.Net.NetworkInformation.xml", - "ref/dotnet/it/System.Net.NetworkInformation.xml", - "ref/dotnet/ja/System.Net.NetworkInformation.xml", - "ref/dotnet/ko/System.Net.NetworkInformation.xml", - "ref/dotnet/ru/System.Net.NetworkInformation.xml", - "ref/dotnet/zh-hans/System.Net.NetworkInformation.xml", - "ref/dotnet/zh-hant/System.Net.NetworkInformation.xml", - "ref/net45/_._", - "ref/netcore50/System.Net.NetworkInformation.dll", - "ref/netcore50/System.Net.NetworkInformation.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Net.Primitives/4.0.10": { - "sha512": "YQqIpmMhnKjIbT7rl6dlf7xM5DxaMR+whduZ9wKb9OhMLjoueAJO3HPPJI+Naf3v034kb+xZqdc3zo44o3HWcg==", - "type": "package", - "path": "system.net.primitives/4.0.10", - "files": [ - "System.Net.Primitives.4.0.10.nupkg.sha512", - "System.Net.Primitives.nuspec", - "lib/DNXCore50/System.Net.Primitives.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Net.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Net.Primitives.dll", - "ref/dotnet/System.Net.Primitives.xml", - "ref/dotnet/de/System.Net.Primitives.xml", - "ref/dotnet/es/System.Net.Primitives.xml", - "ref/dotnet/fr/System.Net.Primitives.xml", - "ref/dotnet/it/System.Net.Primitives.xml", - "ref/dotnet/ja/System.Net.Primitives.xml", - "ref/dotnet/ko/System.Net.Primitives.xml", - "ref/dotnet/ru/System.Net.Primitives.xml", - "ref/dotnet/zh-hans/System.Net.Primitives.xml", - "ref/dotnet/zh-hant/System.Net.Primitives.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Net.Requests/4.0.10": { - "sha512": "A6XBR7TztiIQg6hx7VGfbBKmRTAavUERm2E7pmNz/gZeGvwyP0lcKHZxylJtNVKj7DPwr91bD87oLY6zZYntcg==", - "type": "package", - "path": "system.net.requests/4.0.10", - "files": [ - "System.Net.Requests.4.0.10.nupkg.sha512", - "System.Net.Requests.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.Net.Requests.dll", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Net.Requests.dll", - "ref/dotnet/System.Net.Requests.xml", - "ref/dotnet/de/System.Net.Requests.xml", - "ref/dotnet/es/System.Net.Requests.xml", - "ref/dotnet/fr/System.Net.Requests.xml", - "ref/dotnet/it/System.Net.Requests.xml", - "ref/dotnet/ja/System.Net.Requests.xml", - "ref/dotnet/ko/System.Net.Requests.xml", - "ref/dotnet/ru/System.Net.Requests.xml", - "ref/dotnet/zh-hans/System.Net.Requests.xml", - "ref/dotnet/zh-hant/System.Net.Requests.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Net.Sockets/4.0.0": { - "sha512": "7bBNLdO6Xw0BGyFVSxjloGXMvsc3qQmW+70bYMLwHEAVivMK8zx+E7XO8CeJnAko2mFj6R402E798EGYUksFcQ==", - "type": "package", - "path": "system.net.sockets/4.0.0", - "files": [ - "System.Net.Sockets.4.0.0.nupkg.sha512", - "System.Net.Sockets.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Net.Sockets.dll", - "lib/netcore50/System.Net.Sockets.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Net.Sockets.dll", - "ref/dotnet/System.Net.Sockets.xml", - "ref/dotnet/de/System.Net.Sockets.xml", - "ref/dotnet/es/System.Net.Sockets.xml", - "ref/dotnet/fr/System.Net.Sockets.xml", - "ref/dotnet/it/System.Net.Sockets.xml", - "ref/dotnet/ja/System.Net.Sockets.xml", - "ref/dotnet/ko/System.Net.Sockets.xml", - "ref/dotnet/ru/System.Net.Sockets.xml", - "ref/dotnet/zh-hans/System.Net.Sockets.xml", - "ref/dotnet/zh-hant/System.Net.Sockets.xml", - "ref/net46/System.Net.Sockets.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Net.WebHeaderCollection/4.0.0": { - "sha512": "IsIZAsHm/yK7R/XASnEc4EMffFLIMgYchG3/zJv6B4LwMnXZwrVlSPpNbPgEVb0lSXyztsn7A6sIPAACQQ2vTQ==", - "type": "package", - "path": "system.net.webheadercollection/4.0.0", - "files": [ - "System.Net.WebHeaderCollection.4.0.0.nupkg.sha512", - "System.Net.WebHeaderCollection.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.Net.WebHeaderCollection.dll", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Net.WebHeaderCollection.dll", - "ref/dotnet/System.Net.WebHeaderCollection.xml", - "ref/dotnet/de/System.Net.WebHeaderCollection.xml", - "ref/dotnet/es/System.Net.WebHeaderCollection.xml", - "ref/dotnet/fr/System.Net.WebHeaderCollection.xml", - "ref/dotnet/it/System.Net.WebHeaderCollection.xml", - "ref/dotnet/ja/System.Net.WebHeaderCollection.xml", - "ref/dotnet/ko/System.Net.WebHeaderCollection.xml", - "ref/dotnet/ru/System.Net.WebHeaderCollection.xml", - "ref/dotnet/zh-hans/System.Net.WebHeaderCollection.xml", - "ref/dotnet/zh-hant/System.Net.WebHeaderCollection.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Numerics.Vectors/4.1.0": { - "sha512": "jpubR06GWPoZA0oU5xLM7kHeV59/CKPBXZk4Jfhi0T3DafxbrdueHZ8kXlb+Fb5nd3DAyyMh2/eqEzLX0xv6Qg==", - "type": "package", - "path": "system.numerics.vectors/4.1.0", - "files": [ - "System.Numerics.Vectors.4.1.0.nupkg.sha512", - "System.Numerics.Vectors.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.Numerics.Vectors.dll", - "lib/net46/System.Numerics.Vectors.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Numerics.Vectors.dll", - "ref/net46/System.Numerics.Vectors.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.0": { - "sha512": "Ly7GvoPFZq6GyfZpfS0E7uCk1cinl5BANAngXVuau3lD2QqZJMHitzlPv6n1FlIn6krfv99X2IPkIaVzUwDHXA==", - "type": "package", - "path": "system.numerics.vectors.windowsruntime/4.0.0", - "files": [ - "System.Numerics.Vectors.WindowsRuntime.4.0.0.nupkg.sha512", - "System.Numerics.Vectors.WindowsRuntime.nuspec", - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll" - ] - }, - "System.ObjectModel/4.0.10": { - "sha512": "Djn1wb0vP662zxbe+c3mOhvC4vkQGicsFs1Wi0/GJJpp3Eqp+oxbJ+p2Sx3O0efYueggAI5SW+BqEoczjfr1cA==", - "type": "package", - "path": "system.objectmodel/4.0.10", - "files": [ - "System.ObjectModel.4.0.10.nupkg.sha512", - "System.ObjectModel.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.ObjectModel.dll", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.ObjectModel.dll", - "ref/dotnet/System.ObjectModel.xml", - "ref/dotnet/de/System.ObjectModel.xml", - "ref/dotnet/es/System.ObjectModel.xml", - "ref/dotnet/fr/System.ObjectModel.xml", - "ref/dotnet/it/System.ObjectModel.xml", - "ref/dotnet/ja/System.ObjectModel.xml", - "ref/dotnet/ko/System.ObjectModel.xml", - "ref/dotnet/ru/System.ObjectModel.xml", - "ref/dotnet/zh-hans/System.ObjectModel.xml", - "ref/dotnet/zh-hant/System.ObjectModel.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Private.DataContractSerialization/4.0.0": { - "sha512": "uQvzoXHXHn/9YqUmPtgD8ZPJIlBuuL3QHegbuik97W/umoI28fOnGLnvjRHhju1VMWvFLRQoh7uZkBaoZ+KpVQ==", - "type": "package", - "path": "system.private.datacontractserialization/4.0.0", - "files": [ - "System.Private.DataContractSerialization.4.0.0.nupkg.sha512", - "System.Private.DataContractSerialization.nuspec", - "lib/DNXCore50/System.Private.DataContractSerialization.dll", - "lib/netcore50/System.Private.DataContractSerialization.dll", - "ref/dnxcore50/_._", - "ref/netcore50/_._", - "runtime.json", - "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll" - ] - }, - "System.Private.Networking/4.0.0": { - "sha512": "RUEqdBdJjISC65dO8l4LdN7vTdlXH+attUpKnauDUHVtLbIKdlDB9LKoLzCQsTQRP7vzUJHWYXznHJBkjAA7yA==", - "type": "package", - "path": "system.private.networking/4.0.0", - "files": [ - "System.Private.Networking.4.0.0.nupkg.sha512", - "System.Private.Networking.nuspec", - "lib/DNXCore50/System.Private.Networking.dll", - "lib/netcore50/System.Private.Networking.dll", - "ref/dnxcore50/_._", - "ref/netcore50/_._" - ] - }, - "System.Private.ServiceModel/4.0.0": { - "sha512": "cm2wEa1f9kuUq/2k8uIwepgZJi5HdxXSnjGQIeXmAb7RaWfZPEC/iamv9GJ67b5LPnCZHR0KvtFqh82e8AAYSw==", - "type": "package", - "path": "system.private.servicemodel/4.0.0", - "files": [ - "System.Private.ServiceModel.4.0.0.nupkg.sha512", - "System.Private.ServiceModel.nuspec", - "lib/DNXCore50/System.Private.ServiceModel.dll", - "lib/netcore50/System.Private.ServiceModel.dll", - "ref/dnxcore50/_._", - "ref/netcore50/_._" - ] - }, - "System.Private.Uri/4.0.0": { - "sha512": "CtuxaCKcRIvPcsqquVl3mPp79EDZPMr2UogfiFCxCs+t2z1VjbpQsKNs1GHZ8VQetqbk1mr0V1yAfMe6y8CHDA==", - "type": "package", - "path": "system.private.uri/4.0.0", - "files": [ - "System.Private.Uri.4.0.0.nupkg.sha512", - "System.Private.Uri.nuspec", - "lib/DNXCore50/System.Private.Uri.dll", - "lib/netcore50/System.Private.Uri.dll", - "ref/dnxcore50/_._", - "ref/netcore50/_._", - "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll" - ] - }, - "System.Reflection/4.0.10": { - "sha512": "WZ+4lEE4gqGx6mrqLhSiW4oi6QLPWwdNjzhhTONmhELOrW8Cw9phlO9tltgvRUuQUqYtBiliFwhO5S5fCJElVw==", - "type": "package", - "path": "system.reflection/4.0.10", - "files": [ - "System.Reflection.4.0.10.nupkg.sha512", - "System.Reflection.nuspec", - "lib/DNXCore50/System.Reflection.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Reflection.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Reflection.dll", - "ref/dotnet/System.Reflection.xml", - "ref/dotnet/de/System.Reflection.xml", - "ref/dotnet/es/System.Reflection.xml", - "ref/dotnet/fr/System.Reflection.xml", - "ref/dotnet/it/System.Reflection.xml", - "ref/dotnet/ja/System.Reflection.xml", - "ref/dotnet/ko/System.Reflection.xml", - "ref/dotnet/ru/System.Reflection.xml", - "ref/dotnet/zh-hans/System.Reflection.xml", - "ref/dotnet/zh-hant/System.Reflection.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Reflection.dll" - ] - }, - "System.Reflection.Context/4.0.0": { - "sha512": "Gz4sUHHFd/52RjHccSHbOXdujJEWKfL3gIaA+ekxvQaQfJGbI2tPzA0Uv3WTCTDRGHgtoNq5WS9E007Dt4P/VQ==", - "type": "package", - "path": "system.reflection.context/4.0.0", - "files": [ - "System.Reflection.Context.4.0.0.nupkg.sha512", - "System.Reflection.Context.nuspec", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Context.dll", - "lib/win8/_._", - "ref/dotnet/System.Reflection.Context.dll", - "ref/dotnet/System.Reflection.Context.xml", - "ref/dotnet/de/System.Reflection.Context.xml", - "ref/dotnet/es/System.Reflection.Context.xml", - "ref/dotnet/fr/System.Reflection.Context.xml", - "ref/dotnet/it/System.Reflection.Context.xml", - "ref/dotnet/ja/System.Reflection.Context.xml", - "ref/dotnet/ko/System.Reflection.Context.xml", - "ref/dotnet/ru/System.Reflection.Context.xml", - "ref/dotnet/zh-hans/System.Reflection.Context.xml", - "ref/dotnet/zh-hant/System.Reflection.Context.xml", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Context.dll", - "ref/netcore50/System.Reflection.Context.xml", - "ref/win8/_._" - ] - }, - "System.Reflection.DispatchProxy/4.0.0": { - "sha512": "Kd/4o6DqBfJA4058X8oGEu1KlT8Ej0A+WGeoQgZU2h+3f2vC8NRbHxeOSZvxj9/MPZ1RYmZMGL1ApO9xG/4IVA==", - "type": "package", - "path": "system.reflection.dispatchproxy/4.0.0", - "files": [ - "System.Reflection.DispatchProxy.4.0.0.nupkg.sha512", - "System.Reflection.DispatchProxy.nuspec", - "lib/DNXCore50/System.Reflection.DispatchProxy.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Reflection.DispatchProxy.dll", - "lib/netcore50/System.Reflection.DispatchProxy.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Reflection.DispatchProxy.dll", - "ref/dotnet/System.Reflection.DispatchProxy.xml", - "ref/dotnet/de/System.Reflection.DispatchProxy.xml", - "ref/dotnet/es/System.Reflection.DispatchProxy.xml", - "ref/dotnet/fr/System.Reflection.DispatchProxy.xml", - "ref/dotnet/it/System.Reflection.DispatchProxy.xml", - "ref/dotnet/ja/System.Reflection.DispatchProxy.xml", - "ref/dotnet/ko/System.Reflection.DispatchProxy.xml", - "ref/dotnet/ru/System.Reflection.DispatchProxy.xml", - "ref/dotnet/zh-hans/System.Reflection.DispatchProxy.xml", - "ref/dotnet/zh-hant/System.Reflection.DispatchProxy.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll" - ] - }, - "System.Reflection.Emit/4.0.0": { - "sha512": "CqnQz5LbNbiSxN10cv3Ehnw3j1UZOBCxnE0OO0q/keGQ5ENjyFM6rIG4gm/i0dX6EjdpYkAgKcI/mhZZCaBq4A==", - "type": "package", - "path": "system.reflection.emit/4.0.0", - "files": [ - "System.Reflection.Emit.4.0.0.nupkg.sha512", - "System.Reflection.Emit.nuspec", - "lib/DNXCore50/System.Reflection.Emit.dll", - "lib/MonoAndroid10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.dll", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/dotnet/System.Reflection.Emit.dll", - "ref/dotnet/System.Reflection.Emit.xml", - "ref/dotnet/de/System.Reflection.Emit.xml", - "ref/dotnet/es/System.Reflection.Emit.xml", - "ref/dotnet/fr/System.Reflection.Emit.xml", - "ref/dotnet/it/System.Reflection.Emit.xml", - "ref/dotnet/ja/System.Reflection.Emit.xml", - "ref/dotnet/ko/System.Reflection.Emit.xml", - "ref/dotnet/ru/System.Reflection.Emit.xml", - "ref/dotnet/zh-hans/System.Reflection.Emit.xml", - "ref/dotnet/zh-hant/System.Reflection.Emit.xml", - "ref/net45/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Reflection.Emit.ILGeneration/4.0.0": { - "sha512": "02okuusJ0GZiHZSD2IOLIN41GIn6qOr7i5+86C98BPuhlwWqVABwebiGNvhDiXP1f9a6CxEigC7foQD42klcDg==", - "type": "package", - "path": "system.reflection.emit.ilgeneration/4.0.0", - "files": [ - "System.Reflection.Emit.ILGeneration.4.0.0.nupkg.sha512", - "System.Reflection.Emit.ILGeneration.nuspec", - "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", - "lib/wp80/_._", - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", - "ref/dotnet/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml", - "ref/net45/_._", - "ref/wp80/_._" - ] - }, - "System.Reflection.Emit.Lightweight/4.0.0": { - "sha512": "DJZhHiOdkN08xJgsJfDjkuOreLLmMcU8qkEEqEHqyhkPUZMMQs0lE8R+6+68BAFWgcdzxtNu0YmIOtEug8j00w==", - "type": "package", - "path": "system.reflection.emit.lightweight/4.0.0", - "files": [ - "System.Reflection.Emit.Lightweight.4.0.0.nupkg.sha512", - "System.Reflection.Emit.Lightweight.nuspec", - "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.Lightweight.dll", - "lib/wp80/_._", - "ref/dotnet/System.Reflection.Emit.Lightweight.dll", - "ref/dotnet/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/de/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/es/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/fr/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/it/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/ja/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/ko/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/ru/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/zh-hans/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/zh-hant/System.Reflection.Emit.Lightweight.xml", - "ref/net45/_._", - "ref/wp80/_._" - ] - }, - "System.Reflection.Extensions/4.0.0": { - "sha512": "dbYaZWCyFAu1TGYUqR2n+Q+1casSHPR2vVW0WVNkXpZbrd2BXcZ7cpvpu9C98CTHtNmyfMWCLpCclDqly23t6A==", - "type": "package", - "path": "system.reflection.extensions/4.0.0", - "files": [ - "System.Reflection.Extensions.4.0.0.nupkg.sha512", - "System.Reflection.Extensions.nuspec", - "lib/DNXCore50/System.Reflection.Extensions.dll", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Extensions.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Reflection.Extensions.dll", - "ref/dotnet/System.Reflection.Extensions.xml", - "ref/dotnet/de/System.Reflection.Extensions.xml", - "ref/dotnet/es/System.Reflection.Extensions.xml", - "ref/dotnet/fr/System.Reflection.Extensions.xml", - "ref/dotnet/it/System.Reflection.Extensions.xml", - "ref/dotnet/ja/System.Reflection.Extensions.xml", - "ref/dotnet/ko/System.Reflection.Extensions.xml", - "ref/dotnet/ru/System.Reflection.Extensions.xml", - "ref/dotnet/zh-hans/System.Reflection.Extensions.xml", - "ref/dotnet/zh-hant/System.Reflection.Extensions.xml", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Extensions.dll", - "ref/netcore50/System.Reflection.Extensions.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll" - ] - }, - "System.Reflection.Metadata/1.0.22": { - "sha512": "ltoL/teiEdy5W9fyYdtFr2xJ/4nHyksXLK9dkPWx3ubnj7BVfsSWxvWTg9EaJUXjhWvS/AeTtugZA1/IDQyaPQ==", - "type": "package", - "path": "system.reflection.metadata/1.0.22", - "files": [ - "System.Reflection.Metadata.1.0.22.nupkg.sha512", - "System.Reflection.Metadata.nuspec", - "lib/dotnet/System.Reflection.Metadata.dll", - "lib/dotnet/System.Reflection.Metadata.xml", - "lib/portable-net45+win8/System.Reflection.Metadata.dll", - "lib/portable-net45+win8/System.Reflection.Metadata.xml" - ] - }, - "System.Reflection.Primitives/4.0.0": { - "sha512": "n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==", - "type": "package", - "path": "system.reflection.primitives/4.0.0", - "files": [ - "System.Reflection.Primitives.4.0.0.nupkg.sha512", - "System.Reflection.Primitives.nuspec", - "lib/DNXCore50/System.Reflection.Primitives.dll", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Primitives.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Reflection.Primitives.dll", - "ref/dotnet/System.Reflection.Primitives.xml", - "ref/dotnet/de/System.Reflection.Primitives.xml", - "ref/dotnet/es/System.Reflection.Primitives.xml", - "ref/dotnet/fr/System.Reflection.Primitives.xml", - "ref/dotnet/it/System.Reflection.Primitives.xml", - "ref/dotnet/ja/System.Reflection.Primitives.xml", - "ref/dotnet/ko/System.Reflection.Primitives.xml", - "ref/dotnet/ru/System.Reflection.Primitives.xml", - "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", - "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Primitives.dll", - "ref/netcore50/System.Reflection.Primitives.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll" - ] - }, - "System.Reflection.TypeExtensions/4.0.0": { - "sha512": "YRM/msNAM86hdxPyXcuZSzmTO0RQFh7YMEPBLTY8cqXvFPYIx2x99bOyPkuU81wRYQem1c1HTkImQ2DjbOBfew==", - "type": "package", - "path": "system.reflection.typeextensions/4.0.0", - "files": [ - "System.Reflection.TypeExtensions.4.0.0.nupkg.sha512", - "System.Reflection.TypeExtensions.nuspec", - "lib/DNXCore50/System.Reflection.TypeExtensions.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Reflection.TypeExtensions.dll", - "lib/netcore50/System.Reflection.TypeExtensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Reflection.TypeExtensions.dll", - "ref/dotnet/System.Reflection.TypeExtensions.xml", - "ref/dotnet/de/System.Reflection.TypeExtensions.xml", - "ref/dotnet/es/System.Reflection.TypeExtensions.xml", - "ref/dotnet/fr/System.Reflection.TypeExtensions.xml", - "ref/dotnet/it/System.Reflection.TypeExtensions.xml", - "ref/dotnet/ja/System.Reflection.TypeExtensions.xml", - "ref/dotnet/ko/System.Reflection.TypeExtensions.xml", - "ref/dotnet/ru/System.Reflection.TypeExtensions.xml", - "ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/net46/System.Reflection.TypeExtensions.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll" - ] - }, - "System.Resources.ResourceManager/4.0.0": { - "sha512": "qmqeZ4BJgjfU+G2JbrZt4Dk1LsMxO4t+f/9HarNY6w8pBgweO6jT+cknUH7c3qIrGvyUqraBhU45Eo6UtA0fAw==", - "type": "package", - "path": "system.resources.resourcemanager/4.0.0", - "files": [ - "System.Resources.ResourceManager.4.0.0.nupkg.sha512", - "System.Resources.ResourceManager.nuspec", - "lib/DNXCore50/System.Resources.ResourceManager.dll", - "lib/net45/_._", - "lib/netcore50/System.Resources.ResourceManager.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Resources.ResourceManager.dll", - "ref/dotnet/System.Resources.ResourceManager.xml", - "ref/dotnet/de/System.Resources.ResourceManager.xml", - "ref/dotnet/es/System.Resources.ResourceManager.xml", - "ref/dotnet/fr/System.Resources.ResourceManager.xml", - "ref/dotnet/it/System.Resources.ResourceManager.xml", - "ref/dotnet/ja/System.Resources.ResourceManager.xml", - "ref/dotnet/ko/System.Resources.ResourceManager.xml", - "ref/dotnet/ru/System.Resources.ResourceManager.xml", - "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", - "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", - "ref/net45/_._", - "ref/netcore50/System.Resources.ResourceManager.dll", - "ref/netcore50/System.Resources.ResourceManager.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll" - ] - }, - "System.Runtime/4.0.20": { - "sha512": "X7N/9Bz7jVPorqdVFO86ns1sX6MlQM+WTxELtx+Z4VG45x9+LKmWH0GRqjgKprUnVuwmfB9EJ9DQng14Z7/zwg==", - "type": "package", - "path": "system.runtime/4.0.20", - "files": [ - "System.Runtime.4.0.20.nupkg.sha512", - "System.Runtime.nuspec", - "lib/DNXCore50/System.Runtime.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Runtime.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Runtime.dll", - "ref/dotnet/System.Runtime.xml", - "ref/dotnet/de/System.Runtime.xml", - "ref/dotnet/es/System.Runtime.xml", - "ref/dotnet/fr/System.Runtime.xml", - "ref/dotnet/it/System.Runtime.xml", - "ref/dotnet/ja/System.Runtime.xml", - "ref/dotnet/ko/System.Runtime.xml", - "ref/dotnet/ru/System.Runtime.xml", - "ref/dotnet/zh-hans/System.Runtime.xml", - "ref/dotnet/zh-hant/System.Runtime.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.dll" - ] - }, - "System.Runtime.Extensions/4.0.10": { - "sha512": "5dsEwf3Iml7d5OZeT20iyOjT+r+okWpN7xI2v+R4cgd3WSj4DeRPTvPFjDpacbVW4skCAZ8B9hxXJYgkCFKJ1A==", - "type": "package", - "path": "system.runtime.extensions/4.0.10", - "files": [ - "System.Runtime.Extensions.4.0.10.nupkg.sha512", - "System.Runtime.Extensions.nuspec", - "lib/DNXCore50/System.Runtime.Extensions.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Runtime.Extensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Runtime.Extensions.dll", - "ref/dotnet/System.Runtime.Extensions.xml", - "ref/dotnet/de/System.Runtime.Extensions.xml", - "ref/dotnet/es/System.Runtime.Extensions.xml", - "ref/dotnet/fr/System.Runtime.Extensions.xml", - "ref/dotnet/it/System.Runtime.Extensions.xml", - "ref/dotnet/ja/System.Runtime.Extensions.xml", - "ref/dotnet/ko/System.Runtime.Extensions.xml", - "ref/dotnet/ru/System.Runtime.Extensions.xml", - "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", - "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll" - ] - }, - "System.Runtime.Handles/4.0.0": { - "sha512": "638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==", - "type": "package", - "path": "system.runtime.handles/4.0.0", - "files": [ - "System.Runtime.Handles.4.0.0.nupkg.sha512", - "System.Runtime.Handles.nuspec", - "lib/DNXCore50/System.Runtime.Handles.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Runtime.Handles.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Runtime.Handles.dll", - "ref/dotnet/System.Runtime.Handles.xml", - "ref/dotnet/de/System.Runtime.Handles.xml", - "ref/dotnet/es/System.Runtime.Handles.xml", - "ref/dotnet/fr/System.Runtime.Handles.xml", - "ref/dotnet/it/System.Runtime.Handles.xml", - "ref/dotnet/ja/System.Runtime.Handles.xml", - "ref/dotnet/ko/System.Runtime.Handles.xml", - "ref/dotnet/ru/System.Runtime.Handles.xml", - "ref/dotnet/zh-hans/System.Runtime.Handles.xml", - "ref/dotnet/zh-hant/System.Runtime.Handles.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll" - ] - }, - "System.Runtime.InteropServices/4.0.20": { - "sha512": "ZgDyBYfEnjWoz/viS6VOswA6XOkDSH2DzgbpczbW50RywhnCgTl+w3JEvtAiOGyIh8cyx1NJq80jsNBSUr8Pig==", - "type": "package", - "path": "system.runtime.interopservices/4.0.20", - "files": [ - "System.Runtime.InteropServices.4.0.20.nupkg.sha512", - "System.Runtime.InteropServices.nuspec", - "lib/DNXCore50/System.Runtime.InteropServices.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Runtime.InteropServices.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Runtime.InteropServices.dll", - "ref/dotnet/System.Runtime.InteropServices.xml", - "ref/dotnet/de/System.Runtime.InteropServices.xml", - "ref/dotnet/es/System.Runtime.InteropServices.xml", - "ref/dotnet/fr/System.Runtime.InteropServices.xml", - "ref/dotnet/it/System.Runtime.InteropServices.xml", - "ref/dotnet/ja/System.Runtime.InteropServices.xml", - "ref/dotnet/ko/System.Runtime.InteropServices.xml", - "ref/dotnet/ru/System.Runtime.InteropServices.xml", - "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml", - "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll" - ] - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { - "sha512": "K5MGSvw/sGPKQYdOVqSpsVbHBE8HccHIDEhUNjM1lui65KGF/slNZfijGU87ggQiVXTI802ebKiOYBkwiLotow==", - "type": "package", - "path": "system.runtime.interopservices.windowsruntime/4.0.0", - "files": [ - "System.Runtime.InteropServices.WindowsRuntime.4.0.0.nupkg.sha512", - "System.Runtime.InteropServices.WindowsRuntime.nuspec", - "lib/net45/_._", - "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Runtime.InteropServices.WindowsRuntime.dll", - "ref/dotnet/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/de/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/es/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/fr/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/it/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/ja/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/ko/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/ru/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/zh-hans/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/zh-hant/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/net45/_._", - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll", - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll" - ] - }, - "System.Runtime.Numerics/4.0.0": { - "sha512": "aAYGEOE01nabQLufQ4YO8WuSyZzOqGcksi8m1BRW8ppkmssR7en8TqiXcBkB2gTkCnKG/Ai2NQY8CgdmgZw/fw==", - "type": "package", - "path": "system.runtime.numerics/4.0.0", - "files": [ - "System.Runtime.Numerics.4.0.0.nupkg.sha512", - "System.Runtime.Numerics.nuspec", - "lib/dotnet/System.Runtime.Numerics.dll", - "lib/net45/_._", - "lib/netcore50/System.Runtime.Numerics.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Runtime.Numerics.dll", - "ref/dotnet/System.Runtime.Numerics.xml", - "ref/dotnet/de/System.Runtime.Numerics.xml", - "ref/dotnet/es/System.Runtime.Numerics.xml", - "ref/dotnet/fr/System.Runtime.Numerics.xml", - "ref/dotnet/it/System.Runtime.Numerics.xml", - "ref/dotnet/ja/System.Runtime.Numerics.xml", - "ref/dotnet/ko/System.Runtime.Numerics.xml", - "ref/dotnet/ru/System.Runtime.Numerics.xml", - "ref/dotnet/zh-hans/System.Runtime.Numerics.xml", - "ref/dotnet/zh-hant/System.Runtime.Numerics.xml", - "ref/net45/_._", - "ref/netcore50/System.Runtime.Numerics.dll", - "ref/netcore50/System.Runtime.Numerics.xml", - "ref/win8/_._", - "ref/wpa81/_._" - ] - }, - "System.Runtime.Serialization.Json/4.0.0": { - "sha512": "emhWMQP3sdtkAhD0TOeP3FfjS57sfQMQ2sqA6f2Yj5Gd9jkHV4KsQ2TsoJjghca6d8fur7+REQ6ILBXVdGf/0g==", - "type": "package", - "path": "system.runtime.serialization.json/4.0.0", - "files": [ - "System.Runtime.Serialization.Json.4.0.0.nupkg.sha512", - "System.Runtime.Serialization.Json.nuspec", - "lib/DNXCore50/System.Runtime.Serialization.Json.dll", - "lib/net45/_._", - "lib/netcore50/System.Runtime.Serialization.Json.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Runtime.Serialization.Json.dll", - "ref/dotnet/System.Runtime.Serialization.Json.xml", - "ref/dotnet/de/System.Runtime.Serialization.Json.xml", - "ref/dotnet/es/System.Runtime.Serialization.Json.xml", - "ref/dotnet/fr/System.Runtime.Serialization.Json.xml", - "ref/dotnet/it/System.Runtime.Serialization.Json.xml", - "ref/dotnet/ja/System.Runtime.Serialization.Json.xml", - "ref/dotnet/ko/System.Runtime.Serialization.Json.xml", - "ref/dotnet/ru/System.Runtime.Serialization.Json.xml", - "ref/dotnet/zh-hans/System.Runtime.Serialization.Json.xml", - "ref/dotnet/zh-hant/System.Runtime.Serialization.Json.xml", - "ref/net45/_._", - "ref/netcore50/System.Runtime.Serialization.Json.dll", - "ref/netcore50/System.Runtime.Serialization.Json.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll" - ] - }, - "System.Runtime.Serialization.Primitives/4.0.10": { - "sha512": "NPc8DZIomf5tGjYtz/KTHI01IPcVlypfhCux32AbLPDjTotdvL8TpKRwMyQJ6Kh08yprRVH7uBD1PdJiuoFzag==", - "type": "package", - "path": "system.runtime.serialization.primitives/4.0.10", - "files": [ - "System.Runtime.Serialization.Primitives.4.0.10.nupkg.sha512", - "System.Runtime.Serialization.Primitives.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.Runtime.Serialization.Primitives.dll", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Runtime.Serialization.Primitives.dll", - "ref/dotnet/System.Runtime.Serialization.Primitives.xml", - "ref/dotnet/de/System.Runtime.Serialization.Primitives.xml", - "ref/dotnet/es/System.Runtime.Serialization.Primitives.xml", - "ref/dotnet/fr/System.Runtime.Serialization.Primitives.xml", - "ref/dotnet/it/System.Runtime.Serialization.Primitives.xml", - "ref/dotnet/ja/System.Runtime.Serialization.Primitives.xml", - "ref/dotnet/ko/System.Runtime.Serialization.Primitives.xml", - "ref/dotnet/ru/System.Runtime.Serialization.Primitives.xml", - "ref/dotnet/zh-hans/System.Runtime.Serialization.Primitives.xml", - "ref/dotnet/zh-hant/System.Runtime.Serialization.Primitives.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Runtime.Serialization.Xml/4.0.10": { - "sha512": "xsy7XbH8RTpKoDPNcibSGCOpujsmwUmOWAby3PssqkZFpLBXUbDO2s6JKITRjxejET2g0PK8t+mdIvu3xmUuKA==", - "type": "package", - "path": "system.runtime.serialization.xml/4.0.10", - "files": [ - "System.Runtime.Serialization.Xml.4.0.10.nupkg.sha512", - "System.Runtime.Serialization.Xml.nuspec", - "lib/DNXCore50/System.Runtime.Serialization.Xml.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Runtime.Serialization.Xml.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Runtime.Serialization.Xml.dll", - "ref/dotnet/System.Runtime.Serialization.Xml.xml", - "ref/dotnet/de/System.Runtime.Serialization.Xml.xml", - "ref/dotnet/es/System.Runtime.Serialization.Xml.xml", - "ref/dotnet/fr/System.Runtime.Serialization.Xml.xml", - "ref/dotnet/it/System.Runtime.Serialization.Xml.xml", - "ref/dotnet/ja/System.Runtime.Serialization.Xml.xml", - "ref/dotnet/ko/System.Runtime.Serialization.Xml.xml", - "ref/dotnet/ru/System.Runtime.Serialization.Xml.xml", - "ref/dotnet/zh-hans/System.Runtime.Serialization.Xml.xml", - "ref/dotnet/zh-hant/System.Runtime.Serialization.Xml.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll" - ] - }, - "System.Runtime.WindowsRuntime/4.0.10": { - "sha512": "9w6ypdnEw8RrLRlxTbLAYrap4eL1xIQeNoOaumQVOQ8TTD/5g9FGrBtY3KLiGxAPieN9AwAAEIDkugU85Cwuvg==", - "type": "package", - "path": "system.runtime.windowsruntime/4.0.10", - "files": [ - "System.Runtime.WindowsRuntime.4.0.10.nupkg.sha512", - "System.Runtime.WindowsRuntime.nuspec", - "lib/netcore50/System.Runtime.WindowsRuntime.dll", - "lib/win81/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Runtime.WindowsRuntime.dll", - "ref/dotnet/System.Runtime.WindowsRuntime.xml", - "ref/dotnet/de/System.Runtime.WindowsRuntime.xml", - "ref/dotnet/es/System.Runtime.WindowsRuntime.xml", - "ref/dotnet/fr/System.Runtime.WindowsRuntime.xml", - "ref/dotnet/it/System.Runtime.WindowsRuntime.xml", - "ref/dotnet/ja/System.Runtime.WindowsRuntime.xml", - "ref/dotnet/ko/System.Runtime.WindowsRuntime.xml", - "ref/dotnet/ru/System.Runtime.WindowsRuntime.xml", - "ref/dotnet/zh-hans/System.Runtime.WindowsRuntime.xml", - "ref/dotnet/zh-hant/System.Runtime.WindowsRuntime.xml", - "ref/netcore50/System.Runtime.WindowsRuntime.dll", - "ref/netcore50/System.Runtime.WindowsRuntime.xml", - "ref/win81/_._", - "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll" - ] - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { - "sha512": "2GY3fkXBMQOyyO9ovaH46CN6MD2ck/Gvk4VNAgVDvtmfO3HXYFNd+bB05WhVcJrHKbfKZNwfwZKpYZ+OsVFsLw==", - "type": "package", - "path": "system.runtime.windowsruntime.ui.xaml/4.0.0", - "files": [ - "System.Runtime.WindowsRuntime.UI.Xaml.4.0.0.nupkg.sha512", - "System.Runtime.WindowsRuntime.UI.Xaml.nuspec", - "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Runtime.WindowsRuntime.UI.Xaml.dll", - "ref/dotnet/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/dotnet/de/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/dotnet/es/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/dotnet/fr/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/dotnet/it/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/dotnet/ja/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/dotnet/ko/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/dotnet/ru/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/dotnet/zh-hans/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/dotnet/zh-hant/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll", - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/win8/_._", - "ref/wpa81/_._" - ] - }, - "System.Security.Claims/4.0.0": { - "sha512": "94NFR/7JN3YdyTH7hl2iSvYmdA8aqShriTHectcK+EbizT71YczMaG6LuqJBQP/HWo66AQyikYYM9aw+4EzGXg==", - "type": "package", - "path": "system.security.claims/4.0.0", - "files": [ - "System.Security.Claims.4.0.0.nupkg.sha512", - "System.Security.Claims.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.Security.Claims.dll", - "lib/net46/System.Security.Claims.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Security.Claims.dll", - "ref/dotnet/System.Security.Claims.xml", - "ref/dotnet/de/System.Security.Claims.xml", - "ref/dotnet/es/System.Security.Claims.xml", - "ref/dotnet/fr/System.Security.Claims.xml", - "ref/dotnet/it/System.Security.Claims.xml", - "ref/dotnet/ja/System.Security.Claims.xml", - "ref/dotnet/ko/System.Security.Claims.xml", - "ref/dotnet/ru/System.Security.Claims.xml", - "ref/dotnet/zh-hans/System.Security.Claims.xml", - "ref/dotnet/zh-hant/System.Security.Claims.xml", - "ref/net46/System.Security.Claims.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Security.Principal/4.0.0": { - "sha512": "FOhq3jUOONi6fp5j3nPYJMrKtSJlqAURpjiO3FaDIV4DJNEYymWW5uh1pfxySEB8dtAW+I66IypzNge/w9OzZQ==", - "type": "package", - "path": "system.security.principal/4.0.0", - "files": [ - "System.Security.Principal.4.0.0.nupkg.sha512", - "System.Security.Principal.nuspec", - "lib/dotnet/System.Security.Principal.dll", - "lib/net45/_._", - "lib/netcore50/System.Security.Principal.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Security.Principal.dll", - "ref/dotnet/System.Security.Principal.xml", - "ref/dotnet/de/System.Security.Principal.xml", - "ref/dotnet/es/System.Security.Principal.xml", - "ref/dotnet/fr/System.Security.Principal.xml", - "ref/dotnet/it/System.Security.Principal.xml", - "ref/dotnet/ja/System.Security.Principal.xml", - "ref/dotnet/ko/System.Security.Principal.xml", - "ref/dotnet/ru/System.Security.Principal.xml", - "ref/dotnet/zh-hans/System.Security.Principal.xml", - "ref/dotnet/zh-hant/System.Security.Principal.xml", - "ref/net45/_._", - "ref/netcore50/System.Security.Principal.dll", - "ref/netcore50/System.Security.Principal.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._" - ] - }, - "System.ServiceModel.Duplex/4.0.0": { - "sha512": "JFeDn+IsiwAVJkNNnM7MLefJOnzYhovaHnjk3lzEnUWkYZJeAKrcgLdK6GE2GNjb5mEV8Pad/E0JcA8eCr3eWQ==", - "type": "package", - "path": "system.servicemodel.duplex/4.0.0", - "files": [ - "System.ServiceModel.Duplex.4.0.0.nupkg.sha512", - "System.ServiceModel.Duplex.nuspec", - "lib/DNXCore50/System.ServiceModel.Duplex.dll", - "lib/net45/_._", - "lib/netcore50/System.ServiceModel.Duplex.dll", - "lib/win8/_._", - "ref/dotnet/System.ServiceModel.Duplex.dll", - "ref/dotnet/System.ServiceModel.Duplex.xml", - "ref/dotnet/de/System.ServiceModel.Duplex.xml", - "ref/dotnet/es/System.ServiceModel.Duplex.xml", - "ref/dotnet/fr/System.ServiceModel.Duplex.xml", - "ref/dotnet/it/System.ServiceModel.Duplex.xml", - "ref/dotnet/ja/System.ServiceModel.Duplex.xml", - "ref/dotnet/ko/System.ServiceModel.Duplex.xml", - "ref/dotnet/ru/System.ServiceModel.Duplex.xml", - "ref/dotnet/zh-hans/System.ServiceModel.Duplex.xml", - "ref/dotnet/zh-hant/System.ServiceModel.Duplex.xml", - "ref/net45/_._", - "ref/netcore50/System.ServiceModel.Duplex.dll", - "ref/netcore50/System.ServiceModel.Duplex.xml", - "ref/win8/_._" - ] - }, - "System.ServiceModel.Http/4.0.10": { - "sha512": "Vyl7lmvMlXJamtnDugoXuAgAQGSqtA7omK3zDBYByhbYeBC2hRBchgyXox7e5vEO+29TeB1IpoLWQGb7tO9h6A==", - "type": "package", - "path": "system.servicemodel.http/4.0.10", - "files": [ - "System.ServiceModel.Http.4.0.10.nupkg.sha512", - "System.ServiceModel.Http.nuspec", - "lib/DNXCore50/System.ServiceModel.Http.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.ServiceModel.Http.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.ServiceModel.Http.dll", - "ref/dotnet/System.ServiceModel.Http.xml", - "ref/dotnet/de/System.ServiceModel.Http.xml", - "ref/dotnet/es/System.ServiceModel.Http.xml", - "ref/dotnet/fr/System.ServiceModel.Http.xml", - "ref/dotnet/it/System.ServiceModel.Http.xml", - "ref/dotnet/ja/System.ServiceModel.Http.xml", - "ref/dotnet/ko/System.ServiceModel.Http.xml", - "ref/dotnet/ru/System.ServiceModel.Http.xml", - "ref/dotnet/zh-hans/System.ServiceModel.Http.xml", - "ref/dotnet/zh-hant/System.ServiceModel.Http.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.ServiceModel.NetTcp/4.0.0": { - "sha512": "lV2Cdcso9jOS0KBtgHZHzTLe/Lx/ERdPcvF4dlepUie6/+BOMYTOgg2C7OdpIjp3fwUNXq8nhU+IilmEyjuf/A==", - "type": "package", - "path": "system.servicemodel.nettcp/4.0.0", - "files": [ - "System.ServiceModel.NetTcp.4.0.0.nupkg.sha512", - "System.ServiceModel.NetTcp.nuspec", - "lib/DNXCore50/System.ServiceModel.NetTcp.dll", - "lib/net45/_._", - "lib/netcore50/System.ServiceModel.NetTcp.dll", - "lib/win8/_._", - "ref/dotnet/System.ServiceModel.NetTcp.dll", - "ref/dotnet/System.ServiceModel.NetTcp.xml", - "ref/dotnet/de/System.ServiceModel.NetTcp.xml", - "ref/dotnet/es/System.ServiceModel.NetTcp.xml", - "ref/dotnet/fr/System.ServiceModel.NetTcp.xml", - "ref/dotnet/it/System.ServiceModel.NetTcp.xml", - "ref/dotnet/ja/System.ServiceModel.NetTcp.xml", - "ref/dotnet/ko/System.ServiceModel.NetTcp.xml", - "ref/dotnet/ru/System.ServiceModel.NetTcp.xml", - "ref/dotnet/zh-hans/System.ServiceModel.NetTcp.xml", - "ref/dotnet/zh-hant/System.ServiceModel.NetTcp.xml", - "ref/net45/_._", - "ref/netcore50/System.ServiceModel.NetTcp.dll", - "ref/netcore50/System.ServiceModel.NetTcp.xml", - "ref/win8/_._" - ] - }, - "System.ServiceModel.Primitives/4.0.0": { - "sha512": "uF5VYQWR07LgiZkzUr8qjwvqOaIAfwU566MneD4WuC14d8FLJNsAgCJUYhBGB7COjH7HTqnP9ZFmr6c+L83Stg==", - "type": "package", - "path": "system.servicemodel.primitives/4.0.0", - "files": [ - "System.ServiceModel.Primitives.4.0.0.nupkg.sha512", - "System.ServiceModel.Primitives.nuspec", - "lib/DNXCore50/System.ServiceModel.Primitives.dll", - "lib/net45/_._", - "lib/netcore50/System.ServiceModel.Primitives.dll", - "lib/win8/_._", - "ref/dotnet/System.ServiceModel.Primitives.dll", - "ref/dotnet/System.ServiceModel.Primitives.xml", - "ref/dotnet/de/System.ServiceModel.Primitives.xml", - "ref/dotnet/es/System.ServiceModel.Primitives.xml", - "ref/dotnet/fr/System.ServiceModel.Primitives.xml", - "ref/dotnet/it/System.ServiceModel.Primitives.xml", - "ref/dotnet/ja/System.ServiceModel.Primitives.xml", - "ref/dotnet/ko/System.ServiceModel.Primitives.xml", - "ref/dotnet/ru/System.ServiceModel.Primitives.xml", - "ref/dotnet/zh-hans/System.ServiceModel.Primitives.xml", - "ref/dotnet/zh-hant/System.ServiceModel.Primitives.xml", - "ref/net45/_._", - "ref/netcore50/System.ServiceModel.Primitives.dll", - "ref/netcore50/System.ServiceModel.Primitives.xml", - "ref/win8/_._" - ] - }, - "System.ServiceModel.Security/4.0.0": { - "sha512": "sPVzsnd8w/TJsW/4sYA9eIGP+RtlpN0AhKLGKf9ywdGGmHPi0kkuX2mx412dM3GN0e4oifuISwvZqby/sI8Feg==", - "type": "package", - "path": "system.servicemodel.security/4.0.0", - "files": [ - "System.ServiceModel.Security.4.0.0.nupkg.sha512", - "System.ServiceModel.Security.nuspec", - "lib/DNXCore50/System.ServiceModel.Security.dll", - "lib/net45/_._", - "lib/netcore50/System.ServiceModel.Security.dll", - "lib/win8/_._", - "ref/dotnet/System.ServiceModel.Security.dll", - "ref/dotnet/System.ServiceModel.Security.xml", - "ref/dotnet/de/System.ServiceModel.Security.xml", - "ref/dotnet/es/System.ServiceModel.Security.xml", - "ref/dotnet/fr/System.ServiceModel.Security.xml", - "ref/dotnet/it/System.ServiceModel.Security.xml", - "ref/dotnet/ja/System.ServiceModel.Security.xml", - "ref/dotnet/ko/System.ServiceModel.Security.xml", - "ref/dotnet/ru/System.ServiceModel.Security.xml", - "ref/dotnet/zh-hans/System.ServiceModel.Security.xml", - "ref/dotnet/zh-hant/System.ServiceModel.Security.xml", - "ref/net45/_._", - "ref/netcore50/System.ServiceModel.Security.dll", - "ref/netcore50/System.ServiceModel.Security.xml", - "ref/win8/_._" - ] - }, - "System.Text.Encoding/4.0.10": { - "sha512": "fNlSFgy4OuDlJrP9SFFxMlaLazq6ipv15sU5TiEgg9UCVnA/OgoVUfymFp4AOk1jOkW5SVxWbeeIUptcM+m/Vw==", - "type": "package", - "path": "system.text.encoding/4.0.10", - "files": [ - "System.Text.Encoding.4.0.10.nupkg.sha512", - "System.Text.Encoding.nuspec", - "lib/DNXCore50/System.Text.Encoding.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Text.Encoding.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Text.Encoding.dll", - "ref/dotnet/System.Text.Encoding.xml", - "ref/dotnet/de/System.Text.Encoding.xml", - "ref/dotnet/es/System.Text.Encoding.xml", - "ref/dotnet/fr/System.Text.Encoding.xml", - "ref/dotnet/it/System.Text.Encoding.xml", - "ref/dotnet/ja/System.Text.Encoding.xml", - "ref/dotnet/ko/System.Text.Encoding.xml", - "ref/dotnet/ru/System.Text.Encoding.xml", - "ref/dotnet/zh-hans/System.Text.Encoding.xml", - "ref/dotnet/zh-hant/System.Text.Encoding.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll" - ] - }, - "System.Text.Encoding.CodePages/4.0.0": { - "sha512": "ZHBTr1AXLjY9OuYR7pKx5xfN6QFye1kgd5QAbGrvfCOu7yxRnJs3VUaxERe1fOlnF0mi/xD/Dvb3T3x3HNuPWQ==", - "type": "package", - "path": "system.text.encoding.codepages/4.0.0", - "files": [ - "System.Text.Encoding.CodePages.4.0.0.nupkg.sha512", - "System.Text.Encoding.CodePages.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.Text.Encoding.CodePages.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Text.Encoding.CodePages.dll", - "ref/dotnet/System.Text.Encoding.CodePages.xml", - "ref/dotnet/de/System.Text.Encoding.CodePages.xml", - "ref/dotnet/es/System.Text.Encoding.CodePages.xml", - "ref/dotnet/fr/System.Text.Encoding.CodePages.xml", - "ref/dotnet/it/System.Text.Encoding.CodePages.xml", - "ref/dotnet/ja/System.Text.Encoding.CodePages.xml", - "ref/dotnet/ko/System.Text.Encoding.CodePages.xml", - "ref/dotnet/ru/System.Text.Encoding.CodePages.xml", - "ref/dotnet/zh-hans/System.Text.Encoding.CodePages.xml", - "ref/dotnet/zh-hant/System.Text.Encoding.CodePages.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Text.Encoding.Extensions/4.0.10": { - "sha512": "TZvlwXMxKo3bSRIcsWZLCIzIhLbvlz+mGeKYRZv/zUiSoQzGOwkYeBu6hOw2XPQgKqT0F4Rv8zqKdvmp2fWKYg==", - "type": "package", - "path": "system.text.encoding.extensions/4.0.10", - "files": [ - "System.Text.Encoding.Extensions.4.0.10.nupkg.sha512", - "System.Text.Encoding.Extensions.nuspec", - "lib/DNXCore50/System.Text.Encoding.Extensions.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Text.Encoding.Extensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Text.Encoding.Extensions.dll", - "ref/dotnet/System.Text.Encoding.Extensions.xml", - "ref/dotnet/de/System.Text.Encoding.Extensions.xml", - "ref/dotnet/es/System.Text.Encoding.Extensions.xml", - "ref/dotnet/fr/System.Text.Encoding.Extensions.xml", - "ref/dotnet/it/System.Text.Encoding.Extensions.xml", - "ref/dotnet/ja/System.Text.Encoding.Extensions.xml", - "ref/dotnet/ko/System.Text.Encoding.Extensions.xml", - "ref/dotnet/ru/System.Text.Encoding.Extensions.xml", - "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll" - ] - }, - "System.Text.RegularExpressions/4.0.10": { - "sha512": "0vDuHXJePpfMCecWBNOabOKCvzfTbFMNcGgklt3l5+RqHV5SzmF7RUVpuet8V0rJX30ROlL66xdehw2Rdsn2DA==", - "type": "package", - "path": "system.text.regularexpressions/4.0.10", - "files": [ - "System.Text.RegularExpressions.4.0.10.nupkg.sha512", - "System.Text.RegularExpressions.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.Text.RegularExpressions.dll", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Text.RegularExpressions.dll", - "ref/dotnet/System.Text.RegularExpressions.xml", - "ref/dotnet/de/System.Text.RegularExpressions.xml", - "ref/dotnet/es/System.Text.RegularExpressions.xml", - "ref/dotnet/fr/System.Text.RegularExpressions.xml", - "ref/dotnet/it/System.Text.RegularExpressions.xml", - "ref/dotnet/ja/System.Text.RegularExpressions.xml", - "ref/dotnet/ko/System.Text.RegularExpressions.xml", - "ref/dotnet/ru/System.Text.RegularExpressions.xml", - "ref/dotnet/zh-hans/System.Text.RegularExpressions.xml", - "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Threading/4.0.10": { - "sha512": "0w6pRxIEE7wuiOJeKabkDgeIKmqf4ER1VNrs6qFwHnooEE78yHwi/bKkg5Jo8/pzGLm0xQJw0nEmPXt1QBAIUA==", - "type": "package", - "path": "system.threading/4.0.10", - "files": [ - "System.Threading.4.0.10.nupkg.sha512", - "System.Threading.nuspec", - "lib/DNXCore50/System.Threading.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Threading.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Threading.dll", - "ref/dotnet/System.Threading.xml", - "ref/dotnet/de/System.Threading.xml", - "ref/dotnet/es/System.Threading.xml", - "ref/dotnet/fr/System.Threading.xml", - "ref/dotnet/it/System.Threading.xml", - "ref/dotnet/ja/System.Threading.xml", - "ref/dotnet/ko/System.Threading.xml", - "ref/dotnet/ru/System.Threading.xml", - "ref/dotnet/zh-hans/System.Threading.xml", - "ref/dotnet/zh-hant/System.Threading.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Threading.dll" - ] - }, - "System.Threading.Overlapped/4.0.0": { - "sha512": "X5LuQFhM5FTqaez3eXKJ9CbfSGZ7wj6j4hSVtxct3zmwQXLqG95qoWdvILcgN7xtrDOBIFtpiyDg0vmoI0jE2A==", - "type": "package", - "path": "system.threading.overlapped/4.0.0", - "files": [ - "System.Threading.Overlapped.4.0.0.nupkg.sha512", - "System.Threading.Overlapped.nuspec", - "lib/DNXCore50/System.Threading.Overlapped.dll", - "lib/net46/System.Threading.Overlapped.dll", - "lib/netcore50/System.Threading.Overlapped.dll", - "ref/dotnet/System.Threading.Overlapped.dll", - "ref/dotnet/System.Threading.Overlapped.xml", - "ref/dotnet/de/System.Threading.Overlapped.xml", - "ref/dotnet/es/System.Threading.Overlapped.xml", - "ref/dotnet/fr/System.Threading.Overlapped.xml", - "ref/dotnet/it/System.Threading.Overlapped.xml", - "ref/dotnet/ja/System.Threading.Overlapped.xml", - "ref/dotnet/ko/System.Threading.Overlapped.xml", - "ref/dotnet/ru/System.Threading.Overlapped.xml", - "ref/dotnet/zh-hans/System.Threading.Overlapped.xml", - "ref/dotnet/zh-hant/System.Threading.Overlapped.xml", - "ref/net46/System.Threading.Overlapped.dll" - ] - }, - "System.Threading.Tasks/4.0.10": { - "sha512": "NOwJGDfk79jR0bnzosbXLVD/PdI8KzBeESoa3CofEM5v9R5EBfcI0Jyf18stx+0IYV9okmDIDxVtxq9TbnR9bQ==", - "type": "package", - "path": "system.threading.tasks/4.0.10", - "files": [ - "System.Threading.Tasks.4.0.10.nupkg.sha512", - "System.Threading.Tasks.nuspec", - "lib/DNXCore50/System.Threading.Tasks.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Threading.Tasks.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Threading.Tasks.dll", - "ref/dotnet/System.Threading.Tasks.xml", - "ref/dotnet/de/System.Threading.Tasks.xml", - "ref/dotnet/es/System.Threading.Tasks.xml", - "ref/dotnet/fr/System.Threading.Tasks.xml", - "ref/dotnet/it/System.Threading.Tasks.xml", - "ref/dotnet/ja/System.Threading.Tasks.xml", - "ref/dotnet/ko/System.Threading.Tasks.xml", - "ref/dotnet/ru/System.Threading.Tasks.xml", - "ref/dotnet/zh-hans/System.Threading.Tasks.xml", - "ref/dotnet/zh-hant/System.Threading.Tasks.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll" - ] - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "sha512": "Y5/Dj+tYlDxHBwie7bFKp3+1uSG4vqTJRF7Zs7kaUQ3ahYClffCTxvgjrJyPclC+Le55uE7bMLgjZQVOQr3Jfg==", - "type": "package", - "path": "system.threading.tasks.dataflow/4.5.25", - "files": [ - "System.Threading.Tasks.Dataflow.4.5.25.nupkg.sha512", - "System.Threading.Tasks.Dataflow.nuspec", - "lib/dotnet/System.Threading.Tasks.Dataflow.XML", - "lib/dotnet/System.Threading.Tasks.Dataflow.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.XML", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.dll", - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.XML", - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll" - ] - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "sha512": "GXDhjPhF3nE4RtDia0W6JR4UMdmhOyt9ibHmsNV6GLRT4HAGqU636Teo4tqvVQOFp2R6b1ffxPXiRaoqtzGxuA==", - "type": "package", - "path": "system.threading.tasks.parallel/4.0.0", - "files": [ - "System.Threading.Tasks.Parallel.4.0.0.nupkg.sha512", - "System.Threading.Tasks.Parallel.nuspec", - "lib/dotnet/System.Threading.Tasks.Parallel.dll", - "lib/net45/_._", - "lib/netcore50/System.Threading.Tasks.Parallel.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Threading.Tasks.Parallel.dll", - "ref/dotnet/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/de/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/es/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/fr/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/it/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/ja/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/ko/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/ru/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/zh-hans/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/zh-hant/System.Threading.Tasks.Parallel.xml", - "ref/net45/_._", - "ref/netcore50/System.Threading.Tasks.Parallel.dll", - "ref/netcore50/System.Threading.Tasks.Parallel.xml", - "ref/win8/_._", - "ref/wpa81/_._" - ] - }, - "System.Threading.Timer/4.0.0": { - "sha512": "BIdJH5/e4FnVl7TkRUiE3pWytp7OYiRUGtwUbyLewS/PhKiLepFetdtlW+FvDYOVn60Q2NMTrhHhJ51q+sVW5g==", - "type": "package", - "path": "system.threading.timer/4.0.0", - "files": [ - "System.Threading.Timer.4.0.0.nupkg.sha512", - "System.Threading.Timer.nuspec", - "lib/DNXCore50/System.Threading.Timer.dll", - "lib/net451/_._", - "lib/netcore50/System.Threading.Timer.dll", - "lib/win81/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Threading.Timer.dll", - "ref/dotnet/System.Threading.Timer.xml", - "ref/dotnet/de/System.Threading.Timer.xml", - "ref/dotnet/es/System.Threading.Timer.xml", - "ref/dotnet/fr/System.Threading.Timer.xml", - "ref/dotnet/it/System.Threading.Timer.xml", - "ref/dotnet/ja/System.Threading.Timer.xml", - "ref/dotnet/ko/System.Threading.Timer.xml", - "ref/dotnet/ru/System.Threading.Timer.xml", - "ref/dotnet/zh-hans/System.Threading.Timer.xml", - "ref/dotnet/zh-hant/System.Threading.Timer.xml", - "ref/net451/_._", - "ref/netcore50/System.Threading.Timer.dll", - "ref/netcore50/System.Threading.Timer.xml", - "ref/win81/_._", - "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll" - ] - }, - "System.Xml.ReaderWriter/4.0.10": { - "sha512": "VdmWWMH7otrYV7D+cviUo7XjX0jzDnD/lTGSZTlZqfIQ5PhXk85j+6P0TK9od3PnOd5ZIM+pOk01G/J+3nh9/w==", - "type": "package", - "path": "system.xml.readerwriter/4.0.10", - "files": [ - "System.Xml.ReaderWriter.4.0.10.nupkg.sha512", - "System.Xml.ReaderWriter.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.Xml.ReaderWriter.dll", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Xml.ReaderWriter.dll", - "ref/dotnet/System.Xml.ReaderWriter.xml", - "ref/dotnet/de/System.Xml.ReaderWriter.xml", - "ref/dotnet/es/System.Xml.ReaderWriter.xml", - "ref/dotnet/fr/System.Xml.ReaderWriter.xml", - "ref/dotnet/it/System.Xml.ReaderWriter.xml", - "ref/dotnet/ja/System.Xml.ReaderWriter.xml", - "ref/dotnet/ko/System.Xml.ReaderWriter.xml", - "ref/dotnet/ru/System.Xml.ReaderWriter.xml", - "ref/dotnet/zh-hans/System.Xml.ReaderWriter.xml", - "ref/dotnet/zh-hant/System.Xml.ReaderWriter.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Xml.XDocument/4.0.10": { - "sha512": "+ej0g0INnXDjpS2tDJsLO7/BjyBzC+TeBXLeoGnvRrm4AuBH9PhBjjZ1IuKWOhCkxPkFognUOKhZHS2glIOlng==", - "type": "package", - "path": "system.xml.xdocument/4.0.10", - "files": [ - "System.Xml.XDocument.4.0.10.nupkg.sha512", - "System.Xml.XDocument.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.Xml.XDocument.dll", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Xml.XDocument.dll", - "ref/dotnet/System.Xml.XDocument.xml", - "ref/dotnet/de/System.Xml.XDocument.xml", - "ref/dotnet/es/System.Xml.XDocument.xml", - "ref/dotnet/fr/System.Xml.XDocument.xml", - "ref/dotnet/it/System.Xml.XDocument.xml", - "ref/dotnet/ja/System.Xml.XDocument.xml", - "ref/dotnet/ko/System.Xml.XDocument.xml", - "ref/dotnet/ru/System.Xml.XDocument.xml", - "ref/dotnet/zh-hans/System.Xml.XDocument.xml", - "ref/dotnet/zh-hant/System.Xml.XDocument.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Xml.XmlDocument/4.0.0": { - "sha512": "H5qTx2+AXgaKE5wehU1ZYeYPFpp/rfFh69/937NvwCrDqbIkvJRmIFyKKpkoMI6gl9hGfuVizfIudVTMyowCXw==", - "type": "package", - "path": "system.xml.xmldocument/4.0.0", - "files": [ - "System.Xml.XmlDocument.4.0.0.nupkg.sha512", - "System.Xml.XmlDocument.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.Xml.XmlDocument.dll", - "lib/net46/System.Xml.XmlDocument.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Xml.XmlDocument.dll", - "ref/dotnet/System.Xml.XmlDocument.xml", - "ref/dotnet/de/System.Xml.XmlDocument.xml", - "ref/dotnet/es/System.Xml.XmlDocument.xml", - "ref/dotnet/fr/System.Xml.XmlDocument.xml", - "ref/dotnet/it/System.Xml.XmlDocument.xml", - "ref/dotnet/ja/System.Xml.XmlDocument.xml", - "ref/dotnet/ko/System.Xml.XmlDocument.xml", - "ref/dotnet/ru/System.Xml.XmlDocument.xml", - "ref/dotnet/zh-hans/System.Xml.XmlDocument.xml", - "ref/dotnet/zh-hant/System.Xml.XmlDocument.xml", - "ref/net46/System.Xml.XmlDocument.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Xml.XmlSerializer/4.0.10": { - "sha512": "OKhE6vruk88z/hl0lmfrMvXteTASgJUagu6PT6S10i9uLbvDR3pTwB6jVgiwa2D2qtTB+eneZbS9jljhPXhTtg==", - "type": "package", - "path": "system.xml.xmlserializer/4.0.10", - "files": [ - "System.Xml.XmlSerializer.4.0.10.nupkg.sha512", - "System.Xml.XmlSerializer.nuspec", - "lib/DNXCore50/System.Xml.XmlSerializer.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Xml.XmlSerializer.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Xml.XmlSerializer.dll", - "ref/dotnet/System.Xml.XmlSerializer.xml", - "ref/dotnet/de/System.Xml.XmlSerializer.xml", - "ref/dotnet/es/System.Xml.XmlSerializer.xml", - "ref/dotnet/fr/System.Xml.XmlSerializer.xml", - "ref/dotnet/it/System.Xml.XmlSerializer.xml", - "ref/dotnet/ja/System.Xml.XmlSerializer.xml", - "ref/dotnet/ko/System.Xml.XmlSerializer.xml", - "ref/dotnet/ru/System.Xml.XmlSerializer.xml", - "ref/dotnet/zh-hans/System.Xml.XmlSerializer.xml", - "ref/dotnet/zh-hant/System.Xml.XmlSerializer.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll" - ] - }, - "Win2D.uwp/1.3.0": { - "sha512": "wwMHiigyftTU7W98PTWwg7/i4DT4zIMW58SKkmdfhx9+ThCBnHvOD7HeEoAMf+eZz5CB5zQ9vX2FXAgvX2bJsQ==", - "type": "package", - "path": "win2d.uwp/1.3.0", - "files": [ - "Win2D.uwp.1.3.0.nupkg.sha512", - "Win2D.uwp.nuspec", - "Win2d.githash.txt", - "build/native/Win2D.uwp.targets", - "include/Microsoft.Graphics.Canvas.h", - "include/Microsoft.Graphics.Canvas.native.h", - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd", - "lib/uap10.0/Microsoft.Graphics.Canvas.xml", - "lib/uap10.0/Workaround1200257.dll", - "lib/uap10.0/en/Microsoft.Graphics.Canvas.xml", - "runtimes/win10-arm/native/Microsoft.Graphics.Canvas.dll", - "runtimes/win10-x64/native/Microsoft.Graphics.Canvas.dll", - "runtimes/win10-x86/native/Microsoft.Graphics.Canvas.dll" - ] - }, - "MaterialDesignThemes.Uwp/1.0.0": { - "type": "project", - "path": "../MaterialDesignThemes.Uwp/project.json", - "msbuildProject": "../MaterialDesignThemes.Uwp/MaterialDesignThemes.Uwp.csproj" - } - }, - "projectFileDependencyGroups": { - "": [ - "Microsoft.ApplicationInsights >= 1.0.0", - "Microsoft.ApplicationInsights.PersistenceChannel >= 1.0.0", - "Microsoft.ApplicationInsights.WindowsApps >= 1.0.0", - "Microsoft.NETCore.UniversalWindowsPlatform >= 5.0.0" - ], - "UAP,Version=v10.0": [] - }, - "tools": {}, - "projectFileToolGroups": {}, - "packageFolders": { - "C:\\Users\\james.MS\\.nuget\\packages\\": {} - } -} \ No newline at end of file diff --git a/MaterialDesignThemes.Uwp/MaterialDesignThemes.Uwp.csproj b/MaterialDesignThemes.Uwp/MaterialDesignThemes.Uwp.csproj deleted file mode 100644 index d14eccb754..0000000000 --- a/MaterialDesignThemes.Uwp/MaterialDesignThemes.Uwp.csproj +++ /dev/null @@ -1,250 +0,0 @@ - - - - - Debug - AnyCPU - {E4686A3F-CC25-4EEF-9A24-7CD4A22DA233} - Library - Properties - MaterialDesignThemes.Uwp - MaterialDesignThemes.Uwp - en-US - UAP - 10.0.18362.0 - 10.0.18362.0 - 14 - 512 - {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - win10-arm;win10-arm-aot;win10-x86;win10-x86-aot;win10-x64;win10-x64-aot - - - AnyCPU - true - full - false - bin\Debug\ - DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP - prompt - 4 - - - AnyCPU - pdbonly - true - bin\Release\ - TRACE;NETFX_CORE;WINDOWS_UWP - prompt - 4 - - - ARM - true - bin\ARM\Debug\ - DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP - ;2008 - full - ARM - false - prompt - true - - - ARM - bin\ARM\Release\ - TRACE;NETFX_CORE;WINDOWS_UWP - true - ;2008 - pdbonly - ARM - false - prompt - true - - - x64 - true - bin\x64\Debug\ - DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP - ;2008 - full - x64 - false - prompt - true - - - x64 - bin\x64\Release\ - TRACE;NETFX_CORE;WINDOWS_UWP - true - ;2008 - pdbonly - x64 - false - prompt - true - - - x86 - true - bin\x86\Debug\ - DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP - ;2008 - full - x86 - false - prompt - true - - - x86 - bin\x86\Release\ - TRACE;NETFX_CORE;WINDOWS_UWP - true - ;2008 - pdbonly - x86 - false - prompt - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - MSBuild:Compile - Designer - - - Designer - MSBuild:Compile - PreserveNewest - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - - - - 6.2.14 - - - 1.27.1 - - - - 14.0 - - - - \ No newline at end of file diff --git a/MaterialDesignThemes.Uwp/Properties/AssemblyInfo.cs b/MaterialDesignThemes.Uwp/Properties/AssemblyInfo.cs deleted file mode 100644 index 4d1486fdc9..0000000000 --- a/MaterialDesignThemes.Uwp/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,29 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("MaterialDesignThemes.Uwp")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("MaterialDesignThemes.Uwp")] -[assembly: AssemblyCopyright("Copyright © 2015")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] -[assembly: ComVisible(false)] diff --git a/MaterialDesignThemes.Uwp/Properties/MaterialDesignThemes.Uwp.rd.xml b/MaterialDesignThemes.Uwp/Properties/MaterialDesignThemes.Uwp.rd.xml deleted file mode 100644 index 96aa839b53..0000000000 --- a/MaterialDesignThemes.Uwp/Properties/MaterialDesignThemes.Uwp.rd.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - diff --git a/MaterialDesignThemes.Uwp/Ripple.cs b/MaterialDesignThemes.Uwp/Ripple.cs deleted file mode 100644 index f39d9bf04a..0000000000 --- a/MaterialDesignThemes.Uwp/Ripple.cs +++ /dev/null @@ -1,116 +0,0 @@ -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Runtime.CompilerServices; -using Windows.Devices.Input; -using Windows.UI.Xaml; -using Windows.UI.Xaml.Controls; -using Windows.UI.Xaml.Data; -using Windows.UI.Xaml.Documents; -using Windows.UI.Xaml.Input; -using Windows.UI.Xaml.Media; - -namespace MaterialDesignThemes.Uwp -{ - [TemplateVisualState(GroupName = "CommonStates", Name = "Normal")] - [TemplateVisualState(GroupName = "CommonStates", Name = "Pressed")] - public sealed class Ripple : ContentControl, INotifyPropertyChanged - { - private double _rippleSize; - private double _rippleX; - private double _rippleY; - - public Ripple() - { - DefaultStyleKey = typeof(Ripple); - SizeChanged += OnSizeChanged; - } - - private void OnSizeChanged(object sender, SizeChangedEventArgs sizeChangedEventArgs) - { - RippleSize = Math.Max(sizeChangedEventArgs.NewSize.Width, sizeChangedEventArgs.NewSize.Height) * RippleSizeMultiplier; - Clip = new RectangleGeometry { Rect = new Windows.Foundation.Rect(0, 0, sizeChangedEventArgs.NewSize.Width, sizeChangedEventArgs.NewSize.Height) }; - } - - public static readonly DependencyProperty FeedbackProperty = DependencyProperty.Register( - "Feedback", typeof(Brush), typeof(Ripple), new PropertyMetadata(default(Brush))); - - public Brush Feedback - { - get { return (Brush)GetValue(FeedbackProperty); } - set { SetValue(FeedbackProperty, value); } - } - - protected override void OnApplyTemplate() - { - VisualStateManager.GoToState(this, "Normal", false); - - base.OnApplyTemplate(); - } - - protected override void OnPointerPressed(PointerRoutedEventArgs e) - { - if (e.Pointer.PointerDeviceType == PointerDeviceType.Mouse) - { - var point = e.GetCurrentPoint(this); - - RippleX = point.Position.X - RippleSize / 2; - RippleY = point.Position.Y - RippleSize / 2; - - VisualStateManager.GoToState(this, "Normal", true); - VisualStateManager.GoToState(this, "MousePressed", true); - } - - base.OnPointerPressed(e); - } - - public static readonly DependencyProperty RippleSizeMultiplierProperty = DependencyProperty.Register( - "RippleSizeMultiplier", typeof(double), typeof(Ripple), new PropertyMetadata(1.75)); - - public double RippleSizeMultiplier - { - get { return (double)GetValue(RippleSizeMultiplierProperty); } - set { SetValue(RippleSizeMultiplierProperty, value); } - } - - public double RippleSize - { - get { return _rippleSize; } - private set - { - if (_rippleSize == value) return; - _rippleSize = value; - OnPropertyChanged(); - } - } - - public double RippleY - { - get { return _rippleY; } - private set - { - if (_rippleY == value) return; - _rippleY = value; - OnPropertyChanged(); - } - } - - public double RippleX - { - get { return _rippleX; } - private set - { - if (_rippleX == value) return; - _rippleX = value; - OnPropertyChanged(); - } - } - - public event PropertyChangedEventHandler PropertyChanged; - - private void OnPropertyChanged([CallerMemberName] string propertyName = null) - { - PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); - } - } -} diff --git a/MaterialDesignThemes.Uwp/Shadow.cs b/MaterialDesignThemes.Uwp/Shadow.cs deleted file mode 100644 index 7ac9f8641a..0000000000 --- a/MaterialDesignThemes.Uwp/Shadow.cs +++ /dev/null @@ -1,91 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Numerics; -using System.Runtime.InteropServices.WindowsRuntime; -using Microsoft.Graphics.Canvas; -using Microsoft.Graphics.Canvas.Effects; -using Microsoft.Graphics.Canvas.UI.Xaml; -using Windows.Foundation; -using Windows.UI; -using Windows.UI.Xaml; -using Windows.UI.Xaml.Controls; -using Windows.UI.Xaml.Data; -using Windows.UI.Xaml.Documents; -using Windows.UI.Xaml.Input; -using Windows.UI.Xaml.Media; - -namespace MaterialDesignThemes.Uwp -{ - [TemplatePart(Name = CanvasControlPartName, Type = typeof(CanvasControl))] - [TemplatePart(Name = ContentPresenterPartName, Type = typeof(ContentPresenter))] - public sealed class Shadow : ContentControl - { - private CanvasControl _canvasControl; - private ContentPresenter _contentPresenter; - private const string ContentPresenterPartName = "PART_ContentPresenter"; - private const string CanvasControlPartName = "PART_CanvasControl"; - - public Shadow() - { - DefaultStyleKey = typeof(Shadow); - Unloaded += OnUnloaded; - } - - private void OnUnloaded(object sender, RoutedEventArgs routedEventArgs) - { - if (_canvasControl == null) return; - - _canvasControl.RemoveFromVisualTree(); - _canvasControl = null; - } - - protected override void OnApplyTemplate() - { - base.OnApplyTemplate(); - - _canvasControl = GetTemplateChild(CanvasControlPartName) as CanvasControl; - if (_canvasControl != null) - _canvasControl.Draw += Draw; - - _contentPresenter = GetTemplateChild(ContentPresenterPartName) as ContentPresenter; - } - - private void Draw(CanvasControl sender, CanvasDrawEventArgs args) - { - if (_contentPresenter == null) return; - - var border = VisualTreeHelper.GetChild(_contentPresenter, 0) as Border; - if (border == null) return; - - var borderPoint = border.TransformToVisual(this).TransformPoint(new Point(0, 0)); - - var cl = new CanvasCommandList(sender); - using (var clds = cl.CreateDrawingSession()) - { - clds.FillRoundedRectangle(new Rect(borderPoint.X, borderPoint.Y, border.ActualWidth, border.ActualHeight), (float)border.CornerRadius.TopLeft, (float)border.CornerRadius.TopLeft, Color.FromArgb(128, 0, 0, 0)); - } - - var shadowEffect = new Transform2DEffect - { - Source = - new Transform2DEffect - { - Source = new ShadowEffect - { - BlurAmount = 2, - ShadowColor = Color.FromArgb(160, 0, 0, 0), - Source = cl - }, - //TODO not doing any scaling right now, confirm with larger shadows - TransformMatrix = Matrix3x2.CreateScale(1.0f, new Vector2((float)(border.ActualWidth / 2), ((float)border.ActualHeight / 2))) - - }, - TransformMatrix = Matrix3x2.CreateTranslation(0, 1) - }; - - args.DrawingSession.DrawImage(shadowEffect); - // args.DrawingSession.DrawImage(cl); - } - } -} diff --git a/MaterialDesignThemes.Uwp/Themes/Generic.xaml b/MaterialDesignThemes.Uwp/Themes/Generic.xaml deleted file mode 100644 index 9f1653233d..0000000000 --- a/MaterialDesignThemes.Uwp/Themes/Generic.xaml +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - diff --git a/MaterialDesignThemes.Uwp/Themes/MaterialDesign.xaml b/MaterialDesignThemes.Uwp/Themes/MaterialDesign.xaml deleted file mode 100644 index a29e3e744f..0000000000 --- a/MaterialDesignThemes.Uwp/Themes/MaterialDesign.xaml +++ /dev/null @@ -1,733 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Amber.Named.xaml b/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Amber.Named.xaml deleted file mode 100644 index 1c2d2636d5..0000000000 --- a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Amber.Named.xaml +++ /dev/null @@ -1,32 +0,0 @@ - - - #fff8e1 - #DD000000 - #ffecb3 - #DD000000 - #ffe082 - #DD000000 - #ffd54f - #DD000000 - #ffca28 - #DD000000 - #ffc107 - #DD000000 - #ffb300 - #DD000000 - #ffa000 - #FF000000 - #ff8f00 - #FF000000 - #ff6f00 - #FF000000 - #ffe57f - #DD000000 - #ffd740 - #DD000000 - #ffc400 - #DD000000 - #ffab00 - #DD000000 - \ No newline at end of file diff --git a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Black.Named.xaml b/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Black.Named.xaml deleted file mode 100644 index f1ccc59375..0000000000 --- a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Black.Named.xaml +++ /dev/null @@ -1,6 +0,0 @@ - - - #ffffff - #DD000000 - \ No newline at end of file diff --git a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Blue.Named.xaml b/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Blue.Named.xaml deleted file mode 100644 index dcd9eb07e6..0000000000 --- a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Blue.Named.xaml +++ /dev/null @@ -1,32 +0,0 @@ - - - #e3f2fd - #DD000000 - #bbdefb - #DD000000 - #90caf9 - #DD000000 - #64b5f6 - #DD000000 - #42a5f5 - #DD000000 - #2196f3 - #FFFFFFFF - #1e88e5 - #FFFFFFFF - #1976d2 - #FFFFFFFF - #1565c0 - #DDFFFFFF - #0d47a1 - #DDFFFFFF - #82b1ff - #DD000000 - #448aff - #FFFFFFFF - #2979ff - #FFFFFFFF - #2962ff - #FFFFFFFF - \ No newline at end of file diff --git a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.BlueGrey.Named.xaml b/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.BlueGrey.Named.xaml deleted file mode 100644 index 46c24efd8a..0000000000 --- a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.BlueGrey.Named.xaml +++ /dev/null @@ -1,24 +0,0 @@ - - - #eceff1 - #DD000000 - #cfd8dc - #DD000000 - #b0bec5 - #DD000000 - #90a4ae - #DD000000 - #78909c - #FFFFFFFF - #607d8b - #FFFFFFFF - #546e7a - #DDFFFFFF - #455a64 - #DDFFFFFF - #37474f - #DDFFFFFF - #263238 - #DDFFFFFF - \ No newline at end of file diff --git a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Brown.Named.xaml b/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Brown.Named.xaml deleted file mode 100644 index 1fd5fd1fe2..0000000000 --- a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Brown.Named.xaml +++ /dev/null @@ -1,24 +0,0 @@ - - - #efebe9 - #DD000000 - #d7ccc8 - #DD000000 - #bcaaa4 - #DD000000 - #a1887f - #FFFFFFFF - #8d6e63 - #FFFFFFFF - #795548 - #DDFFFFFF - #6d4c41 - #DDFFFFFF - #5d4037 - #DDFFFFFF - #4e342e - #DDFFFFFF - #3e2723 - #DDFFFFFF - \ No newline at end of file diff --git a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Cyan.Named.xaml b/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Cyan.Named.xaml deleted file mode 100644 index 9ab3b13b70..0000000000 --- a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Cyan.Named.xaml +++ /dev/null @@ -1,32 +0,0 @@ - - - #e0f7fa - #DD000000 - #b2ebf2 - #DD000000 - #80deea - #DD000000 - #4dd0e1 - #DD000000 - #26c6da - #DD000000 - #00bcd4 - #FFFFFFFF - #00acc1 - #FFFFFFFF - #0097a7 - #FFFFFFFF - #00838f - #FFFFFFFF - #006064 - #DDFFFFFF - #84ffff - #DD000000 - #18ffff - #DD000000 - #00e5ff - #DD000000 - #00b8d4 - #DD000000 - \ No newline at end of file diff --git a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.DeepOrange.Named.xaml b/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.DeepOrange.Named.xaml deleted file mode 100644 index 05e5f477a5..0000000000 --- a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.DeepOrange.Named.xaml +++ /dev/null @@ -1,32 +0,0 @@ - - - #fbe9e7 - #DD000000 - #ffccbc - #DD000000 - #ffab91 - #DD000000 - #ff8a65 - #DD000000 - #ff7043 - #DD000000 - #ff5722 - #FFFFFFFF - #f4511e - #FFFFFFFF - #e64a19 - #FFFFFFFF - #d84315 - #FFFFFFFF - #bf360c - #FFFFFFFF - #ff9e80 - #DD000000 - #ff6e40 - #DD000000 - #ff3d00 - #FFFFFFFF - #dd2c00 - #FFFFFFFF - \ No newline at end of file diff --git a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.DeepPurple.Named.xaml b/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.DeepPurple.Named.xaml deleted file mode 100644 index 1678f32c9b..0000000000 --- a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.DeepPurple.Named.xaml +++ /dev/null @@ -1,32 +0,0 @@ - - - #ede7f6 - #DD000000 - #d1c4e9 - #DD000000 - #b39ddb - #DD000000 - #9575cd - #FFFFFFFF - #7e57c2 - #FFFFFFFF - #673ab7 - #DDFFFFFF - #5e35b1 - #DDFFFFFF - #512da8 - #DDFFFFFF - #4527a0 - #DDFFFFFF - #311b92 - #DDFFFFFF - #b388ff - #DD000000 - #7c4dff - #FFFFFFFF - #651fff - #DDFFFFFF - #6200ea - #DDFFFFFF - \ No newline at end of file diff --git a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Green.Named.xaml b/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Green.Named.xaml deleted file mode 100644 index 8334aa9e3a..0000000000 --- a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Green.Named.xaml +++ /dev/null @@ -1,32 +0,0 @@ - - - #e8f5e9 - #DD000000 - #c8e6c9 - #DD000000 - #a5d6a7 - #DD000000 - #81c784 - #DD000000 - #66bb6a - #DD000000 - #4caf50 - #FFFFFFFF - #43a047 - #FFFFFFFF - #388e3c - #FFFFFFFF - #2e7d32 - #DDFFFFFF - #1b5e20 - #DDFFFFFF - #b9f6ca - #DD000000 - #69f0ae - #DD000000 - #00e676 - #DD000000 - #00c853 - #DD000000 - \ No newline at end of file diff --git a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Grey.Named.xaml b/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Grey.Named.xaml deleted file mode 100644 index 95cb086396..0000000000 --- a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Grey.Named.xaml +++ /dev/null @@ -1,24 +0,0 @@ - - - #fafafa - #DD000000 - #f5f5f5 - #DD000000 - #eeeeee - #DD000000 - #e0e0e0 - #DD000000 - #bdbdbd - #DD000000 - #9e9e9e - #FF000000 - #757575 - #DDFFFFFF - #616161 - #DDFFFFFF - #424242 - #DDFFFFFF - #212121 - #DDFFFFFF - \ No newline at end of file diff --git a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Indigo.Named.xaml b/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Indigo.Named.xaml deleted file mode 100644 index c697f5e5d2..0000000000 --- a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Indigo.Named.xaml +++ /dev/null @@ -1,32 +0,0 @@ - - - #e8eaf6 - #DD000000 - #c5cae9 - #DD000000 - #9fa8da - #DD000000 - #7986cb - #FFFFFFFF - #5c6bc0 - #FFFFFFFF - #3f51b5 - #DDFFFFFF - #3949ab - #DDFFFFFF - #303f9f - #DDFFFFFF - #283593 - #DDFFFFFF - #1a237e - #DDFFFFFF - #8c9eff - #DD000000 - #536dfe - #FFFFFFFF - #3d5afe - #FFFFFFFF - #304ffe - #DDFFFFFF - \ No newline at end of file diff --git a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.LightBlue.Named.xaml b/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.LightBlue.Named.xaml deleted file mode 100644 index 87f37d83be..0000000000 --- a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.LightBlue.Named.xaml +++ /dev/null @@ -1,32 +0,0 @@ - - - #e1f5fe - #DD000000 - #b3e5fc - #DD000000 - #81d4fa - #DD000000 - #4fc3f7 - #DD000000 - #29b6f6 - #DD000000 - #03a9f4 - #FFFFFFFF - #039be5 - #FFFFFFFF - #0288d1 - #FFFFFFFF - #0277bd - #FFFFFFFF - #01579b - #DDFFFFFF - #80d8ff - #DD000000 - #40c4ff - #DD000000 - #00b0ff - #DD000000 - #0091ea - #FFFFFFFF - \ No newline at end of file diff --git a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.LightGreen.Named.xaml b/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.LightGreen.Named.xaml deleted file mode 100644 index 43e4ba23fe..0000000000 --- a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.LightGreen.Named.xaml +++ /dev/null @@ -1,32 +0,0 @@ - - - #f1f8e9 - #DD000000 - #dcedc8 - #DD000000 - #c5e1a5 - #DD000000 - #aed581 - #DD000000 - #9ccc65 - #DD000000 - #8bc34a - #FF000000 - #7cb342 - #FF000000 - #689f38 - #FF000000 - #558b2f - #FFFFFFFF - #33691e - #FFFFFFFF - #ccff90 - #DD000000 - #b2ff59 - #DD000000 - #76ff03 - #DD000000 - #64dd17 - #DD000000 - \ No newline at end of file diff --git a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Lime.Named.xaml b/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Lime.Named.xaml deleted file mode 100644 index 61fdbe612f..0000000000 --- a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Lime.Named.xaml +++ /dev/null @@ -1,32 +0,0 @@ - - - #f9fbe7 - #DD000000 - #f0f4c3 - #DD000000 - #e6ee9c - #DD000000 - #dce775 - #DD000000 - #d4e157 - #DD000000 - #cddc39 - #DD000000 - #c0ca33 - #DD000000 - #afb42b - #FF000000 - #9e9d24 - #FF000000 - #827717 - #FFFFFFFF - #f4ff81 - #DD000000 - #eeff41 - #DD000000 - #c6ff00 - #DD000000 - #aeea00 - #DD000000 - \ No newline at end of file diff --git a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Orange.Named.xaml b/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Orange.Named.xaml deleted file mode 100644 index 96261df3d6..0000000000 --- a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Orange.Named.xaml +++ /dev/null @@ -1,32 +0,0 @@ - - - #fff3e0 - #DD000000 - #ffe0b2 - #DD000000 - #ffcc80 - #DD000000 - #ffb74d - #DD000000 - #ffa726 - #DD000000 - #ff9800 - #FF000000 - #fb8c00 - #FF000000 - #f57c00 - #FF000000 - #ef6c00 - #FFFFFFFF - #e65100 - #FFFFFFFF - #ffd180 - #DD000000 - #ffab40 - #DD000000 - #ff9100 - #DD000000 - #ff6d00 - #DD000000 - \ No newline at end of file diff --git a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Pink.Named.xaml b/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Pink.Named.xaml deleted file mode 100644 index 6c7580d627..0000000000 --- a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Pink.Named.xaml +++ /dev/null @@ -1,32 +0,0 @@ - - - #fce4ec - #DD000000 - #f8bbd0 - #DD000000 - #f48fb1 - #DD000000 - #f06292 - #DD000000 - #ec407a - #DD000000 - #e91e63 - #FFFFFFFF - #d81b60 - #FFFFFFFF - #c2185b - #DDFFFFFF - #ad1457 - #DDFFFFFF - #880e4f - #DDFFFFFF - #ff80ab - #DD000000 - #ff4081 - #FFFFFFFF - #f50057 - #FFFFFFFF - #c51162 - #FFFFFFFF - \ No newline at end of file diff --git a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Purple.Named.xaml b/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Purple.Named.xaml deleted file mode 100644 index 801c0dd91b..0000000000 --- a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Purple.Named.xaml +++ /dev/null @@ -1,32 +0,0 @@ - - - #f3e5f5 - #DD000000 - #e1bee7 - #DD000000 - #ce93d8 - #DD000000 - #ba68c8 - #FFFFFFFF - #ab47bc - #FFFFFFFF - #9c27b0 - #DDFFFFFF - #8e24aa - #DDFFFFFF - #7b1fa2 - #DDFFFFFF - #6a1b9a - #DDFFFFFF - #4a148c - #DDFFFFFF - #ea80fc - #DD000000 - #e040fb - #FFFFFFFF - #d500f9 - #FFFFFFFF - #aa00ff - #FFFFFFFF - \ No newline at end of file diff --git a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Red.Named.xaml b/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Red.Named.xaml deleted file mode 100644 index 4dbc697a0c..0000000000 --- a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Red.Named.xaml +++ /dev/null @@ -1,32 +0,0 @@ - - - #ffebee - #DD000000 - #ffcdd2 - #DD000000 - #ef9a9a - #DD000000 - #e57373 - #DD000000 - #ef5350 - #DD000000 - #f44336 - #FFFFFFFF - #e53935 - #FFFFFFFF - #d32f2f - #FFFFFFFF - #c62828 - #DDFFFFFF - #b71c1c - #DDFFFFFF - #ff8a80 - #DD000000 - #ff5252 - #FFFFFFFF - #ff1744 - #FFFFFFFF - #d50000 - #FFFFFFFF - \ No newline at end of file diff --git a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Teal.Named.xaml b/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Teal.Named.xaml deleted file mode 100644 index 51ff6744d6..0000000000 --- a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Teal.Named.xaml +++ /dev/null @@ -1,32 +0,0 @@ - - - #e0f2f1 - #DD000000 - #b2dfdb - #DD000000 - #80cbc4 - #DD000000 - #4db6ac - #DD000000 - #26a69a - #DD000000 - #009688 - #FFFFFFFF - #00897b - #FFFFFFFF - #00796b - #FFFFFFFF - #00695c - #DDFFFFFF - #004d40 - #DDFFFFFF - #a7ffeb - #DD000000 - #64ffda - #DD000000 - #1de9b6 - #DD000000 - #00bfa5 - #DD000000 - \ No newline at end of file diff --git a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Yellow.Named.xaml b/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Yellow.Named.xaml deleted file mode 100644 index f5d385c75b..0000000000 --- a/MaterialDesignThemes.Uwp/Themes/MaterialDesignColor.Yellow.Named.xaml +++ /dev/null @@ -1,32 +0,0 @@ - - - #fffde7 - #DD000000 - #fff9c4 - #DD000000 - #fff59d - #DD000000 - #fff176 - #DD000000 - #ffee58 - #DD000000 - #ffeb3b - #DD000000 - #fdd835 - #DD000000 - #fbc02d - #DD000000 - #f9a825 - #DD000000 - #f57f17 - #FF000000 - #ffff8d - #DD000000 - #ffff00 - #DD000000 - #ffea00 - #DD000000 - #ffd600 - #DD000000 - \ No newline at end of file diff --git a/MaterialDesignThemes.Uwp/project.lock.json b/MaterialDesignThemes.Uwp/project.lock.json deleted file mode 100644 index 110264b1bf..0000000000 --- a/MaterialDesignThemes.Uwp/project.lock.json +++ /dev/null @@ -1,15623 +0,0 @@ -{ - "version": 2, - "targets": { - "UAP,Version=v10.0": { - "Microsoft.CSharp/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Dynamic.Runtime": "4.0.0", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.0.0", - "Microsoft.NETCore.Targets": "1.0.0", - "Microsoft.VisualBasic": "10.0.0", - "System.AppContext": "4.0.0", - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Collections.Immutable": "1.1.37", - "System.ComponentModel": "4.0.0", - "System.ComponentModel.Annotations": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tools": "4.0.0", - "System.Diagnostics.Tracing": "4.0.20", - "System.Dynamic.Runtime": "4.0.10", - "System.Globalization": "4.0.10", - "System.Globalization.Calendars": "4.0.0", - "System.Globalization.Extensions": "4.0.0", - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.IO.Compression.ZipFile": "4.0.0", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.IO.UnmanagedMemoryStream": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Linq.Parallel": "4.0.0", - "System.Linq.Queryable": "4.0.0", - "System.Net.Http": "4.0.0", - "System.Net.NetworkInformation": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Numerics.Vectors": "4.1.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.DispatchProxy": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Metadata": "1.0.22", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Numerics": "4.0.0", - "System.Security.Claims": "4.0.0", - "System.Security.Principal": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10", - "System.Threading.Tasks.Dataflow": "4.5.25", - "System.Threading.Tasks.Parallel": "4.0.0", - "System.Threading.Timer": "4.0.0", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XDocument": "4.0.10" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": { - "type": "package" - }, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime": "1.0.0" - }, - "compile": { - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/mscorlib.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "lib/netcore50/System.Core.dll": {}, - "lib/netcore50/System.Net.dll": {}, - "lib/netcore50/System.Numerics.dll": {}, - "lib/netcore50/System.Runtime.Serialization.dll": {}, - "lib/netcore50/System.ServiceModel.Web.dll": {}, - "lib/netcore50/System.ServiceModel.dll": {}, - "lib/netcore50/System.Windows.dll": {}, - "lib/netcore50/System.Xml.Linq.dll": {}, - "lib/netcore50/System.Xml.Serialization.dll": {}, - "lib/netcore50/System.Xml.dll": {}, - "lib/netcore50/System.dll": {} - }, - "runtimeTargets": { - "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.Core.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.Net.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.Numerics.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.ServiceModel.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.Windows.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.Xml.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/mscorlib.dll": { - "assetType": "runtime", - "rid": "aot" - } - } - }, - "Microsoft.NETCore.Runtime/1.0.0": { - "type": "package" - }, - "Microsoft.NETCore.Targets/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.0", - "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "5.0.0" - } - }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": { - "type": "package" - }, - "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore": "5.0.0", - "Microsoft.NETCore.Portable.Compatibility": "1.0.0", - "Microsoft.NETCore.Runtime": "1.0.0", - "Microsoft.Win32.Primitives": "4.0.0", - "System.ComponentModel.EventBasedAsync": "4.0.10", - "System.Data.Common": "4.0.0", - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.StackTrace": "4.0.0", - "System.IO.IsolatedStorage": "4.0.0", - "System.Net.Http.Rtc": "4.0.0", - "System.Net.Requests": "4.0.10", - "System.Net.Sockets": "4.0.0", - "System.Net.WebHeaderCollection": "4.0.0", - "System.Numerics.Vectors.WindowsRuntime": "4.0.0", - "System.Reflection.Context": "4.0.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", - "System.Runtime.Serialization.Json": "4.0.0", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Runtime.Serialization.Xml": "4.0.10", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.0", - "System.ServiceModel.Duplex": "4.0.0", - "System.ServiceModel.Http": "4.0.10", - "System.ServiceModel.NetTcp": "4.0.0", - "System.ServiceModel.Primitives": "4.0.0", - "System.ServiceModel.Security": "4.0.0", - "System.Text.Encoding.CodePages": "4.0.0", - "System.Xml.XmlSerializer": "4.0.10" - } - }, - "Microsoft.VisualBasic/10.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Dynamic.Runtime": "4.0.10", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "System.AppContext/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Collections.dll": {} - }, - "runtime": { - "lib/netcore50/System.Collections.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Collections.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Collections.Concurrent/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.0", - "System.Globalization": "4.0.10", - "System.Globalization.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.ComponentModel": "4.0.0", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.10": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.Data.Common/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Globalization": "4.0.10", - "System.IO": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Data.Common.dll": {} - }, - "runtime": { - "lib/dotnet/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Diagnostics.Debug/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Debug.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Diagnostics.StackTrace/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.StackTrace.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Diagnostics.Tools/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tracing.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Dynamic.Runtime/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.ObjectModel": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Dynamic.Runtime.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Globalization/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.dll": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Globalization.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Globalization.Calendars/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.Calendars.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Globalization.Extensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.IO.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.IO.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.IO.Compression/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.IO": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.0", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Expressions.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Linq.Parallel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Net.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.Http.Rtc/4.0.0": { - "type": "package", - "dependencies": { - "System.Net.Http": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.Rtc.dll": {} - } - }, - "System.Net.NetworkInformation/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.Networking": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "System.Net.Requests/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.IO": "4.0.10", - "System.Net.Http": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Net.WebHeaderCollection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Net.Requests.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.Requests.dll": {} - } - }, - "System.Net.Sockets/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.Networking": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.Sockets.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.0", - "System.Collections.Specialized": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.0": { - "type": "package", - "dependencies": { - "System.Numerics.Vectors": "4.1.0", - "System.Runtime": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlSerializer": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.DataContractSerialization.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Private.Networking/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.0", - "System.Collections": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Networking.dll": {} - } - }, - "System.Private.ServiceModel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Collections.Specialized": "4.0.0", - "System.ComponentModel.EventBasedAsync": "4.0.10", - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Linq.Queryable": "4.0.0", - "System.Net.Http": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Net.WebHeaderCollection": "4.0.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.DispatchProxy": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Runtime.Serialization.Xml": "4.0.10", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Security.Claims": "4.0.0", - "System.Security.Principal": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10", - "System.Threading.Timer": "4.0.0", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlDocument": "4.0.0", - "System.Xml.XmlSerializer": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.ServiceModel.dll": {} - } - }, - "System.Private.Uri/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Uri.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Reflection/4.0.10": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Reflection.Context/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.DispatchProxy.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Reflection.Extensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Reflection.Metadata/1.0.22": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Immutable": "1.1.37", - "System.Diagnostics.Debug": "4.0.0", - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Text.Encoding.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.TypeExtensions.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Resources.ResourceManager/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.10", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Runtime/4.0.20": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Runtime.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Extensions.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Runtime.Handles/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Handles.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Runtime.InteropServices/4.0.20": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Runtime.Numerics/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.DataContractSerialization": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Runtime.Serialization.Primitives/4.0.10": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.DataContractSerialization": "4.0.0", - "System.Runtime.Serialization.Primitives": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Runtime.WindowsRuntime/4.0.10": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.0", - "System.IO": "4.0.10", - "System.ObjectModel": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.WindowsRuntime": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - } - }, - "System.Security.Claims/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Security.Principal": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Text.Encoding.CodePages/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.Encoding.CodePages.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.Extensions.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Text.RegularExpressions/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Threading.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Threading.Overlapped/4.0.0": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Concurrent": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Diagnostics.Tracing": "4.0.0", - "System.Dynamic.Runtime": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.Concurrent": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Timer.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlDocument": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XmlSerializer.dll": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": { - "assetType": "runtime", - "rid": "win8-aot" - } - } - }, - "Win2D.uwp/1.3.0": { - "type": "package", - "compile": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {}, - "lib/uap10.0/Workaround1200257.dll": {} - }, - "runtime": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {}, - "lib/uap10.0/Workaround1200257.dll": {} - }, - "runtimeTargets": { - "runtimes/win10-arm/native/Microsoft.Graphics.Canvas.dll": { - "assetType": "native", - "rid": "win10-arm" - }, - "runtimes/win10-x64/native/Microsoft.Graphics.Canvas.dll": { - "assetType": "native", - "rid": "win10-x64" - }, - "runtimes/win10-x86/native/Microsoft.Graphics.Canvas.dll": { - "assetType": "native", - "rid": "win10-x86" - } - } - } - }, - "UAP,Version=v10.0/win10-arm": { - "Microsoft.CSharp/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Dynamic.Runtime": "4.0.0", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.0.0", - "Microsoft.NETCore.Targets": "1.0.0", - "Microsoft.VisualBasic": "10.0.0", - "System.AppContext": "4.0.0", - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Collections.Immutable": "1.1.37", - "System.ComponentModel": "4.0.0", - "System.ComponentModel.Annotations": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tools": "4.0.0", - "System.Diagnostics.Tracing": "4.0.20", - "System.Dynamic.Runtime": "4.0.10", - "System.Globalization": "4.0.10", - "System.Globalization.Calendars": "4.0.0", - "System.Globalization.Extensions": "4.0.0", - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.IO.Compression.ZipFile": "4.0.0", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.IO.UnmanagedMemoryStream": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Linq.Parallel": "4.0.0", - "System.Linq.Queryable": "4.0.0", - "System.Net.Http": "4.0.0", - "System.Net.NetworkInformation": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Numerics.Vectors": "4.1.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.DispatchProxy": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Metadata": "1.0.22", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Numerics": "4.0.0", - "System.Security.Claims": "4.0.0", - "System.Security.Principal": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10", - "System.Threading.Tasks.Dataflow": "4.5.25", - "System.Threading.Tasks.Parallel": "4.0.0", - "System.Threading.Timer": "4.0.0", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XDocument": "4.0.10" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": { - "type": "package" - }, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime": "1.0.0" - }, - "compile": { - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/mscorlib.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "lib/netcore50/System.Core.dll": {}, - "lib/netcore50/System.Net.dll": {}, - "lib/netcore50/System.Numerics.dll": {}, - "lib/netcore50/System.Runtime.Serialization.dll": {}, - "lib/netcore50/System.ServiceModel.Web.dll": {}, - "lib/netcore50/System.ServiceModel.dll": {}, - "lib/netcore50/System.Windows.dll": {}, - "lib/netcore50/System.Xml.Linq.dll": {}, - "lib/netcore50/System.Xml.Serialization.dll": {}, - "lib/netcore50/System.Xml.dll": {}, - "lib/netcore50/System.dll": {} - } - }, - "Microsoft.NETCore.Runtime/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime.CoreCLR-arm": "1.0.0" - } - }, - "Microsoft.NETCore.Runtime.CoreCLR-arm/1.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "[4.0.10]", - "System.Diagnostics.Contracts": "[4.0.0]", - "System.Diagnostics.Debug": "[4.0.10]", - "System.Diagnostics.StackTrace": "[4.0.0]", - "System.Diagnostics.Tools": "[4.0.0]", - "System.Diagnostics.Tracing": "[4.0.20]", - "System.Globalization": "[4.0.10]", - "System.Globalization.Calendars": "[4.0.0]", - "System.IO": "[4.0.10]", - "System.ObjectModel": "[4.0.10]", - "System.Private.Uri": "[4.0.0]", - "System.Reflection": "[4.0.10]", - "System.Reflection.Extensions": "[4.0.0]", - "System.Reflection.Primitives": "[4.0.0]", - "System.Resources.ResourceManager": "[4.0.0]", - "System.Runtime": "[4.0.20]", - "System.Runtime.Extensions": "[4.0.10]", - "System.Runtime.Handles": "[4.0.0]", - "System.Runtime.InteropServices": "[4.0.20]", - "System.Text.Encoding": "[4.0.10]", - "System.Text.Encoding.Extensions": "[4.0.10]", - "System.Threading": "[4.0.10]", - "System.Threading.Tasks": "[4.0.10]", - "System.Threading.Timer": "[4.0.0]" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win8-arm/lib/dotnet/mscorlib.ni.dll": {} - }, - "native": { - "runtimes/win8-arm/native/clretwrc.dll": {}, - "runtimes/win8-arm/native/coreclr.dll": {}, - "runtimes/win8-arm/native/dbgshim.dll": {}, - "runtimes/win8-arm/native/mscordaccore.dll": {}, - "runtimes/win8-arm/native/mscordbi.dll": {}, - "runtimes/win8-arm/native/mscorrc.debug.dll": {}, - "runtimes/win8-arm/native/mscorrc.dll": {} - } - }, - "Microsoft.NETCore.Targets/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.0", - "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "5.0.0" - } - }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": { - "type": "package" - }, - "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore": "5.0.0", - "Microsoft.NETCore.Portable.Compatibility": "1.0.0", - "Microsoft.NETCore.Runtime": "1.0.0", - "Microsoft.Win32.Primitives": "4.0.0", - "System.ComponentModel.EventBasedAsync": "4.0.10", - "System.Data.Common": "4.0.0", - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.StackTrace": "4.0.0", - "System.IO.IsolatedStorage": "4.0.0", - "System.Net.Http.Rtc": "4.0.0", - "System.Net.Requests": "4.0.10", - "System.Net.Sockets": "4.0.0", - "System.Net.WebHeaderCollection": "4.0.0", - "System.Numerics.Vectors.WindowsRuntime": "4.0.0", - "System.Reflection.Context": "4.0.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", - "System.Runtime.Serialization.Json": "4.0.0", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Runtime.Serialization.Xml": "4.0.10", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.0", - "System.ServiceModel.Duplex": "4.0.0", - "System.ServiceModel.Http": "4.0.10", - "System.ServiceModel.NetTcp": "4.0.0", - "System.ServiceModel.Primitives": "4.0.0", - "System.ServiceModel.Security": "4.0.0", - "System.Text.Encoding.CodePages": "4.0.0", - "System.Xml.XmlSerializer": "4.0.10" - } - }, - "Microsoft.VisualBasic/10.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Dynamic.Runtime": "4.0.10", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "System.AppContext/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Collections.dll": {} - }, - "runtime": { - "lib/netcore50/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.0", - "System.Globalization": "4.0.10", - "System.Globalization.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.ComponentModel": "4.0.0", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.10": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.Data.Common/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Globalization": "4.0.10", - "System.IO": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Data.Common.dll": {} - }, - "runtime": { - "lib/dotnet/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.ObjectModel": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Emit.Lightweight": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.dll": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.IO.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.dll": {} - } - }, - "System.IO.Compression/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.IO": "4.0.0", - "System.IO.Compression.clrcompression-arm": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.clrcompression-arm/4.0.0": { - "type": "package", - "native": { - "runtimes/win10-arm/native/ClrCompression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.0", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Emit.Lightweight": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Net.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.Http.Rtc/4.0.0": { - "type": "package", - "dependencies": { - "System.Net.Http": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.Rtc.dll": {} - } - }, - "System.Net.NetworkInformation/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.Networking": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "System.Net.Requests/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.IO": "4.0.10", - "System.Net.Http": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Net.WebHeaderCollection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Net.Requests.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.Requests.dll": {} - } - }, - "System.Net.Sockets/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.Networking": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.Sockets.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.0", - "System.Collections.Specialized": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.0": { - "type": "package", - "dependencies": { - "System.Numerics.Vectors": "4.1.0", - "System.Runtime": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Emit.Lightweight": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlSerializer": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Private.Networking/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.0", - "System.Collections": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Networking.dll": {} - } - }, - "System.Private.ServiceModel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Collections.Specialized": "4.0.0", - "System.ComponentModel.EventBasedAsync": "4.0.10", - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Linq.Queryable": "4.0.0", - "System.Net.Http": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Net.WebHeaderCollection": "4.0.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.DispatchProxy": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Runtime.Serialization.Xml": "4.0.10", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Security.Claims": "4.0.0", - "System.Security.Principal": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10", - "System.Threading.Timer": "4.0.0", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlDocument": "4.0.0", - "System.Xml.XmlSerializer": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.ServiceModel.dll": {} - } - }, - "System.Private.Uri/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Uri.dll": {} - } - }, - "System.Reflection/4.0.10": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.dll": {} - } - }, - "System.Reflection.Context/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Emit": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/1.0.22": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Immutable": "1.1.37", - "System.Diagnostics.Debug": "4.0.0", - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Text.Encoding.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.10", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.20": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.20": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.DataContractSerialization": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.0.10": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.DataContractSerialization": "4.0.0", - "System.Runtime.Serialization.Primitives": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.0.10": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.0", - "System.IO": "4.0.10", - "System.ObjectModel": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.WindowsRuntime": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - } - }, - "System.Security.Claims/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Security.Principal": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.CodePages/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.Encoding.CodePages.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Concurrent": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Diagnostics.Tracing": "4.0.0", - "System.Dynamic.Runtime": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.Concurrent": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Emit": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlDocument": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XmlSerializer.dll": {} - } - }, - "Win2D.uwp/1.3.0": { - "type": "package", - "compile": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {}, - "lib/uap10.0/Workaround1200257.dll": {} - }, - "runtime": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {}, - "lib/uap10.0/Workaround1200257.dll": {} - }, - "native": { - "runtimes/win10-arm/native/Microsoft.Graphics.Canvas.dll": {} - } - } - }, - "UAP,Version=v10.0/win10-arm-aot": { - "Microsoft.CSharp/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Dynamic.Runtime": "4.0.0", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.0.0", - "Microsoft.NETCore.Targets": "1.0.0", - "Microsoft.VisualBasic": "10.0.0", - "System.AppContext": "4.0.0", - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Collections.Immutable": "1.1.37", - "System.ComponentModel": "4.0.0", - "System.ComponentModel.Annotations": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tools": "4.0.0", - "System.Diagnostics.Tracing": "4.0.20", - "System.Dynamic.Runtime": "4.0.10", - "System.Globalization": "4.0.10", - "System.Globalization.Calendars": "4.0.0", - "System.Globalization.Extensions": "4.0.0", - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.IO.Compression.ZipFile": "4.0.0", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.IO.UnmanagedMemoryStream": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Linq.Parallel": "4.0.0", - "System.Linq.Queryable": "4.0.0", - "System.Net.Http": "4.0.0", - "System.Net.NetworkInformation": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Numerics.Vectors": "4.1.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.DispatchProxy": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Metadata": "1.0.22", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Numerics": "4.0.0", - "System.Security.Claims": "4.0.0", - "System.Security.Principal": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10", - "System.Threading.Tasks.Dataflow": "4.5.25", - "System.Threading.Tasks.Parallel": "4.0.0", - "System.Threading.Timer": "4.0.0", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XDocument": "4.0.10" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": { - "type": "package" - }, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime": "1.0.0" - }, - "compile": { - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/mscorlib.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "runtimes/aot/lib/netcore50/System.Core.dll": {}, - "runtimes/aot/lib/netcore50/System.Net.dll": {}, - "runtimes/aot/lib/netcore50/System.Numerics.dll": {}, - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {}, - "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {}, - "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {}, - "runtimes/aot/lib/netcore50/System.Windows.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.dll": {}, - "runtimes/aot/lib/netcore50/System.dll": {}, - "runtimes/aot/lib/netcore50/mscorlib.dll": {} - } - }, - "Microsoft.NETCore.Runtime/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime.Native": "1.0.0" - } - }, - "Microsoft.NETCore.Runtime.Native/1.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "[4.0.10]", - "System.Diagnostics.Contracts": "[4.0.0]", - "System.Diagnostics.Debug": "[4.0.10]", - "System.Diagnostics.StackTrace": "[4.0.0]", - "System.Diagnostics.Tools": "[4.0.0]", - "System.Diagnostics.Tracing": "[4.0.20]", - "System.Globalization": "[4.0.10]", - "System.Globalization.Calendars": "[4.0.0]", - "System.IO": "[4.0.10]", - "System.ObjectModel": "[4.0.10]", - "System.Private.Uri": "[4.0.0]", - "System.Reflection": "[4.0.10]", - "System.Reflection.Extensions": "[4.0.0]", - "System.Reflection.Primitives": "[4.0.0]", - "System.Resources.ResourceManager": "[4.0.0]", - "System.Runtime": "[4.0.20]", - "System.Runtime.Extensions": "[4.0.10]", - "System.Runtime.Handles": "[4.0.0]", - "System.Runtime.InteropServices": "[4.0.20]", - "System.Text.Encoding": "[4.0.10]", - "System.Text.Encoding.Extensions": "[4.0.10]", - "System.Threading": "[4.0.10]", - "System.Threading.Tasks": "[4.0.10]", - "System.Threading.Timer": "[4.0.0]" - } - }, - "Microsoft.NETCore.Targets/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.0", - "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "5.0.0" - } - }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": { - "type": "package" - }, - "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore": "5.0.0", - "Microsoft.NETCore.Portable.Compatibility": "1.0.0", - "Microsoft.NETCore.Runtime": "1.0.0", - "Microsoft.Win32.Primitives": "4.0.0", - "System.ComponentModel.EventBasedAsync": "4.0.10", - "System.Data.Common": "4.0.0", - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.StackTrace": "4.0.0", - "System.IO.IsolatedStorage": "4.0.0", - "System.Net.Http.Rtc": "4.0.0", - "System.Net.Requests": "4.0.10", - "System.Net.Sockets": "4.0.0", - "System.Net.WebHeaderCollection": "4.0.0", - "System.Numerics.Vectors.WindowsRuntime": "4.0.0", - "System.Reflection.Context": "4.0.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", - "System.Runtime.Serialization.Json": "4.0.0", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Runtime.Serialization.Xml": "4.0.10", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.0", - "System.ServiceModel.Duplex": "4.0.0", - "System.ServiceModel.Http": "4.0.10", - "System.ServiceModel.NetTcp": "4.0.0", - "System.ServiceModel.Primitives": "4.0.0", - "System.ServiceModel.Security": "4.0.0", - "System.Text.Encoding.CodePages": "4.0.0", - "System.Xml.XmlSerializer": "4.0.10" - } - }, - "Microsoft.VisualBasic/10.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Dynamic.Runtime": "4.0.10", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "System.AppContext/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Collections.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.0", - "System.Globalization": "4.0.10", - "System.Globalization.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.ComponentModel": "4.0.0", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.10": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.Data.Common/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Globalization": "4.0.10", - "System.IO": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Data.Common.dll": {} - }, - "runtime": { - "lib/dotnet/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.ObjectModel": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.IO.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.IO.dll": {} - } - }, - "System.IO.Compression/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.IO": "4.0.0", - "System.IO.Compression.clrcompression-arm": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.clrcompression-arm/4.0.0": { - "type": "package", - "native": { - "runtimes/win10-arm/native/ClrCompression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.0", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Linq.Expressions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Net.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.Http.Rtc/4.0.0": { - "type": "package", - "dependencies": { - "System.Net.Http": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.Rtc.dll": {} - } - }, - "System.Net.NetworkInformation/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.Networking": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "System.Net.Requests/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.IO": "4.0.10", - "System.Net.Http": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Net.WebHeaderCollection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Net.Requests.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.Requests.dll": {} - } - }, - "System.Net.Sockets/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.Networking": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.Sockets.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.0", - "System.Collections.Specialized": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.0": { - "type": "package", - "dependencies": { - "System.Numerics.Vectors": "4.1.0", - "System.Runtime": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlSerializer": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Private.Networking/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.0", - "System.Collections": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Networking.dll": {} - } - }, - "System.Private.ServiceModel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Collections.Specialized": "4.0.0", - "System.ComponentModel.EventBasedAsync": "4.0.10", - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Linq.Queryable": "4.0.0", - "System.Net.Http": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Net.WebHeaderCollection": "4.0.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.DispatchProxy": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Runtime.Serialization.Xml": "4.0.10", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Security.Claims": "4.0.0", - "System.Security.Principal": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10", - "System.Threading.Timer": "4.0.0", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlDocument": "4.0.0", - "System.Xml.XmlSerializer": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.ServiceModel.dll": {} - } - }, - "System.Private.Uri/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll": {} - } - }, - "System.Reflection/4.0.10": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {} - } - }, - "System.Reflection.Context/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Extensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/1.0.22": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Immutable": "1.1.37", - "System.Diagnostics.Debug": "4.0.0", - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Text.Encoding.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.10", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.20": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.20": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.DataContractSerialization": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.0.10": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.DataContractSerialization": "4.0.0", - "System.Runtime.Serialization.Primitives": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.0.10": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.0", - "System.IO": "4.0.10", - "System.ObjectModel": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.WindowsRuntime": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - } - }, - "System.Security.Claims/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Security.Principal": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.CodePages/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.Encoding.CodePages.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Concurrent": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Diagnostics.Tracing": "4.0.0", - "System.Dynamic.Runtime": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.Concurrent": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Emit": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlDocument": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {} - } - }, - "Win2D.uwp/1.3.0": { - "type": "package", - "compile": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {}, - "lib/uap10.0/Workaround1200257.dll": {} - }, - "runtime": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {}, - "lib/uap10.0/Workaround1200257.dll": {} - }, - "native": { - "runtimes/win10-arm/native/Microsoft.Graphics.Canvas.dll": {} - } - } - }, - "UAP,Version=v10.0/win10-x64": { - "Microsoft.CSharp/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Dynamic.Runtime": "4.0.0", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.0.0", - "Microsoft.NETCore.Targets": "1.0.0", - "Microsoft.VisualBasic": "10.0.0", - "System.AppContext": "4.0.0", - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Collections.Immutable": "1.1.37", - "System.ComponentModel": "4.0.0", - "System.ComponentModel.Annotations": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tools": "4.0.0", - "System.Diagnostics.Tracing": "4.0.20", - "System.Dynamic.Runtime": "4.0.10", - "System.Globalization": "4.0.10", - "System.Globalization.Calendars": "4.0.0", - "System.Globalization.Extensions": "4.0.0", - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.IO.Compression.ZipFile": "4.0.0", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.IO.UnmanagedMemoryStream": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Linq.Parallel": "4.0.0", - "System.Linq.Queryable": "4.0.0", - "System.Net.Http": "4.0.0", - "System.Net.NetworkInformation": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Numerics.Vectors": "4.1.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.DispatchProxy": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Metadata": "1.0.22", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Numerics": "4.0.0", - "System.Security.Claims": "4.0.0", - "System.Security.Principal": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10", - "System.Threading.Tasks.Dataflow": "4.5.25", - "System.Threading.Tasks.Parallel": "4.0.0", - "System.Threading.Timer": "4.0.0", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XDocument": "4.0.10" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": { - "type": "package" - }, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime": "1.0.0" - }, - "compile": { - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/mscorlib.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "lib/netcore50/System.Core.dll": {}, - "lib/netcore50/System.Net.dll": {}, - "lib/netcore50/System.Numerics.dll": {}, - "lib/netcore50/System.Runtime.Serialization.dll": {}, - "lib/netcore50/System.ServiceModel.Web.dll": {}, - "lib/netcore50/System.ServiceModel.dll": {}, - "lib/netcore50/System.Windows.dll": {}, - "lib/netcore50/System.Xml.Linq.dll": {}, - "lib/netcore50/System.Xml.Serialization.dll": {}, - "lib/netcore50/System.Xml.dll": {}, - "lib/netcore50/System.dll": {} - } - }, - "Microsoft.NETCore.Runtime/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime.CoreCLR-x64": "1.0.0", - "Microsoft.NETCore.Windows.ApiSets-x64": "1.0.0" - } - }, - "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "[4.0.10]", - "System.Diagnostics.Contracts": "[4.0.0]", - "System.Diagnostics.Debug": "[4.0.10]", - "System.Diagnostics.StackTrace": "[4.0.0]", - "System.Diagnostics.Tools": "[4.0.0]", - "System.Diagnostics.Tracing": "[4.0.20]", - "System.Globalization": "[4.0.10]", - "System.Globalization.Calendars": "[4.0.0]", - "System.IO": "[4.0.10]", - "System.ObjectModel": "[4.0.10]", - "System.Private.Uri": "[4.0.0]", - "System.Reflection": "[4.0.10]", - "System.Reflection.Extensions": "[4.0.0]", - "System.Reflection.Primitives": "[4.0.0]", - "System.Resources.ResourceManager": "[4.0.0]", - "System.Runtime": "[4.0.20]", - "System.Runtime.Extensions": "[4.0.10]", - "System.Runtime.Handles": "[4.0.0]", - "System.Runtime.InteropServices": "[4.0.20]", - "System.Text.Encoding": "[4.0.10]", - "System.Text.Encoding.Extensions": "[4.0.10]", - "System.Threading": "[4.0.10]", - "System.Threading.Tasks": "[4.0.10]", - "System.Threading.Timer": "[4.0.0]" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll": {} - }, - "native": { - "runtimes/win7-x64/native/clretwrc.dll": {}, - "runtimes/win7-x64/native/coreclr.dll": {}, - "runtimes/win7-x64/native/dbgshim.dll": {}, - "runtimes/win7-x64/native/mscordaccore.dll": {}, - "runtimes/win7-x64/native/mscordbi.dll": {}, - "runtimes/win7-x64/native/mscorrc.debug.dll": {}, - "runtimes/win7-x64/native/mscorrc.dll": {} - } - }, - "Microsoft.NETCore.Targets/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.0", - "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "5.0.0" - } - }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": { - "type": "package" - }, - "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore": "5.0.0", - "Microsoft.NETCore.Portable.Compatibility": "1.0.0", - "Microsoft.NETCore.Runtime": "1.0.0", - "Microsoft.Win32.Primitives": "4.0.0", - "System.ComponentModel.EventBasedAsync": "4.0.10", - "System.Data.Common": "4.0.0", - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.StackTrace": "4.0.0", - "System.IO.IsolatedStorage": "4.0.0", - "System.Net.Http.Rtc": "4.0.0", - "System.Net.Requests": "4.0.10", - "System.Net.Sockets": "4.0.0", - "System.Net.WebHeaderCollection": "4.0.0", - "System.Numerics.Vectors.WindowsRuntime": "4.0.0", - "System.Reflection.Context": "4.0.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", - "System.Runtime.Serialization.Json": "4.0.0", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Runtime.Serialization.Xml": "4.0.10", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.0", - "System.ServiceModel.Duplex": "4.0.0", - "System.ServiceModel.Http": "4.0.10", - "System.ServiceModel.NetTcp": "4.0.0", - "System.ServiceModel.Primitives": "4.0.0", - "System.ServiceModel.Security": "4.0.0", - "System.Text.Encoding.CodePages": "4.0.0", - "System.Xml.XmlSerializer": "4.0.10" - } - }, - "Microsoft.NETCore.Windows.ApiSets-x64/1.0.0": { - "type": "package", - "native": { - "runtimes/win10-x64/native/_._": {} - } - }, - "Microsoft.VisualBasic/10.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Dynamic.Runtime": "4.0.10", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "System.AppContext/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Collections.dll": {} - }, - "runtime": { - "lib/netcore50/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.0", - "System.Globalization": "4.0.10", - "System.Globalization.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.ComponentModel": "4.0.0", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.10": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.Data.Common/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Globalization": "4.0.10", - "System.IO": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Data.Common.dll": {} - }, - "runtime": { - "lib/dotnet/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.ObjectModel": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Emit.Lightweight": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.dll": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.IO.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.dll": {} - } - }, - "System.IO.Compression/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.IO": "4.0.0", - "System.IO.Compression.clrcompression-x64": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.clrcompression-x64/4.0.0": { - "type": "package", - "native": { - "runtimes/win10-x64/native/ClrCompression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.0", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Emit.Lightweight": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Net.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.Http.Rtc/4.0.0": { - "type": "package", - "dependencies": { - "System.Net.Http": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.Rtc.dll": {} - } - }, - "System.Net.NetworkInformation/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.Networking": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "System.Net.Requests/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.IO": "4.0.10", - "System.Net.Http": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Net.WebHeaderCollection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Net.Requests.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.Requests.dll": {} - } - }, - "System.Net.Sockets/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.Networking": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.Sockets.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.0", - "System.Collections.Specialized": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.0": { - "type": "package", - "dependencies": { - "System.Numerics.Vectors": "4.1.0", - "System.Runtime": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Emit.Lightweight": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlSerializer": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Private.Networking/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.0", - "System.Collections": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Networking.dll": {} - } - }, - "System.Private.ServiceModel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Collections.Specialized": "4.0.0", - "System.ComponentModel.EventBasedAsync": "4.0.10", - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Linq.Queryable": "4.0.0", - "System.Net.Http": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Net.WebHeaderCollection": "4.0.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.DispatchProxy": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Runtime.Serialization.Xml": "4.0.10", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Security.Claims": "4.0.0", - "System.Security.Principal": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10", - "System.Threading.Timer": "4.0.0", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlDocument": "4.0.0", - "System.Xml.XmlSerializer": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.ServiceModel.dll": {} - } - }, - "System.Private.Uri/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Uri.dll": {} - } - }, - "System.Reflection/4.0.10": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.dll": {} - } - }, - "System.Reflection.Context/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Emit": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/1.0.22": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Immutable": "1.1.37", - "System.Diagnostics.Debug": "4.0.0", - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Text.Encoding.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.10", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.20": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.20": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.DataContractSerialization": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.0.10": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.DataContractSerialization": "4.0.0", - "System.Runtime.Serialization.Primitives": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.0.10": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.0", - "System.IO": "4.0.10", - "System.ObjectModel": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.WindowsRuntime": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - } - }, - "System.Security.Claims/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Security.Principal": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.CodePages/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.Encoding.CodePages.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Concurrent": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Diagnostics.Tracing": "4.0.0", - "System.Dynamic.Runtime": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.Concurrent": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Emit": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlDocument": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XmlSerializer.dll": {} - } - }, - "Win2D.uwp/1.3.0": { - "type": "package", - "compile": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {}, - "lib/uap10.0/Workaround1200257.dll": {} - }, - "runtime": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {}, - "lib/uap10.0/Workaround1200257.dll": {} - }, - "native": { - "runtimes/win10-x64/native/Microsoft.Graphics.Canvas.dll": {} - } - } - }, - "UAP,Version=v10.0/win10-x64-aot": { - "Microsoft.CSharp/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Dynamic.Runtime": "4.0.0", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.0.0", - "Microsoft.NETCore.Targets": "1.0.0", - "Microsoft.VisualBasic": "10.0.0", - "System.AppContext": "4.0.0", - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Collections.Immutable": "1.1.37", - "System.ComponentModel": "4.0.0", - "System.ComponentModel.Annotations": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tools": "4.0.0", - "System.Diagnostics.Tracing": "4.0.20", - "System.Dynamic.Runtime": "4.0.10", - "System.Globalization": "4.0.10", - "System.Globalization.Calendars": "4.0.0", - "System.Globalization.Extensions": "4.0.0", - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.IO.Compression.ZipFile": "4.0.0", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.IO.UnmanagedMemoryStream": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Linq.Parallel": "4.0.0", - "System.Linq.Queryable": "4.0.0", - "System.Net.Http": "4.0.0", - "System.Net.NetworkInformation": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Numerics.Vectors": "4.1.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.DispatchProxy": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Metadata": "1.0.22", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Numerics": "4.0.0", - "System.Security.Claims": "4.0.0", - "System.Security.Principal": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10", - "System.Threading.Tasks.Dataflow": "4.5.25", - "System.Threading.Tasks.Parallel": "4.0.0", - "System.Threading.Timer": "4.0.0", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XDocument": "4.0.10" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": { - "type": "package" - }, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime": "1.0.0" - }, - "compile": { - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/mscorlib.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "runtimes/aot/lib/netcore50/System.Core.dll": {}, - "runtimes/aot/lib/netcore50/System.Net.dll": {}, - "runtimes/aot/lib/netcore50/System.Numerics.dll": {}, - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {}, - "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {}, - "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {}, - "runtimes/aot/lib/netcore50/System.Windows.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.dll": {}, - "runtimes/aot/lib/netcore50/System.dll": {}, - "runtimes/aot/lib/netcore50/mscorlib.dll": {} - } - }, - "Microsoft.NETCore.Runtime/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime.Native": "1.0.0" - } - }, - "Microsoft.NETCore.Runtime.Native/1.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "[4.0.10]", - "System.Diagnostics.Contracts": "[4.0.0]", - "System.Diagnostics.Debug": "[4.0.10]", - "System.Diagnostics.StackTrace": "[4.0.0]", - "System.Diagnostics.Tools": "[4.0.0]", - "System.Diagnostics.Tracing": "[4.0.20]", - "System.Globalization": "[4.0.10]", - "System.Globalization.Calendars": "[4.0.0]", - "System.IO": "[4.0.10]", - "System.ObjectModel": "[4.0.10]", - "System.Private.Uri": "[4.0.0]", - "System.Reflection": "[4.0.10]", - "System.Reflection.Extensions": "[4.0.0]", - "System.Reflection.Primitives": "[4.0.0]", - "System.Resources.ResourceManager": "[4.0.0]", - "System.Runtime": "[4.0.20]", - "System.Runtime.Extensions": "[4.0.10]", - "System.Runtime.Handles": "[4.0.0]", - "System.Runtime.InteropServices": "[4.0.20]", - "System.Text.Encoding": "[4.0.10]", - "System.Text.Encoding.Extensions": "[4.0.10]", - "System.Threading": "[4.0.10]", - "System.Threading.Tasks": "[4.0.10]", - "System.Threading.Timer": "[4.0.0]" - } - }, - "Microsoft.NETCore.Targets/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.0", - "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "5.0.0" - } - }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": { - "type": "package" - }, - "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore": "5.0.0", - "Microsoft.NETCore.Portable.Compatibility": "1.0.0", - "Microsoft.NETCore.Runtime": "1.0.0", - "Microsoft.Win32.Primitives": "4.0.0", - "System.ComponentModel.EventBasedAsync": "4.0.10", - "System.Data.Common": "4.0.0", - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.StackTrace": "4.0.0", - "System.IO.IsolatedStorage": "4.0.0", - "System.Net.Http.Rtc": "4.0.0", - "System.Net.Requests": "4.0.10", - "System.Net.Sockets": "4.0.0", - "System.Net.WebHeaderCollection": "4.0.0", - "System.Numerics.Vectors.WindowsRuntime": "4.0.0", - "System.Reflection.Context": "4.0.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", - "System.Runtime.Serialization.Json": "4.0.0", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Runtime.Serialization.Xml": "4.0.10", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.0", - "System.ServiceModel.Duplex": "4.0.0", - "System.ServiceModel.Http": "4.0.10", - "System.ServiceModel.NetTcp": "4.0.0", - "System.ServiceModel.Primitives": "4.0.0", - "System.ServiceModel.Security": "4.0.0", - "System.Text.Encoding.CodePages": "4.0.0", - "System.Xml.XmlSerializer": "4.0.10" - } - }, - "Microsoft.VisualBasic/10.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Dynamic.Runtime": "4.0.10", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "System.AppContext/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Collections.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.0", - "System.Globalization": "4.0.10", - "System.Globalization.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.ComponentModel": "4.0.0", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.10": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.Data.Common/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Globalization": "4.0.10", - "System.IO": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Data.Common.dll": {} - }, - "runtime": { - "lib/dotnet/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.ObjectModel": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.IO.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.IO.dll": {} - } - }, - "System.IO.Compression/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.IO": "4.0.0", - "System.IO.Compression.clrcompression-x64": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.clrcompression-x64/4.0.0": { - "type": "package", - "native": { - "runtimes/win10-x64/native/ClrCompression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.0", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Linq.Expressions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Net.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.Http.Rtc/4.0.0": { - "type": "package", - "dependencies": { - "System.Net.Http": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.Rtc.dll": {} - } - }, - "System.Net.NetworkInformation/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.Networking": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "System.Net.Requests/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.IO": "4.0.10", - "System.Net.Http": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Net.WebHeaderCollection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Net.Requests.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.Requests.dll": {} - } - }, - "System.Net.Sockets/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.Networking": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.Sockets.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.0", - "System.Collections.Specialized": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.0": { - "type": "package", - "dependencies": { - "System.Numerics.Vectors": "4.1.0", - "System.Runtime": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlSerializer": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Private.Networking/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.0", - "System.Collections": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Networking.dll": {} - } - }, - "System.Private.ServiceModel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Collections.Specialized": "4.0.0", - "System.ComponentModel.EventBasedAsync": "4.0.10", - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Linq.Queryable": "4.0.0", - "System.Net.Http": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Net.WebHeaderCollection": "4.0.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.DispatchProxy": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Runtime.Serialization.Xml": "4.0.10", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Security.Claims": "4.0.0", - "System.Security.Principal": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10", - "System.Threading.Timer": "4.0.0", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlDocument": "4.0.0", - "System.Xml.XmlSerializer": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.ServiceModel.dll": {} - } - }, - "System.Private.Uri/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll": {} - } - }, - "System.Reflection/4.0.10": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {} - } - }, - "System.Reflection.Context/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Extensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/1.0.22": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Immutable": "1.1.37", - "System.Diagnostics.Debug": "4.0.0", - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Text.Encoding.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.10", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.20": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.20": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.DataContractSerialization": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.0.10": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.DataContractSerialization": "4.0.0", - "System.Runtime.Serialization.Primitives": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.0.10": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.0", - "System.IO": "4.0.10", - "System.ObjectModel": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.WindowsRuntime": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - } - }, - "System.Security.Claims/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Security.Principal": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.CodePages/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.Encoding.CodePages.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Concurrent": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Diagnostics.Tracing": "4.0.0", - "System.Dynamic.Runtime": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.Concurrent": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Emit": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlDocument": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {} - } - }, - "Win2D.uwp/1.3.0": { - "type": "package", - "compile": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {}, - "lib/uap10.0/Workaround1200257.dll": {} - }, - "runtime": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {}, - "lib/uap10.0/Workaround1200257.dll": {} - }, - "native": { - "runtimes/win10-x64/native/Microsoft.Graphics.Canvas.dll": {} - } - } - }, - "UAP,Version=v10.0/win10-x86": { - "Microsoft.CSharp/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Dynamic.Runtime": "4.0.0", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.0.0", - "Microsoft.NETCore.Targets": "1.0.0", - "Microsoft.VisualBasic": "10.0.0", - "System.AppContext": "4.0.0", - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Collections.Immutable": "1.1.37", - "System.ComponentModel": "4.0.0", - "System.ComponentModel.Annotations": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tools": "4.0.0", - "System.Diagnostics.Tracing": "4.0.20", - "System.Dynamic.Runtime": "4.0.10", - "System.Globalization": "4.0.10", - "System.Globalization.Calendars": "4.0.0", - "System.Globalization.Extensions": "4.0.0", - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.IO.Compression.ZipFile": "4.0.0", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.IO.UnmanagedMemoryStream": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Linq.Parallel": "4.0.0", - "System.Linq.Queryable": "4.0.0", - "System.Net.Http": "4.0.0", - "System.Net.NetworkInformation": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Numerics.Vectors": "4.1.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.DispatchProxy": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Metadata": "1.0.22", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Numerics": "4.0.0", - "System.Security.Claims": "4.0.0", - "System.Security.Principal": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10", - "System.Threading.Tasks.Dataflow": "4.5.25", - "System.Threading.Tasks.Parallel": "4.0.0", - "System.Threading.Timer": "4.0.0", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XDocument": "4.0.10" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": { - "type": "package" - }, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime": "1.0.0" - }, - "compile": { - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/mscorlib.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "lib/netcore50/System.Core.dll": {}, - "lib/netcore50/System.Net.dll": {}, - "lib/netcore50/System.Numerics.dll": {}, - "lib/netcore50/System.Runtime.Serialization.dll": {}, - "lib/netcore50/System.ServiceModel.Web.dll": {}, - "lib/netcore50/System.ServiceModel.dll": {}, - "lib/netcore50/System.Windows.dll": {}, - "lib/netcore50/System.Xml.Linq.dll": {}, - "lib/netcore50/System.Xml.Serialization.dll": {}, - "lib/netcore50/System.Xml.dll": {}, - "lib/netcore50/System.dll": {} - } - }, - "Microsoft.NETCore.Runtime/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime.CoreCLR-x86": "1.0.0", - "Microsoft.NETCore.Windows.ApiSets-x86": "1.0.0" - } - }, - "Microsoft.NETCore.Runtime.CoreCLR-x86/1.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "[4.0.10]", - "System.Diagnostics.Contracts": "[4.0.0]", - "System.Diagnostics.Debug": "[4.0.10]", - "System.Diagnostics.StackTrace": "[4.0.0]", - "System.Diagnostics.Tools": "[4.0.0]", - "System.Diagnostics.Tracing": "[4.0.20]", - "System.Globalization": "[4.0.10]", - "System.Globalization.Calendars": "[4.0.0]", - "System.IO": "[4.0.10]", - "System.ObjectModel": "[4.0.10]", - "System.Private.Uri": "[4.0.0]", - "System.Reflection": "[4.0.10]", - "System.Reflection.Extensions": "[4.0.0]", - "System.Reflection.Primitives": "[4.0.0]", - "System.Resources.ResourceManager": "[4.0.0]", - "System.Runtime": "[4.0.20]", - "System.Runtime.Extensions": "[4.0.10]", - "System.Runtime.Handles": "[4.0.0]", - "System.Runtime.InteropServices": "[4.0.20]", - "System.Text.Encoding": "[4.0.10]", - "System.Text.Encoding.Extensions": "[4.0.10]", - "System.Threading": "[4.0.10]", - "System.Threading.Tasks": "[4.0.10]", - "System.Threading.Timer": "[4.0.0]" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7-x86/lib/dotnet/mscorlib.ni.dll": {} - }, - "native": { - "runtimes/win7-x86/native/clretwrc.dll": {}, - "runtimes/win7-x86/native/coreclr.dll": {}, - "runtimes/win7-x86/native/dbgshim.dll": {}, - "runtimes/win7-x86/native/mscordaccore.dll": {}, - "runtimes/win7-x86/native/mscordbi.dll": {}, - "runtimes/win7-x86/native/mscorrc.debug.dll": {}, - "runtimes/win7-x86/native/mscorrc.dll": {} - } - }, - "Microsoft.NETCore.Targets/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.0", - "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "5.0.0" - } - }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": { - "type": "package" - }, - "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore": "5.0.0", - "Microsoft.NETCore.Portable.Compatibility": "1.0.0", - "Microsoft.NETCore.Runtime": "1.0.0", - "Microsoft.Win32.Primitives": "4.0.0", - "System.ComponentModel.EventBasedAsync": "4.0.10", - "System.Data.Common": "4.0.0", - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.StackTrace": "4.0.0", - "System.IO.IsolatedStorage": "4.0.0", - "System.Net.Http.Rtc": "4.0.0", - "System.Net.Requests": "4.0.10", - "System.Net.Sockets": "4.0.0", - "System.Net.WebHeaderCollection": "4.0.0", - "System.Numerics.Vectors.WindowsRuntime": "4.0.0", - "System.Reflection.Context": "4.0.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", - "System.Runtime.Serialization.Json": "4.0.0", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Runtime.Serialization.Xml": "4.0.10", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.0", - "System.ServiceModel.Duplex": "4.0.0", - "System.ServiceModel.Http": "4.0.10", - "System.ServiceModel.NetTcp": "4.0.0", - "System.ServiceModel.Primitives": "4.0.0", - "System.ServiceModel.Security": "4.0.0", - "System.Text.Encoding.CodePages": "4.0.0", - "System.Xml.XmlSerializer": "4.0.10" - } - }, - "Microsoft.NETCore.Windows.ApiSets-x86/1.0.0": { - "type": "package", - "native": { - "runtimes/win10-x86/native/_._": {} - } - }, - "Microsoft.VisualBasic/10.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Dynamic.Runtime": "4.0.10", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "System.AppContext/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Collections.dll": {} - }, - "runtime": { - "lib/netcore50/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.0", - "System.Globalization": "4.0.10", - "System.Globalization.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.ComponentModel": "4.0.0", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.10": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.Data.Common/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Globalization": "4.0.10", - "System.IO": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Data.Common.dll": {} - }, - "runtime": { - "lib/dotnet/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.ObjectModel": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Emit.Lightweight": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.dll": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.IO.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.dll": {} - } - }, - "System.IO.Compression/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.IO": "4.0.0", - "System.IO.Compression.clrcompression-x86": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.clrcompression-x86/4.0.0": { - "type": "package", - "native": { - "runtimes/win10-x86/native/ClrCompression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.0", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Emit.Lightweight": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Net.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.Http.Rtc/4.0.0": { - "type": "package", - "dependencies": { - "System.Net.Http": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.Rtc.dll": {} - } - }, - "System.Net.NetworkInformation/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.Networking": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "System.Net.Requests/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.IO": "4.0.10", - "System.Net.Http": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Net.WebHeaderCollection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Net.Requests.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.Requests.dll": {} - } - }, - "System.Net.Sockets/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.Networking": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.Sockets.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.0", - "System.Collections.Specialized": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.0": { - "type": "package", - "dependencies": { - "System.Numerics.Vectors": "4.1.0", - "System.Runtime": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Emit.Lightweight": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlSerializer": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Private.Networking/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.0", - "System.Collections": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Networking.dll": {} - } - }, - "System.Private.ServiceModel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Collections.Specialized": "4.0.0", - "System.ComponentModel.EventBasedAsync": "4.0.10", - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Linq.Queryable": "4.0.0", - "System.Net.Http": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Net.WebHeaderCollection": "4.0.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.DispatchProxy": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Runtime.Serialization.Xml": "4.0.10", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Security.Claims": "4.0.0", - "System.Security.Principal": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10", - "System.Threading.Timer": "4.0.0", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlDocument": "4.0.0", - "System.Xml.XmlSerializer": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.ServiceModel.dll": {} - } - }, - "System.Private.Uri/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Uri.dll": {} - } - }, - "System.Reflection/4.0.10": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.dll": {} - } - }, - "System.Reflection.Context/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Emit": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/1.0.22": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Immutable": "1.1.37", - "System.Diagnostics.Debug": "4.0.0", - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Text.Encoding.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.10", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.20": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.20": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.DataContractSerialization": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.0.10": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.DataContractSerialization": "4.0.0", - "System.Runtime.Serialization.Primitives": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.0.10": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.0", - "System.IO": "4.0.10", - "System.ObjectModel": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.WindowsRuntime": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - } - }, - "System.Security.Claims/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Security.Principal": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.CodePages/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.Encoding.CodePages.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Concurrent": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Diagnostics.Tracing": "4.0.0", - "System.Dynamic.Runtime": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.Concurrent": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Emit": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlDocument": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XmlSerializer.dll": {} - } - }, - "Win2D.uwp/1.3.0": { - "type": "package", - "compile": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {}, - "lib/uap10.0/Workaround1200257.dll": {} - }, - "runtime": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {}, - "lib/uap10.0/Workaround1200257.dll": {} - }, - "native": { - "runtimes/win10-x86/native/Microsoft.Graphics.Canvas.dll": {} - } - } - }, - "UAP,Version=v10.0/win10-x86-aot": { - "Microsoft.CSharp/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Dynamic.Runtime": "4.0.0", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.0.0", - "Microsoft.NETCore.Targets": "1.0.0", - "Microsoft.VisualBasic": "10.0.0", - "System.AppContext": "4.0.0", - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Collections.Immutable": "1.1.37", - "System.ComponentModel": "4.0.0", - "System.ComponentModel.Annotations": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tools": "4.0.0", - "System.Diagnostics.Tracing": "4.0.20", - "System.Dynamic.Runtime": "4.0.10", - "System.Globalization": "4.0.10", - "System.Globalization.Calendars": "4.0.0", - "System.Globalization.Extensions": "4.0.0", - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.IO.Compression.ZipFile": "4.0.0", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.IO.UnmanagedMemoryStream": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Linq.Parallel": "4.0.0", - "System.Linq.Queryable": "4.0.0", - "System.Net.Http": "4.0.0", - "System.Net.NetworkInformation": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Numerics.Vectors": "4.1.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.DispatchProxy": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Metadata": "1.0.22", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Numerics": "4.0.0", - "System.Security.Claims": "4.0.0", - "System.Security.Principal": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10", - "System.Threading.Tasks.Dataflow": "4.5.25", - "System.Threading.Tasks.Parallel": "4.0.0", - "System.Threading.Timer": "4.0.0", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XDocument": "4.0.10" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": { - "type": "package" - }, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime": "1.0.0" - }, - "compile": { - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/mscorlib.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "runtimes/aot/lib/netcore50/System.Core.dll": {}, - "runtimes/aot/lib/netcore50/System.Net.dll": {}, - "runtimes/aot/lib/netcore50/System.Numerics.dll": {}, - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {}, - "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {}, - "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {}, - "runtimes/aot/lib/netcore50/System.Windows.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.dll": {}, - "runtimes/aot/lib/netcore50/System.dll": {}, - "runtimes/aot/lib/netcore50/mscorlib.dll": {} - } - }, - "Microsoft.NETCore.Runtime/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime.Native": "1.0.0" - } - }, - "Microsoft.NETCore.Runtime.Native/1.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "[4.0.10]", - "System.Diagnostics.Contracts": "[4.0.0]", - "System.Diagnostics.Debug": "[4.0.10]", - "System.Diagnostics.StackTrace": "[4.0.0]", - "System.Diagnostics.Tools": "[4.0.0]", - "System.Diagnostics.Tracing": "[4.0.20]", - "System.Globalization": "[4.0.10]", - "System.Globalization.Calendars": "[4.0.0]", - "System.IO": "[4.0.10]", - "System.ObjectModel": "[4.0.10]", - "System.Private.Uri": "[4.0.0]", - "System.Reflection": "[4.0.10]", - "System.Reflection.Extensions": "[4.0.0]", - "System.Reflection.Primitives": "[4.0.0]", - "System.Resources.ResourceManager": "[4.0.0]", - "System.Runtime": "[4.0.20]", - "System.Runtime.Extensions": "[4.0.10]", - "System.Runtime.Handles": "[4.0.0]", - "System.Runtime.InteropServices": "[4.0.20]", - "System.Text.Encoding": "[4.0.10]", - "System.Text.Encoding.Extensions": "[4.0.10]", - "System.Threading": "[4.0.10]", - "System.Threading.Tasks": "[4.0.10]", - "System.Threading.Timer": "[4.0.0]" - } - }, - "Microsoft.NETCore.Targets/1.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.0", - "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "5.0.0" - } - }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": { - "type": "package" - }, - "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore": "5.0.0", - "Microsoft.NETCore.Portable.Compatibility": "1.0.0", - "Microsoft.NETCore.Runtime": "1.0.0", - "Microsoft.Win32.Primitives": "4.0.0", - "System.ComponentModel.EventBasedAsync": "4.0.10", - "System.Data.Common": "4.0.0", - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.StackTrace": "4.0.0", - "System.IO.IsolatedStorage": "4.0.0", - "System.Net.Http.Rtc": "4.0.0", - "System.Net.Requests": "4.0.10", - "System.Net.Sockets": "4.0.0", - "System.Net.WebHeaderCollection": "4.0.0", - "System.Numerics.Vectors.WindowsRuntime": "4.0.0", - "System.Reflection.Context": "4.0.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", - "System.Runtime.Serialization.Json": "4.0.0", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Runtime.Serialization.Xml": "4.0.10", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.0", - "System.ServiceModel.Duplex": "4.0.0", - "System.ServiceModel.Http": "4.0.10", - "System.ServiceModel.NetTcp": "4.0.0", - "System.ServiceModel.Primitives": "4.0.0", - "System.ServiceModel.Security": "4.0.0", - "System.Text.Encoding.CodePages": "4.0.0", - "System.Xml.XmlSerializer": "4.0.10" - } - }, - "Microsoft.VisualBasic/10.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Dynamic.Runtime": "4.0.10", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "System.AppContext/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Collections.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.0", - "System.Globalization": "4.0.10", - "System.Globalization.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.ComponentModel": "4.0.0", - "System.Globalization": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.10": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.Data.Common/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Globalization": "4.0.10", - "System.IO": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Data.Common.dll": {} - }, - "runtime": { - "lib/dotnet/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.ObjectModel": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Runtime": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.IO.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.IO.dll": {} - } - }, - "System.IO.Compression/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.IO": "4.0.0", - "System.IO.Compression.clrcompression-x86": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.clrcompression-x86/4.0.0": { - "type": "package", - "native": { - "runtimes/win10-x86/native/ClrCompression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.10", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.0", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Linq.Expressions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Net.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.Http.Rtc/4.0.0": { - "type": "package", - "dependencies": { - "System.Net.Http": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.Rtc.dll": {} - } - }, - "System.Net.NetworkInformation/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.Networking": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "System.Net.Requests/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.IO": "4.0.10", - "System.Net.Http": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Net.WebHeaderCollection": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Net.Requests.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.Requests.dll": {} - } - }, - "System.Net.Sockets/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.Networking": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.Sockets.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.0", - "System.Collections.Specialized": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.0": { - "type": "package", - "dependencies": { - "System.Numerics.Vectors": "4.1.0", - "System.Runtime": "4.0.20", - "System.Runtime.WindowsRuntime": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlSerializer": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Private.Networking/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.0", - "System.Collections": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Overlapped": "4.0.0", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Networking.dll": {} - } - }, - "System.Private.ServiceModel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Collections.Concurrent": "4.0.10", - "System.Collections.NonGeneric": "4.0.0", - "System.Collections.Specialized": "4.0.0", - "System.ComponentModel.EventBasedAsync": "4.0.10", - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.Compression": "4.0.0", - "System.Linq": "4.0.0", - "System.Linq.Expressions": "4.0.10", - "System.Linq.Queryable": "4.0.0", - "System.Net.Http": "4.0.0", - "System.Net.Primitives": "4.0.10", - "System.Net.WebHeaderCollection": "4.0.0", - "System.ObjectModel": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.DispatchProxy": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.Serialization.Primitives": "4.0.10", - "System.Runtime.Serialization.Xml": "4.0.10", - "System.Runtime.WindowsRuntime": "4.0.10", - "System.Security.Claims": "4.0.0", - "System.Security.Principal": "4.0.0", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10", - "System.Threading.Timer": "4.0.0", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlDocument": "4.0.0", - "System.Xml.XmlSerializer": "4.0.10" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.ServiceModel.dll": {} - } - }, - "System.Private.Uri/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll": {} - } - }, - "System.Reflection/4.0.10": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {} - } - }, - "System.Reflection.Context/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Extensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Reflection": "4.0.10", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/1.0.22": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Immutable": "1.1.37", - "System.Diagnostics.Debug": "4.0.0", - "System.IO": "4.0.0", - "System.Reflection": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.0", - "System.Text.Encoding": "4.0.0", - "System.Text.Encoding.Extensions": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.Debug": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Reflection": "4.0.10", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.20": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.20": { - "type": "package", - "dependencies": { - "System.Reflection": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Handles": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.DataContractSerialization": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.0.10": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.DataContractSerialization": "4.0.0", - "System.Runtime.Serialization.Primitives": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.0.10": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.0", - "System.IO": "4.0.10", - "System.ObjectModel": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.WindowsRuntime": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - } - }, - "System.Security.Claims/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.IO": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Security.Principal": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.0.10": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.0.0", - "System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.CodePages/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.Encoding.CodePages.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Text.Encoding": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Globalization": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.0", - "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices": "4.0.20", - "System.Threading": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.0", - "System.Collections.Concurrent": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Diagnostics.Tracing": "4.0.0", - "System.Dynamic.Runtime": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0", - "System.Threading.Tasks": "4.0.0" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections.Concurrent": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Tracing": "4.0.20", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Threading": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.0": { - "type": "package", - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Primitives": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Runtime.InteropServices": "4.0.20", - "System.Text.Encoding": "4.0.10", - "System.Text.Encoding.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading.Tasks": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Reflection": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.Encoding": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10" - }, - "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.10": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.10", - "System.Diagnostics.Debug": "4.0.10", - "System.Globalization": "4.0.10", - "System.IO": "4.0.10", - "System.Linq": "4.0.0", - "System.Reflection": "4.0.10", - "System.Reflection.Emit": "4.0.0", - "System.Reflection.Emit.ILGeneration": "4.0.0", - "System.Reflection.Extensions": "4.0.0", - "System.Reflection.Primitives": "4.0.0", - "System.Reflection.TypeExtensions": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.20", - "System.Runtime.Extensions": "4.0.10", - "System.Text.RegularExpressions": "4.0.10", - "System.Threading": "4.0.10", - "System.Xml.ReaderWriter": "4.0.10", - "System.Xml.XmlDocument": "4.0.0" - }, - "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {} - } - }, - "Win2D.uwp/1.3.0": { - "type": "package", - "compile": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {}, - "lib/uap10.0/Workaround1200257.dll": {} - }, - "runtime": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {}, - "lib/uap10.0/Workaround1200257.dll": {} - }, - "native": { - "runtimes/win10-x86/native/Microsoft.Graphics.Canvas.dll": {} - } - } - } - }, - "libraries": { - "Microsoft.CSharp/4.0.0": { - "sha512": "oWqeKUxHXdK6dL2CFjgMcaBISbkk+AqEg+yvJHE4DElNzS4QaTsCflgkkqZwVlWby1Dg9zo9n+iCAMFefFdJ/A==", - "type": "package", - "path": "microsoft.csharp/4.0.0", - "files": [ - "Microsoft.CSharp.4.0.0.nupkg.sha512", - "Microsoft.CSharp.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/Microsoft.CSharp.dll", - "lib/net45/_._", - "lib/netcore50/Microsoft.CSharp.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/Microsoft.CSharp.dll", - "ref/dotnet/Microsoft.CSharp.xml", - "ref/dotnet/de/Microsoft.CSharp.xml", - "ref/dotnet/es/Microsoft.CSharp.xml", - "ref/dotnet/fr/Microsoft.CSharp.xml", - "ref/dotnet/it/Microsoft.CSharp.xml", - "ref/dotnet/ja/Microsoft.CSharp.xml", - "ref/dotnet/ko/Microsoft.CSharp.xml", - "ref/dotnet/ru/Microsoft.CSharp.xml", - "ref/dotnet/zh-hans/Microsoft.CSharp.xml", - "ref/dotnet/zh-hant/Microsoft.CSharp.xml", - "ref/net45/_._", - "ref/netcore50/Microsoft.CSharp.dll", - "ref/netcore50/Microsoft.CSharp.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "Microsoft.NETCore/5.0.0": { - "sha512": "QQMp0yYQbIdfkKhdEE6Umh2Xonau7tasG36Trw/YlHoWgYQLp7T9L+ZD8EPvdj5ubRhtOuKEKwM7HMpkagB9ZA==", - "type": "package", - "path": "microsoft.netcore/5.0.0", - "files": [ - "Microsoft.NETCore.5.0.0.nupkg.sha512", - "Microsoft.NETCore.nuspec", - "_._" - ] - }, - "Microsoft.NETCore.Platforms/1.0.0": { - "sha512": "0N77OwGZpXqUco2C/ynv1os7HqdFYifvNIbveLDKqL5PZaz05Rl9enCwVBjF61aumHKueLWIJ3prnmdAXxww4A==", - "type": "package", - "path": "microsoft.netcore.platforms/1.0.0", - "files": [ - "Microsoft.NETCore.Platforms.1.0.0.nupkg.sha512", - "Microsoft.NETCore.Platforms.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "sha512": "5/IFqf2zN1jzktRJitxO+5kQ+0AilcIbPvSojSJwDG3cGNSMZg44LXLB5E9RkSETE0Wh4QoALdNh1koKoF7/mA==", - "type": "package", - "path": "microsoft.netcore.portable.compatibility/1.0.0", - "files": [ - "Microsoft.NETCore.Portable.Compatibility.1.0.0.nupkg.sha512", - "Microsoft.NETCore.Portable.Compatibility.nuspec", - "lib/dnxcore50/System.ComponentModel.DataAnnotations.dll", - "lib/dnxcore50/System.Core.dll", - "lib/dnxcore50/System.Net.dll", - "lib/dnxcore50/System.Numerics.dll", - "lib/dnxcore50/System.Runtime.Serialization.dll", - "lib/dnxcore50/System.ServiceModel.Web.dll", - "lib/dnxcore50/System.ServiceModel.dll", - "lib/dnxcore50/System.Windows.dll", - "lib/dnxcore50/System.Xml.Linq.dll", - "lib/dnxcore50/System.Xml.Serialization.dll", - "lib/dnxcore50/System.Xml.dll", - "lib/dnxcore50/System.dll", - "lib/net45/_._", - "lib/netcore50/System.ComponentModel.DataAnnotations.dll", - "lib/netcore50/System.Core.dll", - "lib/netcore50/System.Net.dll", - "lib/netcore50/System.Numerics.dll", - "lib/netcore50/System.Runtime.Serialization.dll", - "lib/netcore50/System.ServiceModel.Web.dll", - "lib/netcore50/System.ServiceModel.dll", - "lib/netcore50/System.Windows.dll", - "lib/netcore50/System.Xml.Linq.dll", - "lib/netcore50/System.Xml.Serialization.dll", - "lib/netcore50/System.Xml.dll", - "lib/netcore50/System.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.ComponentModel.DataAnnotations.dll", - "ref/dotnet/System.Core.dll", - "ref/dotnet/System.Net.dll", - "ref/dotnet/System.Numerics.dll", - "ref/dotnet/System.Runtime.Serialization.dll", - "ref/dotnet/System.ServiceModel.Web.dll", - "ref/dotnet/System.ServiceModel.dll", - "ref/dotnet/System.Windows.dll", - "ref/dotnet/System.Xml.Linq.dll", - "ref/dotnet/System.Xml.Serialization.dll", - "ref/dotnet/System.Xml.dll", - "ref/dotnet/System.dll", - "ref/dotnet/mscorlib.dll", - "ref/net45/_._", - "ref/netcore50/System.ComponentModel.DataAnnotations.dll", - "ref/netcore50/System.Core.dll", - "ref/netcore50/System.Net.dll", - "ref/netcore50/System.Numerics.dll", - "ref/netcore50/System.Runtime.Serialization.dll", - "ref/netcore50/System.ServiceModel.Web.dll", - "ref/netcore50/System.ServiceModel.dll", - "ref/netcore50/System.Windows.dll", - "ref/netcore50/System.Xml.Linq.dll", - "ref/netcore50/System.Xml.Serialization.dll", - "ref/netcore50/System.Xml.dll", - "ref/netcore50/System.dll", - "ref/netcore50/mscorlib.dll", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll", - "runtimes/aot/lib/netcore50/System.Core.dll", - "runtimes/aot/lib/netcore50/System.Net.dll", - "runtimes/aot/lib/netcore50/System.Numerics.dll", - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll", - "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll", - "runtimes/aot/lib/netcore50/System.ServiceModel.dll", - "runtimes/aot/lib/netcore50/System.Windows.dll", - "runtimes/aot/lib/netcore50/System.Xml.Linq.dll", - "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll", - "runtimes/aot/lib/netcore50/System.Xml.dll", - "runtimes/aot/lib/netcore50/System.dll", - "runtimes/aot/lib/netcore50/mscorlib.dll" - ] - }, - "Microsoft.NETCore.Runtime/1.0.0": { - "sha512": "AjaMNpXLW4miEQorIqyn6iQ+BZBId6qXkhwyeh1vl6kXLqosZusbwmLNlvj/xllSQrd3aImJbvlHusam85g+xQ==", - "type": "package", - "path": "microsoft.netcore.runtime/1.0.0", - "files": [ - "Microsoft.NETCore.Runtime.1.0.0.nupkg.sha512", - "Microsoft.NETCore.Runtime.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.Runtime.CoreCLR-arm/1.0.0": { - "sha512": "hoJfIl981eXwn9Tz8onO/J1xaYApIfp/YrhjSh9rRhml1U5Wj80LBgyp/6n+KI3VlvcAraThhnHnCTp+M3Uh+w==", - "type": "package", - "path": "microsoft.netcore.runtime.coreclr-arm/1.0.0", - "files": [ - "Microsoft.NETCore.Runtime.CoreCLR-arm.1.0.0.nupkg.sha512", - "Microsoft.NETCore.Runtime.CoreCLR-arm.nuspec", - "ref/dotnet/_._", - "runtimes/win8-arm/lib/dotnet/mscorlib.ni.dll", - "runtimes/win8-arm/native/clretwrc.dll", - "runtimes/win8-arm/native/coreclr.dll", - "runtimes/win8-arm/native/dbgshim.dll", - "runtimes/win8-arm/native/mscordaccore.dll", - "runtimes/win8-arm/native/mscordbi.dll", - "runtimes/win8-arm/native/mscorrc.debug.dll", - "runtimes/win8-arm/native/mscorrc.dll" - ] - }, - "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0": { - "sha512": "DaY5Z13xCZpnVIGluC5sCo4/0wy1rl6mptBH7v3RYi3guAmG88aSeFoQzyZepo0H0jEixUxNFM0+MB6Jc+j0bw==", - "type": "package", - "path": "microsoft.netcore.runtime.coreclr-x64/1.0.0", - "files": [ - "Microsoft.NETCore.Runtime.CoreCLR-x64.1.0.0.nupkg.sha512", - "Microsoft.NETCore.Runtime.CoreCLR-x64.nuspec", - "ref/dotnet/_._", - "runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll", - "runtimes/win7-x64/native/clretwrc.dll", - "runtimes/win7-x64/native/coreclr.dll", - "runtimes/win7-x64/native/dbgshim.dll", - "runtimes/win7-x64/native/mscordaccore.dll", - "runtimes/win7-x64/native/mscordbi.dll", - "runtimes/win7-x64/native/mscorrc.debug.dll", - "runtimes/win7-x64/native/mscorrc.dll" - ] - }, - "Microsoft.NETCore.Runtime.CoreCLR-x86/1.0.0": { - "sha512": "2LDffu5Is/X01GVPVuye4Wmz9/SyGDNq1Opgl5bXG3206cwNiCwsQgILOtfSWVp5mn4w401+8cjhBy3THW8HQQ==", - "type": "package", - "path": "microsoft.netcore.runtime.coreclr-x86/1.0.0", - "files": [ - "Microsoft.NETCore.Runtime.CoreCLR-x86.1.0.0.nupkg.sha512", - "Microsoft.NETCore.Runtime.CoreCLR-x86.nuspec", - "ref/dotnet/_._", - "runtimes/win7-x86/lib/dotnet/mscorlib.ni.dll", - "runtimes/win7-x86/native/clretwrc.dll", - "runtimes/win7-x86/native/coreclr.dll", - "runtimes/win7-x86/native/dbgshim.dll", - "runtimes/win7-x86/native/mscordaccore.dll", - "runtimes/win7-x86/native/mscordbi.dll", - "runtimes/win7-x86/native/mscorrc.debug.dll", - "runtimes/win7-x86/native/mscorrc.dll" - ] - }, - "Microsoft.NETCore.Runtime.Native/1.0.0": { - "sha512": "tMsWWrH1AJCguiM22zK/vr6COxqz62Q1F02B07IXAUN405R3HGk5SkD/DL0Hte+OTjNtW9LkKXpOggGBRwYFNg==", - "type": "package", - "path": "microsoft.netcore.runtime.native/1.0.0", - "files": [ - "Microsoft.NETCore.Runtime.Native.1.0.0.nupkg.sha512", - "Microsoft.NETCore.Runtime.Native.nuspec", - "_._" - ] - }, - "Microsoft.NETCore.Targets/1.0.0": { - "sha512": "XfITpPjYLYRmAeZtb9diw6P7ylLQsSC1U2a/xj10iQpnHxkiLEBXop/psw15qMPuNca7lqgxWvzZGpQxphuXaw==", - "type": "package", - "path": "microsoft.netcore.targets/1.0.0", - "files": [ - "Microsoft.NETCore.Targets.1.0.0.nupkg.sha512", - "Microsoft.NETCore.Targets.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": { - "sha512": "jszcJ6okLlhqF4OQbhSbixLOuLUyVT3BP7Y7/i7fcDMwnHBd1Pmdz6M1Al9SMDKVLA2oSaItg4tq6C0ydv8lYQ==", - "type": "package", - "path": "microsoft.netcore.targets.universalwindowsplatform/5.0.0", - "files": [ - "Microsoft.NETCore.Targets.UniversalWindowsPlatform.5.0.0.nupkg.sha512", - "Microsoft.NETCore.Targets.UniversalWindowsPlatform.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": { - "sha512": "D0nsAm+yTk0oSSC7E6PcmuuEewBAQbGgIXNcCnRqQ4qLPdQLMjMHg8cilGs3xZgwTRQmMtEn45TAatrU1otWPQ==", - "type": "package", - "path": "microsoft.netcore.universalwindowsplatform/5.0.0", - "files": [ - "Microsoft.NETCore.UniversalWindowsPlatform.5.0.0.nupkg.sha512", - "Microsoft.NETCore.UniversalWindowsPlatform.nuspec", - "_._" - ] - }, - "Microsoft.NETCore.Windows.ApiSets-x64/1.0.0": { - "sha512": "NC+dpFMdhujz2sWAdJ8EmBk07p1zOlNi0FCCnZEbzftABpw9xZ99EMP/bUJrPTgCxHfzJAiuLPOtAauzVINk0w==", - "type": "package", - "path": "microsoft.netcore.windows.apisets-x64/1.0.0", - "files": [ - "Microsoft.NETCore.Windows.ApiSets-x64.1.0.0.nupkg.sha512", - "Microsoft.NETCore.Windows.ApiSets-x64.nuspec", - "runtimes/win10-x64/native/_._", - "runtimes/win7-x64/native/API-MS-Win-Base-Util-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll", - "runtimes/win7-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll", - "runtimes/win7-x64/native/API-MS-Win-Core-PrivateProfile-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Core-String-L2-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Core-StringAnsi-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-EventLog-Legacy-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Eventing-Consumer-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Eventing-Controller-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Eventing-Legacy-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Eventing-Provider-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Security-LsaPolicy-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-devices-config-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-devices-config-L1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-com-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-com-private-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-comm-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-console-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-console-l2-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-datetime-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-datetime-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-debug-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-debug-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-delayload-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-errorhandling-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-errorhandling-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-fibers-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-fibers-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-file-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-file-l1-2-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-file-l1-2-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-file-l2-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-file-l2-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-handle-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-heap-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-heap-obsolete-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-interlocked-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-io-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-io-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-kernel32-legacy-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll", - "runtimes/win7-x64/native/api-ms-win-core-libraryloader-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-libraryloader-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-localization-l1-2-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-localization-l1-2-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-localization-l2-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-localization-obsolete-l1-2-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-2.dll", - "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-3.dll", - "runtimes/win7-x64/native/api-ms-win-core-namedpipe-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-namedpipe-l1-2-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-normalization-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-privateprofile-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-processenvironment-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-processenvironment-l1-2-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-processsecurity-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-processthreads-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-processthreads-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-processthreads-l1-1-2.dll", - "runtimes/win7-x64/native/api-ms-win-core-profile-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-psapi-ansi-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-psapi-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-psapi-obsolete-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-realtime-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-registry-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-registry-l2-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-rtlsupport-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-shlwapi-legacy-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-shutdown-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-shutdown-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-string-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-string-obsolete-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-string-obsolete-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-stringloader-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-stringloader-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-synch-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-synch-l1-2-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-2.dll", - "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-3.dll", - "runtimes/win7-x64/native/api-ms-win-core-threadpool-l1-2-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-threadpool-legacy-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-threadpool-private-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-timezone-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-url-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-util-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-version-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-winrt-error-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-winrt-error-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-winrt-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-winrt-registration-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-winrt-robuffer-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-winrt-string-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-wow64-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-xstate-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-xstate-l2-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-ro-typeresolution-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-security-base-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-security-cpwl-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-security-cryptoapi-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-security-lsalookup-l2-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-security-lsalookup-l2-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-security-provider-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-security-sddl-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-service-core-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-service-core-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-service-management-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-service-management-l2-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-service-private-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-service-private-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-service-winsvc-l1-1-0.dll", - "runtimes/win7-x64/native/ext-ms-win-advapi32-encryptedfile-l1-1-0.dll", - "runtimes/win8-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll", - "runtimes/win8-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll", - "runtimes/win8-x64/native/API-MS-Win-devices-config-L1-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-file-l1-2-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-file-l2-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll", - "runtimes/win8-x64/native/api-ms-win-core-localization-l1-2-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-localization-obsolete-l1-2-0.dll", - "runtimes/win8-x64/native/api-ms-win-core-memory-l1-1-2.dll", - "runtimes/win8-x64/native/api-ms-win-core-memory-l1-1-3.dll", - "runtimes/win8-x64/native/api-ms-win-core-namedpipe-l1-2-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-privateprofile-l1-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-processthreads-l1-1-2.dll", - "runtimes/win8-x64/native/api-ms-win-core-shutdown-l1-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-string-obsolete-l1-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-stringloader-l1-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-sysinfo-l1-2-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-sysinfo-l1-2-2.dll", - "runtimes/win8-x64/native/api-ms-win-core-sysinfo-l1-2-3.dll", - "runtimes/win8-x64/native/api-ms-win-core-winrt-error-l1-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-xstate-l2-1-0.dll", - "runtimes/win8-x64/native/api-ms-win-security-cpwl-l1-1-0.dll", - "runtimes/win8-x64/native/api-ms-win-security-cryptoapi-l1-1-0.dll", - "runtimes/win8-x64/native/api-ms-win-security-lsalookup-l2-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-service-private-l1-1-1.dll", - "runtimes/win81-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll", - "runtimes/win81-x64/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll", - "runtimes/win81-x64/native/api-ms-win-core-memory-l1-1-3.dll", - "runtimes/win81-x64/native/api-ms-win-core-namedpipe-l1-2-1.dll", - "runtimes/win81-x64/native/api-ms-win-core-string-obsolete-l1-1-1.dll", - "runtimes/win81-x64/native/api-ms-win-core-sysinfo-l1-2-2.dll", - "runtimes/win81-x64/native/api-ms-win-core-sysinfo-l1-2-3.dll", - "runtimes/win81-x64/native/api-ms-win-security-cpwl-l1-1-0.dll" - ] - }, - "Microsoft.NETCore.Windows.ApiSets-x86/1.0.0": { - "sha512": "/HDRdhz5bZyhHwQ/uk/IbnDIX5VDTsHntEZYkTYo57dM+U3Ttel9/OJv0mjL64wTO/QKUJJNKp9XO+m7nSVjJQ==", - "type": "package", - "path": "microsoft.netcore.windows.apisets-x86/1.0.0", - "files": [ - "Microsoft.NETCore.Windows.ApiSets-x86.1.0.0.nupkg.sha512", - "Microsoft.NETCore.Windows.ApiSets-x86.nuspec", - "runtimes/win10-x86/native/_._", - "runtimes/win7-x86/native/API-MS-Win-Base-Util-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll", - "runtimes/win7-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll", - "runtimes/win7-x86/native/API-MS-Win-Core-PrivateProfile-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Core-String-L2-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Core-StringAnsi-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-EventLog-Legacy-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Eventing-Consumer-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Eventing-Controller-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Eventing-Legacy-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Eventing-Provider-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Security-LsaPolicy-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-devices-config-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-devices-config-L1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-com-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-com-private-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-comm-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-console-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-console-l2-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-datetime-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-datetime-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-debug-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-debug-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-delayload-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-errorhandling-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-errorhandling-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-fibers-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-fibers-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-file-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-file-l1-2-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-file-l1-2-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-file-l2-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-file-l2-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-handle-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-heap-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-heap-obsolete-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-interlocked-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-io-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-io-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-kernel32-legacy-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll", - "runtimes/win7-x86/native/api-ms-win-core-libraryloader-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-libraryloader-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-localization-l1-2-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-localization-l1-2-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-localization-l2-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-localization-obsolete-l1-2-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-2.dll", - "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-3.dll", - "runtimes/win7-x86/native/api-ms-win-core-namedpipe-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-namedpipe-l1-2-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-normalization-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-privateprofile-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-processenvironment-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-processenvironment-l1-2-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-processsecurity-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-processthreads-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-processthreads-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-processthreads-l1-1-2.dll", - "runtimes/win7-x86/native/api-ms-win-core-profile-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-psapi-ansi-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-psapi-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-psapi-obsolete-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-realtime-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-registry-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-registry-l2-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-rtlsupport-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-shlwapi-legacy-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-shutdown-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-shutdown-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-string-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-string-obsolete-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-string-obsolete-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-stringloader-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-stringloader-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-synch-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-synch-l1-2-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-2.dll", - "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-3.dll", - "runtimes/win7-x86/native/api-ms-win-core-threadpool-l1-2-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-threadpool-legacy-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-threadpool-private-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-timezone-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-url-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-util-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-version-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-winrt-error-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-winrt-error-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-winrt-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-winrt-registration-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-winrt-robuffer-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-winrt-string-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-wow64-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-xstate-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-xstate-l2-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-ro-typeresolution-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-security-base-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-security-cpwl-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-security-cryptoapi-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-security-lsalookup-l2-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-security-lsalookup-l2-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-security-provider-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-security-sddl-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-service-core-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-service-core-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-service-management-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-service-management-l2-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-service-private-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-service-private-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-service-winsvc-l1-1-0.dll", - "runtimes/win7-x86/native/ext-ms-win-advapi32-encryptedfile-l1-1-0.dll", - "runtimes/win8-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll", - "runtimes/win8-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll", - "runtimes/win8-x86/native/API-MS-Win-devices-config-L1-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-file-l1-2-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-file-l2-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll", - "runtimes/win8-x86/native/api-ms-win-core-localization-l1-2-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-localization-obsolete-l1-2-0.dll", - "runtimes/win8-x86/native/api-ms-win-core-memory-l1-1-2.dll", - "runtimes/win8-x86/native/api-ms-win-core-memory-l1-1-3.dll", - "runtimes/win8-x86/native/api-ms-win-core-namedpipe-l1-2-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-privateprofile-l1-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-processthreads-l1-1-2.dll", - "runtimes/win8-x86/native/api-ms-win-core-shutdown-l1-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-string-obsolete-l1-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-stringloader-l1-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-sysinfo-l1-2-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-sysinfo-l1-2-2.dll", - "runtimes/win8-x86/native/api-ms-win-core-sysinfo-l1-2-3.dll", - "runtimes/win8-x86/native/api-ms-win-core-winrt-error-l1-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-xstate-l2-1-0.dll", - "runtimes/win8-x86/native/api-ms-win-security-cpwl-l1-1-0.dll", - "runtimes/win8-x86/native/api-ms-win-security-cryptoapi-l1-1-0.dll", - "runtimes/win8-x86/native/api-ms-win-security-lsalookup-l2-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-service-private-l1-1-1.dll", - "runtimes/win81-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll", - "runtimes/win81-x86/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll", - "runtimes/win81-x86/native/api-ms-win-core-memory-l1-1-3.dll", - "runtimes/win81-x86/native/api-ms-win-core-namedpipe-l1-2-1.dll", - "runtimes/win81-x86/native/api-ms-win-core-string-obsolete-l1-1-1.dll", - "runtimes/win81-x86/native/api-ms-win-core-sysinfo-l1-2-2.dll", - "runtimes/win81-x86/native/api-ms-win-core-sysinfo-l1-2-3.dll", - "runtimes/win81-x86/native/api-ms-win-security-cpwl-l1-1-0.dll" - ] - }, - "Microsoft.VisualBasic/10.0.0": { - "sha512": "5BEm2/HAVd97whRlCChU7rmSh/9cwGlZ/NTNe3Jl07zuPWfKQq5TUvVNUmdvmEe8QRecJLZ4/e7WF1i1O8V42g==", - "type": "package", - "path": "microsoft.visualbasic/10.0.0", - "files": [ - "Microsoft.VisualBasic.10.0.0.nupkg.sha512", - "Microsoft.VisualBasic.nuspec", - "lib/dotnet/Microsoft.VisualBasic.dll", - "lib/net45/_._", - "lib/netcore50/Microsoft.VisualBasic.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "ref/dotnet/Microsoft.VisualBasic.dll", - "ref/dotnet/Microsoft.VisualBasic.xml", - "ref/dotnet/de/Microsoft.VisualBasic.xml", - "ref/dotnet/es/Microsoft.VisualBasic.xml", - "ref/dotnet/fr/Microsoft.VisualBasic.xml", - "ref/dotnet/it/Microsoft.VisualBasic.xml", - "ref/dotnet/ja/Microsoft.VisualBasic.xml", - "ref/dotnet/ko/Microsoft.VisualBasic.xml", - "ref/dotnet/ru/Microsoft.VisualBasic.xml", - "ref/dotnet/zh-hans/Microsoft.VisualBasic.xml", - "ref/dotnet/zh-hant/Microsoft.VisualBasic.xml", - "ref/net45/_._", - "ref/netcore50/Microsoft.VisualBasic.dll", - "ref/netcore50/Microsoft.VisualBasic.xml", - "ref/win8/_._", - "ref/wpa81/_._" - ] - }, - "Microsoft.Win32.Primitives/4.0.0": { - "sha512": "CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==", - "type": "package", - "path": "microsoft.win32.primitives/4.0.0", - "files": [ - "Microsoft.Win32.Primitives.4.0.0.nupkg.sha512", - "Microsoft.Win32.Primitives.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/Microsoft.Win32.Primitives.dll", - "lib/net46/Microsoft.Win32.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/Microsoft.Win32.Primitives.dll", - "ref/dotnet/Microsoft.Win32.Primitives.xml", - "ref/dotnet/de/Microsoft.Win32.Primitives.xml", - "ref/dotnet/es/Microsoft.Win32.Primitives.xml", - "ref/dotnet/fr/Microsoft.Win32.Primitives.xml", - "ref/dotnet/it/Microsoft.Win32.Primitives.xml", - "ref/dotnet/ja/Microsoft.Win32.Primitives.xml", - "ref/dotnet/ko/Microsoft.Win32.Primitives.xml", - "ref/dotnet/ru/Microsoft.Win32.Primitives.xml", - "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml", - "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml", - "ref/net46/Microsoft.Win32.Primitives.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.AppContext/4.0.0": { - "sha512": "gUoYgAWDC3+xhKeU5KSLbYDhTdBYk9GssrMSCcWUADzOglW+s0AmwVhOUGt2tL5xUl7ZXoYTPdA88zCgKrlG0A==", - "type": "package", - "path": "system.appcontext/4.0.0", - "files": [ - "System.AppContext.4.0.0.nupkg.sha512", - "System.AppContext.nuspec", - "lib/DNXCore50/System.AppContext.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.AppContext.dll", - "lib/netcore50/System.AppContext.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.AppContext.dll", - "ref/dotnet/System.AppContext.xml", - "ref/dotnet/de/System.AppContext.xml", - "ref/dotnet/es/System.AppContext.xml", - "ref/dotnet/fr/System.AppContext.xml", - "ref/dotnet/it/System.AppContext.xml", - "ref/dotnet/ja/System.AppContext.xml", - "ref/dotnet/ko/System.AppContext.xml", - "ref/dotnet/ru/System.AppContext.xml", - "ref/dotnet/zh-hans/System.AppContext.xml", - "ref/dotnet/zh-hant/System.AppContext.xml", - "ref/net46/System.AppContext.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Collections/4.0.10": { - "sha512": "ux6ilcZZjV/Gp7JEZpe+2V1eTueq6NuoGRM3eZCFuPM25hLVVgCRuea6STW8hvqreIOE59irJk5/ovpA5xQipw==", - "type": "package", - "path": "system.collections/4.0.10", - "files": [ - "System.Collections.4.0.10.nupkg.sha512", - "System.Collections.nuspec", - "lib/DNXCore50/System.Collections.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Collections.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Collections.dll", - "ref/dotnet/System.Collections.xml", - "ref/dotnet/de/System.Collections.xml", - "ref/dotnet/es/System.Collections.xml", - "ref/dotnet/fr/System.Collections.xml", - "ref/dotnet/it/System.Collections.xml", - "ref/dotnet/ja/System.Collections.xml", - "ref/dotnet/ko/System.Collections.xml", - "ref/dotnet/ru/System.Collections.xml", - "ref/dotnet/zh-hans/System.Collections.xml", - "ref/dotnet/zh-hant/System.Collections.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Collections.dll" - ] - }, - "System.Collections.Concurrent/4.0.10": { - "sha512": "ZtMEqOPAjAIqR8fqom9AOKRaB94a+emO2O8uOP6vyJoNswSPrbiwN7iH53rrVpvjMVx0wr4/OMpI7486uGZjbw==", - "type": "package", - "path": "system.collections.concurrent/4.0.10", - "files": [ - "System.Collections.Concurrent.4.0.10.nupkg.sha512", - "System.Collections.Concurrent.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.Collections.Concurrent.dll", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Collections.Concurrent.dll", - "ref/dotnet/System.Collections.Concurrent.xml", - "ref/dotnet/de/System.Collections.Concurrent.xml", - "ref/dotnet/es/System.Collections.Concurrent.xml", - "ref/dotnet/fr/System.Collections.Concurrent.xml", - "ref/dotnet/it/System.Collections.Concurrent.xml", - "ref/dotnet/ja/System.Collections.Concurrent.xml", - "ref/dotnet/ko/System.Collections.Concurrent.xml", - "ref/dotnet/ru/System.Collections.Concurrent.xml", - "ref/dotnet/zh-hans/System.Collections.Concurrent.xml", - "ref/dotnet/zh-hant/System.Collections.Concurrent.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Collections.Immutable/1.1.37": { - "sha512": "fTpqwZYBzoklTT+XjTRK8KxvmrGkYHzBiylCcKyQcxiOM8k+QvhNBxRvFHDWzy4OEP5f8/9n+xQ9mEgEXY+muA==", - "type": "package", - "path": "system.collections.immutable/1.1.37", - "files": [ - "System.Collections.Immutable.1.1.37.nupkg.sha512", - "System.Collections.Immutable.nuspec", - "lib/dotnet/System.Collections.Immutable.dll", - "lib/dotnet/System.Collections.Immutable.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml" - ] - }, - "System.Collections.NonGeneric/4.0.0": { - "sha512": "rVgwrFBMkmp8LI6GhAYd6Bx+2uLIXjRfNg6Ie+ASfX8ESuh9e2HNxFy2yh1MPIXZq3OAYa+0mmULVwpnEC6UDA==", - "type": "package", - "path": "system.collections.nongeneric/4.0.0", - "files": [ - "System.Collections.NonGeneric.4.0.0.nupkg.sha512", - "System.Collections.NonGeneric.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.Collections.NonGeneric.dll", - "lib/net46/System.Collections.NonGeneric.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Collections.NonGeneric.dll", - "ref/dotnet/System.Collections.NonGeneric.xml", - "ref/dotnet/de/System.Collections.NonGeneric.xml", - "ref/dotnet/es/System.Collections.NonGeneric.xml", - "ref/dotnet/fr/System.Collections.NonGeneric.xml", - "ref/dotnet/it/System.Collections.NonGeneric.xml", - "ref/dotnet/ja/System.Collections.NonGeneric.xml", - "ref/dotnet/ko/System.Collections.NonGeneric.xml", - "ref/dotnet/ru/System.Collections.NonGeneric.xml", - "ref/dotnet/zh-hans/System.Collections.NonGeneric.xml", - "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml", - "ref/net46/System.Collections.NonGeneric.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Collections.Specialized/4.0.0": { - "sha512": "poJFwQCUOoXqvdoGxx+3p8Z63yawcYKPBSFP67Z2jICeOINvEIQZN7mVOAnC7gsVF0WU+A2wtVwfhagC7UCgAg==", - "type": "package", - "path": "system.collections.specialized/4.0.0", - "files": [ - "System.Collections.Specialized.4.0.0.nupkg.sha512", - "System.Collections.Specialized.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.Collections.Specialized.dll", - "lib/net46/System.Collections.Specialized.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Collections.Specialized.dll", - "ref/dotnet/System.Collections.Specialized.xml", - "ref/dotnet/de/System.Collections.Specialized.xml", - "ref/dotnet/es/System.Collections.Specialized.xml", - "ref/dotnet/fr/System.Collections.Specialized.xml", - "ref/dotnet/it/System.Collections.Specialized.xml", - "ref/dotnet/ja/System.Collections.Specialized.xml", - "ref/dotnet/ko/System.Collections.Specialized.xml", - "ref/dotnet/ru/System.Collections.Specialized.xml", - "ref/dotnet/zh-hans/System.Collections.Specialized.xml", - "ref/dotnet/zh-hant/System.Collections.Specialized.xml", - "ref/net46/System.Collections.Specialized.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.ComponentModel/4.0.0": { - "sha512": "BzpLdSi++ld7rJLOOt5f/G9GxujP202bBgKORsHcGV36rLB0mfSA2h8chTMoBzFhgN7TE14TmJ2J7Q1RyNCTAw==", - "type": "package", - "path": "system.componentmodel/4.0.0", - "files": [ - "System.ComponentModel.4.0.0.nupkg.sha512", - "System.ComponentModel.nuspec", - "lib/dotnet/System.ComponentModel.dll", - "lib/net45/_._", - "lib/netcore50/System.ComponentModel.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.ComponentModel.dll", - "ref/dotnet/System.ComponentModel.xml", - "ref/dotnet/de/System.ComponentModel.xml", - "ref/dotnet/es/System.ComponentModel.xml", - "ref/dotnet/fr/System.ComponentModel.xml", - "ref/dotnet/it/System.ComponentModel.xml", - "ref/dotnet/ja/System.ComponentModel.xml", - "ref/dotnet/ko/System.ComponentModel.xml", - "ref/dotnet/ru/System.ComponentModel.xml", - "ref/dotnet/zh-hans/System.ComponentModel.xml", - "ref/dotnet/zh-hant/System.ComponentModel.xml", - "ref/net45/_._", - "ref/netcore50/System.ComponentModel.dll", - "ref/netcore50/System.ComponentModel.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._" - ] - }, - "System.ComponentModel.Annotations/4.0.10": { - "sha512": "7+XGyEZx24nP1kpHxCB9e+c6D0fdVDvFwE1xujE9BzlXyNVcy5J5aIO0H/ECupx21QpyRvzZibGAHfL/XLL6dw==", - "type": "package", - "path": "system.componentmodel.annotations/4.0.10", - "files": [ - "System.ComponentModel.Annotations.4.0.10.nupkg.sha512", - "System.ComponentModel.Annotations.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.ComponentModel.Annotations.dll", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.ComponentModel.Annotations.dll", - "ref/dotnet/System.ComponentModel.Annotations.xml", - "ref/dotnet/de/System.ComponentModel.Annotations.xml", - "ref/dotnet/es/System.ComponentModel.Annotations.xml", - "ref/dotnet/fr/System.ComponentModel.Annotations.xml", - "ref/dotnet/it/System.ComponentModel.Annotations.xml", - "ref/dotnet/ja/System.ComponentModel.Annotations.xml", - "ref/dotnet/ko/System.ComponentModel.Annotations.xml", - "ref/dotnet/ru/System.ComponentModel.Annotations.xml", - "ref/dotnet/zh-hans/System.ComponentModel.Annotations.xml", - "ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.ComponentModel.EventBasedAsync/4.0.10": { - "sha512": "d6kXcHUgP0jSPXEQ6hXJYCO6CzfoCi7t9vR3BfjSQLrj4HzpuATpx1gkN7itmTW1O+wjuw6rai4378Nj6N70yw==", - "type": "package", - "path": "system.componentmodel.eventbasedasync/4.0.10", - "files": [ - "System.ComponentModel.EventBasedAsync.4.0.10.nupkg.sha512", - "System.ComponentModel.EventBasedAsync.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", - "ref/dotnet/System.ComponentModel.EventBasedAsync.xml", - "ref/dotnet/de/System.ComponentModel.EventBasedAsync.xml", - "ref/dotnet/es/System.ComponentModel.EventBasedAsync.xml", - "ref/dotnet/fr/System.ComponentModel.EventBasedAsync.xml", - "ref/dotnet/it/System.ComponentModel.EventBasedAsync.xml", - "ref/dotnet/ja/System.ComponentModel.EventBasedAsync.xml", - "ref/dotnet/ko/System.ComponentModel.EventBasedAsync.xml", - "ref/dotnet/ru/System.ComponentModel.EventBasedAsync.xml", - "ref/dotnet/zh-hans/System.ComponentModel.EventBasedAsync.xml", - "ref/dotnet/zh-hant/System.ComponentModel.EventBasedAsync.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Data.Common/4.0.0": { - "sha512": "SA7IdoTWiImVr0exDM68r0mKmR4f/qFGxZUrJQKu4YS7F+3afWzSOCezHxWdevQ0ONi4WRQsOiv+Zf9p8H0Feg==", - "type": "package", - "path": "system.data.common/4.0.0", - "files": [ - "System.Data.Common.4.0.0.nupkg.sha512", - "System.Data.Common.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.Data.Common.dll", - "lib/net46/System.Data.Common.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Data.Common.dll", - "ref/dotnet/System.Data.Common.xml", - "ref/dotnet/de/System.Data.Common.xml", - "ref/dotnet/es/System.Data.Common.xml", - "ref/dotnet/fr/System.Data.Common.xml", - "ref/dotnet/it/System.Data.Common.xml", - "ref/dotnet/ja/System.Data.Common.xml", - "ref/dotnet/ko/System.Data.Common.xml", - "ref/dotnet/ru/System.Data.Common.xml", - "ref/dotnet/zh-hans/System.Data.Common.xml", - "ref/dotnet/zh-hant/System.Data.Common.xml", - "ref/net46/System.Data.Common.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Diagnostics.Contracts/4.0.0": { - "sha512": "lMc7HNmyIsu0pKTdA4wf+FMq5jvouUd+oUpV4BdtyqoV0Pkbg9u/7lTKFGqpjZRQosWHq1+B32Lch2wf4AmloA==", - "type": "package", - "path": "system.diagnostics.contracts/4.0.0", - "files": [ - "System.Diagnostics.Contracts.4.0.0.nupkg.sha512", - "System.Diagnostics.Contracts.nuspec", - "lib/DNXCore50/System.Diagnostics.Contracts.dll", - "lib/net45/_._", - "lib/netcore50/System.Diagnostics.Contracts.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Diagnostics.Contracts.dll", - "ref/dotnet/System.Diagnostics.Contracts.xml", - "ref/dotnet/de/System.Diagnostics.Contracts.xml", - "ref/dotnet/es/System.Diagnostics.Contracts.xml", - "ref/dotnet/fr/System.Diagnostics.Contracts.xml", - "ref/dotnet/it/System.Diagnostics.Contracts.xml", - "ref/dotnet/ja/System.Diagnostics.Contracts.xml", - "ref/dotnet/ko/System.Diagnostics.Contracts.xml", - "ref/dotnet/ru/System.Diagnostics.Contracts.xml", - "ref/dotnet/zh-hans/System.Diagnostics.Contracts.xml", - "ref/dotnet/zh-hant/System.Diagnostics.Contracts.xml", - "ref/net45/_._", - "ref/netcore50/System.Diagnostics.Contracts.dll", - "ref/netcore50/System.Diagnostics.Contracts.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll" - ] - }, - "System.Diagnostics.Debug/4.0.10": { - "sha512": "pi2KthuvI2LWV2c2V+fwReDsDiKpNl040h6DcwFOb59SafsPT/V1fCy0z66OKwysurJkBMmp5j5CBe3Um+ub0g==", - "type": "package", - "path": "system.diagnostics.debug/4.0.10", - "files": [ - "System.Diagnostics.Debug.4.0.10.nupkg.sha512", - "System.Diagnostics.Debug.nuspec", - "lib/DNXCore50/System.Diagnostics.Debug.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Diagnostics.Debug.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Diagnostics.Debug.dll", - "ref/dotnet/System.Diagnostics.Debug.xml", - "ref/dotnet/de/System.Diagnostics.Debug.xml", - "ref/dotnet/es/System.Diagnostics.Debug.xml", - "ref/dotnet/fr/System.Diagnostics.Debug.xml", - "ref/dotnet/it/System.Diagnostics.Debug.xml", - "ref/dotnet/ja/System.Diagnostics.Debug.xml", - "ref/dotnet/ko/System.Diagnostics.Debug.xml", - "ref/dotnet/ru/System.Diagnostics.Debug.xml", - "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", - "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll" - ] - }, - "System.Diagnostics.StackTrace/4.0.0": { - "sha512": "PItgenqpRiMqErvQONBlfDwctKpWVrcDSW5pppNZPJ6Bpiyz+KjsWoSiaqs5dt03HEbBTMNCrZb8KCkh7YfXmw==", - "type": "package", - "path": "system.diagnostics.stacktrace/4.0.0", - "files": [ - "System.Diagnostics.StackTrace.4.0.0.nupkg.sha512", - "System.Diagnostics.StackTrace.nuspec", - "lib/DNXCore50/System.Diagnostics.StackTrace.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Diagnostics.StackTrace.dll", - "lib/netcore50/System.Diagnostics.StackTrace.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Diagnostics.StackTrace.dll", - "ref/dotnet/System.Diagnostics.StackTrace.xml", - "ref/dotnet/de/System.Diagnostics.StackTrace.xml", - "ref/dotnet/es/System.Diagnostics.StackTrace.xml", - "ref/dotnet/fr/System.Diagnostics.StackTrace.xml", - "ref/dotnet/it/System.Diagnostics.StackTrace.xml", - "ref/dotnet/ja/System.Diagnostics.StackTrace.xml", - "ref/dotnet/ko/System.Diagnostics.StackTrace.xml", - "ref/dotnet/ru/System.Diagnostics.StackTrace.xml", - "ref/dotnet/zh-hans/System.Diagnostics.StackTrace.xml", - "ref/dotnet/zh-hant/System.Diagnostics.StackTrace.xml", - "ref/net46/System.Diagnostics.StackTrace.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll" - ] - }, - "System.Diagnostics.Tools/4.0.0": { - "sha512": "uw5Qi2u5Cgtv4xv3+8DeB63iaprPcaEHfpeJqlJiLjIVy6v0La4ahJ6VW9oPbJNIjcavd24LKq0ctT9ssuQXsw==", - "type": "package", - "path": "system.diagnostics.tools/4.0.0", - "files": [ - "System.Diagnostics.Tools.4.0.0.nupkg.sha512", - "System.Diagnostics.Tools.nuspec", - "lib/DNXCore50/System.Diagnostics.Tools.dll", - "lib/net45/_._", - "lib/netcore50/System.Diagnostics.Tools.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Diagnostics.Tools.dll", - "ref/dotnet/System.Diagnostics.Tools.xml", - "ref/dotnet/de/System.Diagnostics.Tools.xml", - "ref/dotnet/es/System.Diagnostics.Tools.xml", - "ref/dotnet/fr/System.Diagnostics.Tools.xml", - "ref/dotnet/it/System.Diagnostics.Tools.xml", - "ref/dotnet/ja/System.Diagnostics.Tools.xml", - "ref/dotnet/ko/System.Diagnostics.Tools.xml", - "ref/dotnet/ru/System.Diagnostics.Tools.xml", - "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml", - "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml", - "ref/net45/_._", - "ref/netcore50/System.Diagnostics.Tools.dll", - "ref/netcore50/System.Diagnostics.Tools.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll" - ] - }, - "System.Diagnostics.Tracing/4.0.20": { - "sha512": "gn/wexGHc35Fv++5L1gYHMY5g25COfiZ0PGrL+3PfwzoJd4X2LbTAm/U8d385SI6BKQBI/z4dQfvneS9J27+Tw==", - "type": "package", - "path": "system.diagnostics.tracing/4.0.20", - "files": [ - "System.Diagnostics.Tracing.4.0.20.nupkg.sha512", - "System.Diagnostics.Tracing.nuspec", - "lib/DNXCore50/System.Diagnostics.Tracing.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Diagnostics.Tracing.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Diagnostics.Tracing.dll", - "ref/dotnet/System.Diagnostics.Tracing.xml", - "ref/dotnet/de/System.Diagnostics.Tracing.xml", - "ref/dotnet/es/System.Diagnostics.Tracing.xml", - "ref/dotnet/fr/System.Diagnostics.Tracing.xml", - "ref/dotnet/it/System.Diagnostics.Tracing.xml", - "ref/dotnet/ja/System.Diagnostics.Tracing.xml", - "ref/dotnet/ko/System.Diagnostics.Tracing.xml", - "ref/dotnet/ru/System.Diagnostics.Tracing.xml", - "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", - "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll" - ] - }, - "System.Dynamic.Runtime/4.0.10": { - "sha512": "r10VTLdlxtYp46BuxomHnwx7vIoMOr04CFoC/jJJfY22f7HQQ4P+cXY2Nxo6/rIxNNqOxwdbQQwv7Gl88Jsu1w==", - "type": "package", - "path": "system.dynamic.runtime/4.0.10", - "files": [ - "System.Dynamic.Runtime.4.0.10.nupkg.sha512", - "System.Dynamic.Runtime.nuspec", - "lib/DNXCore50/System.Dynamic.Runtime.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Dynamic.Runtime.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Dynamic.Runtime.dll", - "ref/dotnet/System.Dynamic.Runtime.xml", - "ref/dotnet/de/System.Dynamic.Runtime.xml", - "ref/dotnet/es/System.Dynamic.Runtime.xml", - "ref/dotnet/fr/System.Dynamic.Runtime.xml", - "ref/dotnet/it/System.Dynamic.Runtime.xml", - "ref/dotnet/ja/System.Dynamic.Runtime.xml", - "ref/dotnet/ko/System.Dynamic.Runtime.xml", - "ref/dotnet/ru/System.Dynamic.Runtime.xml", - "ref/dotnet/zh-hans/System.Dynamic.Runtime.xml", - "ref/dotnet/zh-hant/System.Dynamic.Runtime.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll" - ] - }, - "System.Globalization/4.0.10": { - "sha512": "kzRtbbCNAxdafFBDogcM36ehA3th8c1PGiz8QRkZn8O5yMBorDHSK8/TGJPYOaCS5zdsGk0u9qXHnW91nqy7fw==", - "type": "package", - "path": "system.globalization/4.0.10", - "files": [ - "System.Globalization.4.0.10.nupkg.sha512", - "System.Globalization.nuspec", - "lib/DNXCore50/System.Globalization.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Globalization.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Globalization.dll", - "ref/dotnet/System.Globalization.xml", - "ref/dotnet/de/System.Globalization.xml", - "ref/dotnet/es/System.Globalization.xml", - "ref/dotnet/fr/System.Globalization.xml", - "ref/dotnet/it/System.Globalization.xml", - "ref/dotnet/ja/System.Globalization.xml", - "ref/dotnet/ko/System.Globalization.xml", - "ref/dotnet/ru/System.Globalization.xml", - "ref/dotnet/zh-hans/System.Globalization.xml", - "ref/dotnet/zh-hant/System.Globalization.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Globalization.dll" - ] - }, - "System.Globalization.Calendars/4.0.0": { - "sha512": "cL6WrdGKnNBx9W/iTr+jbffsEO4RLjEtOYcpVSzPNDoli6X5Q6bAfWtJYbJNOPi8Q0fXgBEvKK1ncFL/3FTqlA==", - "type": "package", - "path": "system.globalization.calendars/4.0.0", - "files": [ - "System.Globalization.Calendars.4.0.0.nupkg.sha512", - "System.Globalization.Calendars.nuspec", - "lib/DNXCore50/System.Globalization.Calendars.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Globalization.Calendars.dll", - "lib/netcore50/System.Globalization.Calendars.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Globalization.Calendars.dll", - "ref/dotnet/System.Globalization.Calendars.xml", - "ref/dotnet/de/System.Globalization.Calendars.xml", - "ref/dotnet/es/System.Globalization.Calendars.xml", - "ref/dotnet/fr/System.Globalization.Calendars.xml", - "ref/dotnet/it/System.Globalization.Calendars.xml", - "ref/dotnet/ja/System.Globalization.Calendars.xml", - "ref/dotnet/ko/System.Globalization.Calendars.xml", - "ref/dotnet/ru/System.Globalization.Calendars.xml", - "ref/dotnet/zh-hans/System.Globalization.Calendars.xml", - "ref/dotnet/zh-hant/System.Globalization.Calendars.xml", - "ref/net46/System.Globalization.Calendars.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll" - ] - }, - "System.Globalization.Extensions/4.0.0": { - "sha512": "rqbUXiwpBCvJ18ySCsjh20zleazO+6fr3s5GihC2sVwhyS0MUl6+oc5Rzk0z6CKkS4kmxbZQSeZLsK7cFSO0ng==", - "type": "package", - "path": "system.globalization.extensions/4.0.0", - "files": [ - "System.Globalization.Extensions.4.0.0.nupkg.sha512", - "System.Globalization.Extensions.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.Globalization.Extensions.dll", - "lib/net46/System.Globalization.Extensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Globalization.Extensions.dll", - "ref/dotnet/System.Globalization.Extensions.xml", - "ref/dotnet/de/System.Globalization.Extensions.xml", - "ref/dotnet/es/System.Globalization.Extensions.xml", - "ref/dotnet/fr/System.Globalization.Extensions.xml", - "ref/dotnet/it/System.Globalization.Extensions.xml", - "ref/dotnet/ja/System.Globalization.Extensions.xml", - "ref/dotnet/ko/System.Globalization.Extensions.xml", - "ref/dotnet/ru/System.Globalization.Extensions.xml", - "ref/dotnet/zh-hans/System.Globalization.Extensions.xml", - "ref/dotnet/zh-hant/System.Globalization.Extensions.xml", - "ref/net46/System.Globalization.Extensions.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.IO/4.0.10": { - "sha512": "kghf1CeYT+W2lw8a50/GxFz5HR9t6RkL4BvjxtTp1NxtEFWywnMA9W8FH/KYXiDNThcw9u/GOViDON4iJFGXIQ==", - "type": "package", - "path": "system.io/4.0.10", - "files": [ - "System.IO.4.0.10.nupkg.sha512", - "System.IO.nuspec", - "lib/DNXCore50/System.IO.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.IO.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.IO.dll", - "ref/dotnet/System.IO.xml", - "ref/dotnet/de/System.IO.xml", - "ref/dotnet/es/System.IO.xml", - "ref/dotnet/fr/System.IO.xml", - "ref/dotnet/it/System.IO.xml", - "ref/dotnet/ja/System.IO.xml", - "ref/dotnet/ko/System.IO.xml", - "ref/dotnet/ru/System.IO.xml", - "ref/dotnet/zh-hans/System.IO.xml", - "ref/dotnet/zh-hant/System.IO.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.IO.dll" - ] - }, - "System.IO.Compression/4.0.0": { - "sha512": "S+ljBE3py8pujTrsOOYHtDg2cnAifn6kBu/pfh1hMWIXd8DoVh0ADTA6Puv4q+nYj+Msm6JoFLNwuRSmztbsDQ==", - "type": "package", - "path": "system.io.compression/4.0.0", - "files": [ - "System.IO.Compression.4.0.0.nupkg.sha512", - "System.IO.Compression.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.IO.Compression.dll", - "lib/net45/_._", - "lib/netcore50/System.IO.Compression.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.IO.Compression.dll", - "ref/dotnet/System.IO.Compression.xml", - "ref/dotnet/de/System.IO.Compression.xml", - "ref/dotnet/es/System.IO.Compression.xml", - "ref/dotnet/fr/System.IO.Compression.xml", - "ref/dotnet/it/System.IO.Compression.xml", - "ref/dotnet/ja/System.IO.Compression.xml", - "ref/dotnet/ko/System.IO.Compression.xml", - "ref/dotnet/ru/System.IO.Compression.xml", - "ref/dotnet/zh-hans/System.IO.Compression.xml", - "ref/dotnet/zh-hant/System.IO.Compression.xml", - "ref/net45/_._", - "ref/netcore50/System.IO.Compression.dll", - "ref/netcore50/System.IO.Compression.xml", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json" - ] - }, - "System.IO.Compression.clrcompression-arm/4.0.0": { - "sha512": "Kk21GecAbI+H6tMP6/lMssGObbhoHwLiREiB5UkNMCypdxACuF+6gmrdDTousCUcbH28CJeo7tArrnUc+bchuw==", - "type": "package", - "path": "system.io.compression.clrcompression-arm/4.0.0", - "files": [ - "System.IO.Compression.clrcompression-arm.4.0.0.nupkg.sha512", - "System.IO.Compression.clrcompression-arm.nuspec", - "runtimes/win10-arm/native/ClrCompression.dll", - "runtimes/win7-arm/native/clrcompression.dll" - ] - }, - "System.IO.Compression.clrcompression-x64/4.0.0": { - "sha512": "Lqr+URMwKzf+8HJF6YrqEqzKzDzFJTE4OekaxqdIns71r8Ufbd8SbZa0LKl9q+7nu6Em4SkIEXVMB7plSXekOw==", - "type": "package", - "path": "system.io.compression.clrcompression-x64/4.0.0", - "files": [ - "System.IO.Compression.clrcompression-x64.4.0.0.nupkg.sha512", - "System.IO.Compression.clrcompression-x64.nuspec", - "runtimes/win10-x64/native/ClrCompression.dll", - "runtimes/win7-x64/native/clrcompression.dll" - ] - }, - "System.IO.Compression.clrcompression-x86/4.0.0": { - "sha512": "GmevpuaMRzYDXHu+xuV10fxTO8DsP7OKweWxYtkaxwVnDSj9X6RBupSiXdiveq9yj/xjZ1NbG+oRRRb99kj+VQ==", - "type": "package", - "path": "system.io.compression.clrcompression-x86/4.0.0", - "files": [ - "System.IO.Compression.clrcompression-x86.4.0.0.nupkg.sha512", - "System.IO.Compression.clrcompression-x86.nuspec", - "runtimes/win10-x86/native/ClrCompression.dll", - "runtimes/win7-x86/native/clrcompression.dll" - ] - }, - "System.IO.Compression.ZipFile/4.0.0": { - "sha512": "pwntmtsJqtt6Lez4Iyv4GVGW6DaXUTo9Rnlsx0MFagRgX+8F/sxG5S/IzDJabBj68sUWViz1QJrRZL4V9ngWDg==", - "type": "package", - "path": "system.io.compression.zipfile/4.0.0", - "files": [ - "System.IO.Compression.ZipFile.4.0.0.nupkg.sha512", - "System.IO.Compression.ZipFile.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.IO.Compression.ZipFile.dll", - "lib/net46/System.IO.Compression.ZipFile.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.IO.Compression.ZipFile.dll", - "ref/dotnet/System.IO.Compression.ZipFile.xml", - "ref/dotnet/de/System.IO.Compression.ZipFile.xml", - "ref/dotnet/es/System.IO.Compression.ZipFile.xml", - "ref/dotnet/fr/System.IO.Compression.ZipFile.xml", - "ref/dotnet/it/System.IO.Compression.ZipFile.xml", - "ref/dotnet/ja/System.IO.Compression.ZipFile.xml", - "ref/dotnet/ko/System.IO.Compression.ZipFile.xml", - "ref/dotnet/ru/System.IO.Compression.ZipFile.xml", - "ref/dotnet/zh-hans/System.IO.Compression.ZipFile.xml", - "ref/dotnet/zh-hant/System.IO.Compression.ZipFile.xml", - "ref/net46/System.IO.Compression.ZipFile.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.IO.FileSystem/4.0.0": { - "sha512": "eo05SPWfG+54UA0wxgRIYOuOslq+2QrJLXZaJDDsfLXG15OLguaItW39NYZTqUb4DeGOkU4R0wpOLOW4ynMUDQ==", - "type": "package", - "path": "system.io.filesystem/4.0.0", - "files": [ - "System.IO.FileSystem.4.0.0.nupkg.sha512", - "System.IO.FileSystem.nuspec", - "lib/DNXCore50/System.IO.FileSystem.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.dll", - "lib/netcore50/System.IO.FileSystem.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.IO.FileSystem.dll", - "ref/dotnet/System.IO.FileSystem.xml", - "ref/dotnet/de/System.IO.FileSystem.xml", - "ref/dotnet/es/System.IO.FileSystem.xml", - "ref/dotnet/fr/System.IO.FileSystem.xml", - "ref/dotnet/it/System.IO.FileSystem.xml", - "ref/dotnet/ja/System.IO.FileSystem.xml", - "ref/dotnet/ko/System.IO.FileSystem.xml", - "ref/dotnet/ru/System.IO.FileSystem.xml", - "ref/dotnet/zh-hans/System.IO.FileSystem.xml", - "ref/dotnet/zh-hant/System.IO.FileSystem.xml", - "ref/net46/System.IO.FileSystem.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "sha512": "7pJUvYi/Yq3A5nagqCCiOw3+aJp3xXc/Cjr8dnJDnER3/6kX3LEencfqmXUcPl9+7OvRNyPMNhqsLAcMK6K/KA==", - "type": "package", - "path": "system.io.filesystem.primitives/4.0.0", - "files": [ - "System.IO.FileSystem.Primitives.4.0.0.nupkg.sha512", - "System.IO.FileSystem.Primitives.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.IO.FileSystem.Primitives.dll", - "lib/net46/System.IO.FileSystem.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.IO.FileSystem.Primitives.dll", - "ref/dotnet/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/de/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/es/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/it/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", - "ref/net46/System.IO.FileSystem.Primitives.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.IO.IsolatedStorage/4.0.0": { - "sha512": "d5KimUbZ49Ki6A/uwU+Iodng+nhJvpRs7hr/828cfeXC02LxUiggnRnAu+COtWcKvJ2YbBmAGOcO4GLK4fX1+w==", - "type": "package", - "path": "system.io.isolatedstorage/4.0.0", - "files": [ - "System.IO.IsolatedStorage.4.0.0.nupkg.sha512", - "System.IO.IsolatedStorage.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/netcore50/System.IO.IsolatedStorage.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.IO.IsolatedStorage.dll", - "ref/dotnet/System.IO.IsolatedStorage.xml", - "ref/dotnet/de/System.IO.IsolatedStorage.xml", - "ref/dotnet/es/System.IO.IsolatedStorage.xml", - "ref/dotnet/fr/System.IO.IsolatedStorage.xml", - "ref/dotnet/it/System.IO.IsolatedStorage.xml", - "ref/dotnet/ja/System.IO.IsolatedStorage.xml", - "ref/dotnet/ko/System.IO.IsolatedStorage.xml", - "ref/dotnet/ru/System.IO.IsolatedStorage.xml", - "ref/dotnet/zh-hans/System.IO.IsolatedStorage.xml", - "ref/dotnet/zh-hant/System.IO.IsolatedStorage.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "sha512": "i2xczgQfwHmolORBNHxV9b5izP8VOBxgSA2gf+H55xBvwqtR+9r9adtzlc7at0MAwiLcsk6V1TZlv2vfRQr8Sw==", - "type": "package", - "path": "system.io.unmanagedmemorystream/4.0.0", - "files": [ - "System.IO.UnmanagedMemoryStream.4.0.0.nupkg.sha512", - "System.IO.UnmanagedMemoryStream.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll", - "lib/net46/System.IO.UnmanagedMemoryStream.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll", - "ref/dotnet/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/de/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/es/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/fr/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/it/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/ja/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/ko/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/ru/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/zh-hans/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/zh-hant/System.IO.UnmanagedMemoryStream.xml", - "ref/net46/System.IO.UnmanagedMemoryStream.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Linq/4.0.0": { - "sha512": "r6Hlc+ytE6m/9UBr+nNRRdoJEWjoeQiT3L3lXYFDHoXk3VYsRBCDNXrawcexw7KPLaH0zamQLiAb6avhZ50cGg==", - "type": "package", - "path": "system.linq/4.0.0", - "files": [ - "System.Linq.4.0.0.nupkg.sha512", - "System.Linq.nuspec", - "lib/dotnet/System.Linq.dll", - "lib/net45/_._", - "lib/netcore50/System.Linq.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Linq.dll", - "ref/dotnet/System.Linq.xml", - "ref/dotnet/de/System.Linq.xml", - "ref/dotnet/es/System.Linq.xml", - "ref/dotnet/fr/System.Linq.xml", - "ref/dotnet/it/System.Linq.xml", - "ref/dotnet/ja/System.Linq.xml", - "ref/dotnet/ko/System.Linq.xml", - "ref/dotnet/ru/System.Linq.xml", - "ref/dotnet/zh-hans/System.Linq.xml", - "ref/dotnet/zh-hant/System.Linq.xml", - "ref/net45/_._", - "ref/netcore50/System.Linq.dll", - "ref/netcore50/System.Linq.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._" - ] - }, - "System.Linq.Expressions/4.0.10": { - "sha512": "qhFkPqRsTfXBaacjQhxwwwUoU7TEtwlBIULj7nG7i4qAkvivil31VvOvDKppCSui5yGw0/325ZeNaMYRvTotXw==", - "type": "package", - "path": "system.linq.expressions/4.0.10", - "files": [ - "System.Linq.Expressions.4.0.10.nupkg.sha512", - "System.Linq.Expressions.nuspec", - "lib/DNXCore50/System.Linq.Expressions.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Linq.Expressions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Linq.Expressions.dll", - "ref/dotnet/System.Linq.Expressions.xml", - "ref/dotnet/de/System.Linq.Expressions.xml", - "ref/dotnet/es/System.Linq.Expressions.xml", - "ref/dotnet/fr/System.Linq.Expressions.xml", - "ref/dotnet/it/System.Linq.Expressions.xml", - "ref/dotnet/ja/System.Linq.Expressions.xml", - "ref/dotnet/ko/System.Linq.Expressions.xml", - "ref/dotnet/ru/System.Linq.Expressions.xml", - "ref/dotnet/zh-hans/System.Linq.Expressions.xml", - "ref/dotnet/zh-hant/System.Linq.Expressions.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll" - ] - }, - "System.Linq.Parallel/4.0.0": { - "sha512": "PtH7KKh1BbzVow4XY17pnrn7Io63ApMdwzRE2o2HnzsKQD/0o7X5xe6mxrDUqTm9ZCR3/PNhAlP13VY1HnHsbA==", - "type": "package", - "path": "system.linq.parallel/4.0.0", - "files": [ - "System.Linq.Parallel.4.0.0.nupkg.sha512", - "System.Linq.Parallel.nuspec", - "lib/dotnet/System.Linq.Parallel.dll", - "lib/net45/_._", - "lib/netcore50/System.Linq.Parallel.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Linq.Parallel.dll", - "ref/dotnet/System.Linq.Parallel.xml", - "ref/dotnet/de/System.Linq.Parallel.xml", - "ref/dotnet/es/System.Linq.Parallel.xml", - "ref/dotnet/fr/System.Linq.Parallel.xml", - "ref/dotnet/it/System.Linq.Parallel.xml", - "ref/dotnet/ja/System.Linq.Parallel.xml", - "ref/dotnet/ko/System.Linq.Parallel.xml", - "ref/dotnet/ru/System.Linq.Parallel.xml", - "ref/dotnet/zh-hans/System.Linq.Parallel.xml", - "ref/dotnet/zh-hant/System.Linq.Parallel.xml", - "ref/net45/_._", - "ref/netcore50/System.Linq.Parallel.dll", - "ref/netcore50/System.Linq.Parallel.xml", - "ref/win8/_._", - "ref/wpa81/_._" - ] - }, - "System.Linq.Queryable/4.0.0": { - "sha512": "DIlvCNn3ucFvwMMzXcag4aFnFJ1fdxkQ5NqwJe9Nh7y8ozzhDm07YakQL/yoF3P1dLzY1T2cTpuwbAmVSdXyBA==", - "type": "package", - "path": "system.linq.queryable/4.0.0", - "files": [ - "System.Linq.Queryable.4.0.0.nupkg.sha512", - "System.Linq.Queryable.nuspec", - "lib/dotnet/System.Linq.Queryable.dll", - "lib/net45/_._", - "lib/netcore50/System.Linq.Queryable.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Linq.Queryable.dll", - "ref/dotnet/System.Linq.Queryable.xml", - "ref/dotnet/de/System.Linq.Queryable.xml", - "ref/dotnet/es/System.Linq.Queryable.xml", - "ref/dotnet/fr/System.Linq.Queryable.xml", - "ref/dotnet/it/System.Linq.Queryable.xml", - "ref/dotnet/ja/System.Linq.Queryable.xml", - "ref/dotnet/ko/System.Linq.Queryable.xml", - "ref/dotnet/ru/System.Linq.Queryable.xml", - "ref/dotnet/zh-hans/System.Linq.Queryable.xml", - "ref/dotnet/zh-hant/System.Linq.Queryable.xml", - "ref/net45/_._", - "ref/netcore50/System.Linq.Queryable.dll", - "ref/netcore50/System.Linq.Queryable.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._" - ] - }, - "System.Net.Http/4.0.0": { - "sha512": "mZuAl7jw/mFY8jUq4ITKECxVBh9a8SJt9BC/+lJbmo7cRKspxE3PsITz+KiaCEsexN5WYPzwBOx0oJH/0HlPyQ==", - "type": "package", - "path": "system.net.http/4.0.0", - "files": [ - "System.Net.Http.4.0.0.nupkg.sha512", - "System.Net.Http.nuspec", - "lib/DNXCore50/System.Net.Http.dll", - "lib/net45/_._", - "lib/netcore50/System.Net.Http.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Net.Http.dll", - "ref/dotnet/System.Net.Http.xml", - "ref/dotnet/de/System.Net.Http.xml", - "ref/dotnet/es/System.Net.Http.xml", - "ref/dotnet/fr/System.Net.Http.xml", - "ref/dotnet/it/System.Net.Http.xml", - "ref/dotnet/ja/System.Net.Http.xml", - "ref/dotnet/ko/System.Net.Http.xml", - "ref/dotnet/ru/System.Net.Http.xml", - "ref/dotnet/zh-hans/System.Net.Http.xml", - "ref/dotnet/zh-hant/System.Net.Http.xml", - "ref/net45/_._", - "ref/netcore50/System.Net.Http.dll", - "ref/netcore50/System.Net.Http.xml", - "ref/win8/_._", - "ref/wpa81/_._" - ] - }, - "System.Net.Http.Rtc/4.0.0": { - "sha512": "PlE+oJgXdbxPmZYR6GBywRkyIPovjB1Y0SYHizj2Iflgu80uJQC4szl9gue4rKI2FgXiEbj9JL7wL5K3mp9HAQ==", - "type": "package", - "path": "system.net.http.rtc/4.0.0", - "files": [ - "System.Net.Http.Rtc.4.0.0.nupkg.sha512", - "System.Net.Http.Rtc.nuspec", - "lib/netcore50/System.Net.Http.Rtc.dll", - "lib/win8/_._", - "ref/dotnet/System.Net.Http.Rtc.dll", - "ref/dotnet/System.Net.Http.Rtc.xml", - "ref/dotnet/de/System.Net.Http.Rtc.xml", - "ref/dotnet/es/System.Net.Http.Rtc.xml", - "ref/dotnet/fr/System.Net.Http.Rtc.xml", - "ref/dotnet/it/System.Net.Http.Rtc.xml", - "ref/dotnet/ja/System.Net.Http.Rtc.xml", - "ref/dotnet/ko/System.Net.Http.Rtc.xml", - "ref/dotnet/ru/System.Net.Http.Rtc.xml", - "ref/dotnet/zh-hans/System.Net.Http.Rtc.xml", - "ref/dotnet/zh-hant/System.Net.Http.Rtc.xml", - "ref/netcore50/System.Net.Http.Rtc.dll", - "ref/netcore50/System.Net.Http.Rtc.xml", - "ref/win8/_._" - ] - }, - "System.Net.NetworkInformation/4.0.0": { - "sha512": "D68KCf5VK1G1GgFUwD901gU6cnMITksOdfdxUCt9ReCZfT1pigaDqjJ7XbiLAM4jm7TfZHB7g5mbOf1mbG3yBA==", - "type": "package", - "path": "system.net.networkinformation/4.0.0", - "files": [ - "System.Net.NetworkInformation.4.0.0.nupkg.sha512", - "System.Net.NetworkInformation.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Net.NetworkInformation.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Net.NetworkInformation.dll", - "ref/dotnet/System.Net.NetworkInformation.xml", - "ref/dotnet/de/System.Net.NetworkInformation.xml", - "ref/dotnet/es/System.Net.NetworkInformation.xml", - "ref/dotnet/fr/System.Net.NetworkInformation.xml", - "ref/dotnet/it/System.Net.NetworkInformation.xml", - "ref/dotnet/ja/System.Net.NetworkInformation.xml", - "ref/dotnet/ko/System.Net.NetworkInformation.xml", - "ref/dotnet/ru/System.Net.NetworkInformation.xml", - "ref/dotnet/zh-hans/System.Net.NetworkInformation.xml", - "ref/dotnet/zh-hant/System.Net.NetworkInformation.xml", - "ref/net45/_._", - "ref/netcore50/System.Net.NetworkInformation.dll", - "ref/netcore50/System.Net.NetworkInformation.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Net.Primitives/4.0.10": { - "sha512": "YQqIpmMhnKjIbT7rl6dlf7xM5DxaMR+whduZ9wKb9OhMLjoueAJO3HPPJI+Naf3v034kb+xZqdc3zo44o3HWcg==", - "type": "package", - "path": "system.net.primitives/4.0.10", - "files": [ - "System.Net.Primitives.4.0.10.nupkg.sha512", - "System.Net.Primitives.nuspec", - "lib/DNXCore50/System.Net.Primitives.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Net.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Net.Primitives.dll", - "ref/dotnet/System.Net.Primitives.xml", - "ref/dotnet/de/System.Net.Primitives.xml", - "ref/dotnet/es/System.Net.Primitives.xml", - "ref/dotnet/fr/System.Net.Primitives.xml", - "ref/dotnet/it/System.Net.Primitives.xml", - "ref/dotnet/ja/System.Net.Primitives.xml", - "ref/dotnet/ko/System.Net.Primitives.xml", - "ref/dotnet/ru/System.Net.Primitives.xml", - "ref/dotnet/zh-hans/System.Net.Primitives.xml", - "ref/dotnet/zh-hant/System.Net.Primitives.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Net.Requests/4.0.10": { - "sha512": "A6XBR7TztiIQg6hx7VGfbBKmRTAavUERm2E7pmNz/gZeGvwyP0lcKHZxylJtNVKj7DPwr91bD87oLY6zZYntcg==", - "type": "package", - "path": "system.net.requests/4.0.10", - "files": [ - "System.Net.Requests.4.0.10.nupkg.sha512", - "System.Net.Requests.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.Net.Requests.dll", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Net.Requests.dll", - "ref/dotnet/System.Net.Requests.xml", - "ref/dotnet/de/System.Net.Requests.xml", - "ref/dotnet/es/System.Net.Requests.xml", - "ref/dotnet/fr/System.Net.Requests.xml", - "ref/dotnet/it/System.Net.Requests.xml", - "ref/dotnet/ja/System.Net.Requests.xml", - "ref/dotnet/ko/System.Net.Requests.xml", - "ref/dotnet/ru/System.Net.Requests.xml", - "ref/dotnet/zh-hans/System.Net.Requests.xml", - "ref/dotnet/zh-hant/System.Net.Requests.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Net.Sockets/4.0.0": { - "sha512": "7bBNLdO6Xw0BGyFVSxjloGXMvsc3qQmW+70bYMLwHEAVivMK8zx+E7XO8CeJnAko2mFj6R402E798EGYUksFcQ==", - "type": "package", - "path": "system.net.sockets/4.0.0", - "files": [ - "System.Net.Sockets.4.0.0.nupkg.sha512", - "System.Net.Sockets.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Net.Sockets.dll", - "lib/netcore50/System.Net.Sockets.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Net.Sockets.dll", - "ref/dotnet/System.Net.Sockets.xml", - "ref/dotnet/de/System.Net.Sockets.xml", - "ref/dotnet/es/System.Net.Sockets.xml", - "ref/dotnet/fr/System.Net.Sockets.xml", - "ref/dotnet/it/System.Net.Sockets.xml", - "ref/dotnet/ja/System.Net.Sockets.xml", - "ref/dotnet/ko/System.Net.Sockets.xml", - "ref/dotnet/ru/System.Net.Sockets.xml", - "ref/dotnet/zh-hans/System.Net.Sockets.xml", - "ref/dotnet/zh-hant/System.Net.Sockets.xml", - "ref/net46/System.Net.Sockets.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Net.WebHeaderCollection/4.0.0": { - "sha512": "IsIZAsHm/yK7R/XASnEc4EMffFLIMgYchG3/zJv6B4LwMnXZwrVlSPpNbPgEVb0lSXyztsn7A6sIPAACQQ2vTQ==", - "type": "package", - "path": "system.net.webheadercollection/4.0.0", - "files": [ - "System.Net.WebHeaderCollection.4.0.0.nupkg.sha512", - "System.Net.WebHeaderCollection.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.Net.WebHeaderCollection.dll", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Net.WebHeaderCollection.dll", - "ref/dotnet/System.Net.WebHeaderCollection.xml", - "ref/dotnet/de/System.Net.WebHeaderCollection.xml", - "ref/dotnet/es/System.Net.WebHeaderCollection.xml", - "ref/dotnet/fr/System.Net.WebHeaderCollection.xml", - "ref/dotnet/it/System.Net.WebHeaderCollection.xml", - "ref/dotnet/ja/System.Net.WebHeaderCollection.xml", - "ref/dotnet/ko/System.Net.WebHeaderCollection.xml", - "ref/dotnet/ru/System.Net.WebHeaderCollection.xml", - "ref/dotnet/zh-hans/System.Net.WebHeaderCollection.xml", - "ref/dotnet/zh-hant/System.Net.WebHeaderCollection.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Numerics.Vectors/4.1.0": { - "sha512": "jpubR06GWPoZA0oU5xLM7kHeV59/CKPBXZk4Jfhi0T3DafxbrdueHZ8kXlb+Fb5nd3DAyyMh2/eqEzLX0xv6Qg==", - "type": "package", - "path": "system.numerics.vectors/4.1.0", - "files": [ - "System.Numerics.Vectors.4.1.0.nupkg.sha512", - "System.Numerics.Vectors.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.Numerics.Vectors.dll", - "lib/net46/System.Numerics.Vectors.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Numerics.Vectors.dll", - "ref/net46/System.Numerics.Vectors.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.0": { - "sha512": "Ly7GvoPFZq6GyfZpfS0E7uCk1cinl5BANAngXVuau3lD2QqZJMHitzlPv6n1FlIn6krfv99X2IPkIaVzUwDHXA==", - "type": "package", - "path": "system.numerics.vectors.windowsruntime/4.0.0", - "files": [ - "System.Numerics.Vectors.WindowsRuntime.4.0.0.nupkg.sha512", - "System.Numerics.Vectors.WindowsRuntime.nuspec", - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll" - ] - }, - "System.ObjectModel/4.0.10": { - "sha512": "Djn1wb0vP662zxbe+c3mOhvC4vkQGicsFs1Wi0/GJJpp3Eqp+oxbJ+p2Sx3O0efYueggAI5SW+BqEoczjfr1cA==", - "type": "package", - "path": "system.objectmodel/4.0.10", - "files": [ - "System.ObjectModel.4.0.10.nupkg.sha512", - "System.ObjectModel.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.ObjectModel.dll", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.ObjectModel.dll", - "ref/dotnet/System.ObjectModel.xml", - "ref/dotnet/de/System.ObjectModel.xml", - "ref/dotnet/es/System.ObjectModel.xml", - "ref/dotnet/fr/System.ObjectModel.xml", - "ref/dotnet/it/System.ObjectModel.xml", - "ref/dotnet/ja/System.ObjectModel.xml", - "ref/dotnet/ko/System.ObjectModel.xml", - "ref/dotnet/ru/System.ObjectModel.xml", - "ref/dotnet/zh-hans/System.ObjectModel.xml", - "ref/dotnet/zh-hant/System.ObjectModel.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Private.DataContractSerialization/4.0.0": { - "sha512": "uQvzoXHXHn/9YqUmPtgD8ZPJIlBuuL3QHegbuik97W/umoI28fOnGLnvjRHhju1VMWvFLRQoh7uZkBaoZ+KpVQ==", - "type": "package", - "path": "system.private.datacontractserialization/4.0.0", - "files": [ - "System.Private.DataContractSerialization.4.0.0.nupkg.sha512", - "System.Private.DataContractSerialization.nuspec", - "lib/DNXCore50/System.Private.DataContractSerialization.dll", - "lib/netcore50/System.Private.DataContractSerialization.dll", - "ref/dnxcore50/_._", - "ref/netcore50/_._", - "runtime.json", - "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll" - ] - }, - "System.Private.Networking/4.0.0": { - "sha512": "RUEqdBdJjISC65dO8l4LdN7vTdlXH+attUpKnauDUHVtLbIKdlDB9LKoLzCQsTQRP7vzUJHWYXznHJBkjAA7yA==", - "type": "package", - "path": "system.private.networking/4.0.0", - "files": [ - "System.Private.Networking.4.0.0.nupkg.sha512", - "System.Private.Networking.nuspec", - "lib/DNXCore50/System.Private.Networking.dll", - "lib/netcore50/System.Private.Networking.dll", - "ref/dnxcore50/_._", - "ref/netcore50/_._" - ] - }, - "System.Private.ServiceModel/4.0.0": { - "sha512": "cm2wEa1f9kuUq/2k8uIwepgZJi5HdxXSnjGQIeXmAb7RaWfZPEC/iamv9GJ67b5LPnCZHR0KvtFqh82e8AAYSw==", - "type": "package", - "path": "system.private.servicemodel/4.0.0", - "files": [ - "System.Private.ServiceModel.4.0.0.nupkg.sha512", - "System.Private.ServiceModel.nuspec", - "lib/DNXCore50/System.Private.ServiceModel.dll", - "lib/netcore50/System.Private.ServiceModel.dll", - "ref/dnxcore50/_._", - "ref/netcore50/_._" - ] - }, - "System.Private.Uri/4.0.0": { - "sha512": "CtuxaCKcRIvPcsqquVl3mPp79EDZPMr2UogfiFCxCs+t2z1VjbpQsKNs1GHZ8VQetqbk1mr0V1yAfMe6y8CHDA==", - "type": "package", - "path": "system.private.uri/4.0.0", - "files": [ - "System.Private.Uri.4.0.0.nupkg.sha512", - "System.Private.Uri.nuspec", - "lib/DNXCore50/System.Private.Uri.dll", - "lib/netcore50/System.Private.Uri.dll", - "ref/dnxcore50/_._", - "ref/netcore50/_._", - "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll" - ] - }, - "System.Reflection/4.0.10": { - "sha512": "WZ+4lEE4gqGx6mrqLhSiW4oi6QLPWwdNjzhhTONmhELOrW8Cw9phlO9tltgvRUuQUqYtBiliFwhO5S5fCJElVw==", - "type": "package", - "path": "system.reflection/4.0.10", - "files": [ - "System.Reflection.4.0.10.nupkg.sha512", - "System.Reflection.nuspec", - "lib/DNXCore50/System.Reflection.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Reflection.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Reflection.dll", - "ref/dotnet/System.Reflection.xml", - "ref/dotnet/de/System.Reflection.xml", - "ref/dotnet/es/System.Reflection.xml", - "ref/dotnet/fr/System.Reflection.xml", - "ref/dotnet/it/System.Reflection.xml", - "ref/dotnet/ja/System.Reflection.xml", - "ref/dotnet/ko/System.Reflection.xml", - "ref/dotnet/ru/System.Reflection.xml", - "ref/dotnet/zh-hans/System.Reflection.xml", - "ref/dotnet/zh-hant/System.Reflection.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Reflection.dll" - ] - }, - "System.Reflection.Context/4.0.0": { - "sha512": "Gz4sUHHFd/52RjHccSHbOXdujJEWKfL3gIaA+ekxvQaQfJGbI2tPzA0Uv3WTCTDRGHgtoNq5WS9E007Dt4P/VQ==", - "type": "package", - "path": "system.reflection.context/4.0.0", - "files": [ - "System.Reflection.Context.4.0.0.nupkg.sha512", - "System.Reflection.Context.nuspec", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Context.dll", - "lib/win8/_._", - "ref/dotnet/System.Reflection.Context.dll", - "ref/dotnet/System.Reflection.Context.xml", - "ref/dotnet/de/System.Reflection.Context.xml", - "ref/dotnet/es/System.Reflection.Context.xml", - "ref/dotnet/fr/System.Reflection.Context.xml", - "ref/dotnet/it/System.Reflection.Context.xml", - "ref/dotnet/ja/System.Reflection.Context.xml", - "ref/dotnet/ko/System.Reflection.Context.xml", - "ref/dotnet/ru/System.Reflection.Context.xml", - "ref/dotnet/zh-hans/System.Reflection.Context.xml", - "ref/dotnet/zh-hant/System.Reflection.Context.xml", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Context.dll", - "ref/netcore50/System.Reflection.Context.xml", - "ref/win8/_._" - ] - }, - "System.Reflection.DispatchProxy/4.0.0": { - "sha512": "Kd/4o6DqBfJA4058X8oGEu1KlT8Ej0A+WGeoQgZU2h+3f2vC8NRbHxeOSZvxj9/MPZ1RYmZMGL1ApO9xG/4IVA==", - "type": "package", - "path": "system.reflection.dispatchproxy/4.0.0", - "files": [ - "System.Reflection.DispatchProxy.4.0.0.nupkg.sha512", - "System.Reflection.DispatchProxy.nuspec", - "lib/DNXCore50/System.Reflection.DispatchProxy.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Reflection.DispatchProxy.dll", - "lib/netcore50/System.Reflection.DispatchProxy.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Reflection.DispatchProxy.dll", - "ref/dotnet/System.Reflection.DispatchProxy.xml", - "ref/dotnet/de/System.Reflection.DispatchProxy.xml", - "ref/dotnet/es/System.Reflection.DispatchProxy.xml", - "ref/dotnet/fr/System.Reflection.DispatchProxy.xml", - "ref/dotnet/it/System.Reflection.DispatchProxy.xml", - "ref/dotnet/ja/System.Reflection.DispatchProxy.xml", - "ref/dotnet/ko/System.Reflection.DispatchProxy.xml", - "ref/dotnet/ru/System.Reflection.DispatchProxy.xml", - "ref/dotnet/zh-hans/System.Reflection.DispatchProxy.xml", - "ref/dotnet/zh-hant/System.Reflection.DispatchProxy.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll" - ] - }, - "System.Reflection.Emit/4.0.0": { - "sha512": "CqnQz5LbNbiSxN10cv3Ehnw3j1UZOBCxnE0OO0q/keGQ5ENjyFM6rIG4gm/i0dX6EjdpYkAgKcI/mhZZCaBq4A==", - "type": "package", - "path": "system.reflection.emit/4.0.0", - "files": [ - "System.Reflection.Emit.4.0.0.nupkg.sha512", - "System.Reflection.Emit.nuspec", - "lib/DNXCore50/System.Reflection.Emit.dll", - "lib/MonoAndroid10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.dll", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/dotnet/System.Reflection.Emit.dll", - "ref/dotnet/System.Reflection.Emit.xml", - "ref/dotnet/de/System.Reflection.Emit.xml", - "ref/dotnet/es/System.Reflection.Emit.xml", - "ref/dotnet/fr/System.Reflection.Emit.xml", - "ref/dotnet/it/System.Reflection.Emit.xml", - "ref/dotnet/ja/System.Reflection.Emit.xml", - "ref/dotnet/ko/System.Reflection.Emit.xml", - "ref/dotnet/ru/System.Reflection.Emit.xml", - "ref/dotnet/zh-hans/System.Reflection.Emit.xml", - "ref/dotnet/zh-hant/System.Reflection.Emit.xml", - "ref/net45/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Reflection.Emit.ILGeneration/4.0.0": { - "sha512": "02okuusJ0GZiHZSD2IOLIN41GIn6qOr7i5+86C98BPuhlwWqVABwebiGNvhDiXP1f9a6CxEigC7foQD42klcDg==", - "type": "package", - "path": "system.reflection.emit.ilgeneration/4.0.0", - "files": [ - "System.Reflection.Emit.ILGeneration.4.0.0.nupkg.sha512", - "System.Reflection.Emit.ILGeneration.nuspec", - "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", - "lib/wp80/_._", - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", - "ref/dotnet/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml", - "ref/net45/_._", - "ref/wp80/_._" - ] - }, - "System.Reflection.Emit.Lightweight/4.0.0": { - "sha512": "DJZhHiOdkN08xJgsJfDjkuOreLLmMcU8qkEEqEHqyhkPUZMMQs0lE8R+6+68BAFWgcdzxtNu0YmIOtEug8j00w==", - "type": "package", - "path": "system.reflection.emit.lightweight/4.0.0", - "files": [ - "System.Reflection.Emit.Lightweight.4.0.0.nupkg.sha512", - "System.Reflection.Emit.Lightweight.nuspec", - "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.Lightweight.dll", - "lib/wp80/_._", - "ref/dotnet/System.Reflection.Emit.Lightweight.dll", - "ref/dotnet/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/de/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/es/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/fr/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/it/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/ja/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/ko/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/ru/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/zh-hans/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/zh-hant/System.Reflection.Emit.Lightweight.xml", - "ref/net45/_._", - "ref/wp80/_._" - ] - }, - "System.Reflection.Extensions/4.0.0": { - "sha512": "dbYaZWCyFAu1TGYUqR2n+Q+1casSHPR2vVW0WVNkXpZbrd2BXcZ7cpvpu9C98CTHtNmyfMWCLpCclDqly23t6A==", - "type": "package", - "path": "system.reflection.extensions/4.0.0", - "files": [ - "System.Reflection.Extensions.4.0.0.nupkg.sha512", - "System.Reflection.Extensions.nuspec", - "lib/DNXCore50/System.Reflection.Extensions.dll", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Extensions.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Reflection.Extensions.dll", - "ref/dotnet/System.Reflection.Extensions.xml", - "ref/dotnet/de/System.Reflection.Extensions.xml", - "ref/dotnet/es/System.Reflection.Extensions.xml", - "ref/dotnet/fr/System.Reflection.Extensions.xml", - "ref/dotnet/it/System.Reflection.Extensions.xml", - "ref/dotnet/ja/System.Reflection.Extensions.xml", - "ref/dotnet/ko/System.Reflection.Extensions.xml", - "ref/dotnet/ru/System.Reflection.Extensions.xml", - "ref/dotnet/zh-hans/System.Reflection.Extensions.xml", - "ref/dotnet/zh-hant/System.Reflection.Extensions.xml", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Extensions.dll", - "ref/netcore50/System.Reflection.Extensions.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll" - ] - }, - "System.Reflection.Metadata/1.0.22": { - "sha512": "ltoL/teiEdy5W9fyYdtFr2xJ/4nHyksXLK9dkPWx3ubnj7BVfsSWxvWTg9EaJUXjhWvS/AeTtugZA1/IDQyaPQ==", - "type": "package", - "path": "system.reflection.metadata/1.0.22", - "files": [ - "System.Reflection.Metadata.1.0.22.nupkg.sha512", - "System.Reflection.Metadata.nuspec", - "lib/dotnet/System.Reflection.Metadata.dll", - "lib/dotnet/System.Reflection.Metadata.xml", - "lib/portable-net45+win8/System.Reflection.Metadata.dll", - "lib/portable-net45+win8/System.Reflection.Metadata.xml" - ] - }, - "System.Reflection.Primitives/4.0.0": { - "sha512": "n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==", - "type": "package", - "path": "system.reflection.primitives/4.0.0", - "files": [ - "System.Reflection.Primitives.4.0.0.nupkg.sha512", - "System.Reflection.Primitives.nuspec", - "lib/DNXCore50/System.Reflection.Primitives.dll", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Primitives.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Reflection.Primitives.dll", - "ref/dotnet/System.Reflection.Primitives.xml", - "ref/dotnet/de/System.Reflection.Primitives.xml", - "ref/dotnet/es/System.Reflection.Primitives.xml", - "ref/dotnet/fr/System.Reflection.Primitives.xml", - "ref/dotnet/it/System.Reflection.Primitives.xml", - "ref/dotnet/ja/System.Reflection.Primitives.xml", - "ref/dotnet/ko/System.Reflection.Primitives.xml", - "ref/dotnet/ru/System.Reflection.Primitives.xml", - "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", - "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Primitives.dll", - "ref/netcore50/System.Reflection.Primitives.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll" - ] - }, - "System.Reflection.TypeExtensions/4.0.0": { - "sha512": "YRM/msNAM86hdxPyXcuZSzmTO0RQFh7YMEPBLTY8cqXvFPYIx2x99bOyPkuU81wRYQem1c1HTkImQ2DjbOBfew==", - "type": "package", - "path": "system.reflection.typeextensions/4.0.0", - "files": [ - "System.Reflection.TypeExtensions.4.0.0.nupkg.sha512", - "System.Reflection.TypeExtensions.nuspec", - "lib/DNXCore50/System.Reflection.TypeExtensions.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Reflection.TypeExtensions.dll", - "lib/netcore50/System.Reflection.TypeExtensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Reflection.TypeExtensions.dll", - "ref/dotnet/System.Reflection.TypeExtensions.xml", - "ref/dotnet/de/System.Reflection.TypeExtensions.xml", - "ref/dotnet/es/System.Reflection.TypeExtensions.xml", - "ref/dotnet/fr/System.Reflection.TypeExtensions.xml", - "ref/dotnet/it/System.Reflection.TypeExtensions.xml", - "ref/dotnet/ja/System.Reflection.TypeExtensions.xml", - "ref/dotnet/ko/System.Reflection.TypeExtensions.xml", - "ref/dotnet/ru/System.Reflection.TypeExtensions.xml", - "ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/net46/System.Reflection.TypeExtensions.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll" - ] - }, - "System.Resources.ResourceManager/4.0.0": { - "sha512": "qmqeZ4BJgjfU+G2JbrZt4Dk1LsMxO4t+f/9HarNY6w8pBgweO6jT+cknUH7c3qIrGvyUqraBhU45Eo6UtA0fAw==", - "type": "package", - "path": "system.resources.resourcemanager/4.0.0", - "files": [ - "System.Resources.ResourceManager.4.0.0.nupkg.sha512", - "System.Resources.ResourceManager.nuspec", - "lib/DNXCore50/System.Resources.ResourceManager.dll", - "lib/net45/_._", - "lib/netcore50/System.Resources.ResourceManager.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Resources.ResourceManager.dll", - "ref/dotnet/System.Resources.ResourceManager.xml", - "ref/dotnet/de/System.Resources.ResourceManager.xml", - "ref/dotnet/es/System.Resources.ResourceManager.xml", - "ref/dotnet/fr/System.Resources.ResourceManager.xml", - "ref/dotnet/it/System.Resources.ResourceManager.xml", - "ref/dotnet/ja/System.Resources.ResourceManager.xml", - "ref/dotnet/ko/System.Resources.ResourceManager.xml", - "ref/dotnet/ru/System.Resources.ResourceManager.xml", - "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", - "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", - "ref/net45/_._", - "ref/netcore50/System.Resources.ResourceManager.dll", - "ref/netcore50/System.Resources.ResourceManager.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll" - ] - }, - "System.Runtime/4.0.20": { - "sha512": "X7N/9Bz7jVPorqdVFO86ns1sX6MlQM+WTxELtx+Z4VG45x9+LKmWH0GRqjgKprUnVuwmfB9EJ9DQng14Z7/zwg==", - "type": "package", - "path": "system.runtime/4.0.20", - "files": [ - "System.Runtime.4.0.20.nupkg.sha512", - "System.Runtime.nuspec", - "lib/DNXCore50/System.Runtime.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Runtime.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Runtime.dll", - "ref/dotnet/System.Runtime.xml", - "ref/dotnet/de/System.Runtime.xml", - "ref/dotnet/es/System.Runtime.xml", - "ref/dotnet/fr/System.Runtime.xml", - "ref/dotnet/it/System.Runtime.xml", - "ref/dotnet/ja/System.Runtime.xml", - "ref/dotnet/ko/System.Runtime.xml", - "ref/dotnet/ru/System.Runtime.xml", - "ref/dotnet/zh-hans/System.Runtime.xml", - "ref/dotnet/zh-hant/System.Runtime.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.dll" - ] - }, - "System.Runtime.Extensions/4.0.10": { - "sha512": "5dsEwf3Iml7d5OZeT20iyOjT+r+okWpN7xI2v+R4cgd3WSj4DeRPTvPFjDpacbVW4skCAZ8B9hxXJYgkCFKJ1A==", - "type": "package", - "path": "system.runtime.extensions/4.0.10", - "files": [ - "System.Runtime.Extensions.4.0.10.nupkg.sha512", - "System.Runtime.Extensions.nuspec", - "lib/DNXCore50/System.Runtime.Extensions.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Runtime.Extensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Runtime.Extensions.dll", - "ref/dotnet/System.Runtime.Extensions.xml", - "ref/dotnet/de/System.Runtime.Extensions.xml", - "ref/dotnet/es/System.Runtime.Extensions.xml", - "ref/dotnet/fr/System.Runtime.Extensions.xml", - "ref/dotnet/it/System.Runtime.Extensions.xml", - "ref/dotnet/ja/System.Runtime.Extensions.xml", - "ref/dotnet/ko/System.Runtime.Extensions.xml", - "ref/dotnet/ru/System.Runtime.Extensions.xml", - "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", - "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll" - ] - }, - "System.Runtime.Handles/4.0.0": { - "sha512": "638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==", - "type": "package", - "path": "system.runtime.handles/4.0.0", - "files": [ - "System.Runtime.Handles.4.0.0.nupkg.sha512", - "System.Runtime.Handles.nuspec", - "lib/DNXCore50/System.Runtime.Handles.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Runtime.Handles.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Runtime.Handles.dll", - "ref/dotnet/System.Runtime.Handles.xml", - "ref/dotnet/de/System.Runtime.Handles.xml", - "ref/dotnet/es/System.Runtime.Handles.xml", - "ref/dotnet/fr/System.Runtime.Handles.xml", - "ref/dotnet/it/System.Runtime.Handles.xml", - "ref/dotnet/ja/System.Runtime.Handles.xml", - "ref/dotnet/ko/System.Runtime.Handles.xml", - "ref/dotnet/ru/System.Runtime.Handles.xml", - "ref/dotnet/zh-hans/System.Runtime.Handles.xml", - "ref/dotnet/zh-hant/System.Runtime.Handles.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll" - ] - }, - "System.Runtime.InteropServices/4.0.20": { - "sha512": "ZgDyBYfEnjWoz/viS6VOswA6XOkDSH2DzgbpczbW50RywhnCgTl+w3JEvtAiOGyIh8cyx1NJq80jsNBSUr8Pig==", - "type": "package", - "path": "system.runtime.interopservices/4.0.20", - "files": [ - "System.Runtime.InteropServices.4.0.20.nupkg.sha512", - "System.Runtime.InteropServices.nuspec", - "lib/DNXCore50/System.Runtime.InteropServices.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Runtime.InteropServices.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Runtime.InteropServices.dll", - "ref/dotnet/System.Runtime.InteropServices.xml", - "ref/dotnet/de/System.Runtime.InteropServices.xml", - "ref/dotnet/es/System.Runtime.InteropServices.xml", - "ref/dotnet/fr/System.Runtime.InteropServices.xml", - "ref/dotnet/it/System.Runtime.InteropServices.xml", - "ref/dotnet/ja/System.Runtime.InteropServices.xml", - "ref/dotnet/ko/System.Runtime.InteropServices.xml", - "ref/dotnet/ru/System.Runtime.InteropServices.xml", - "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml", - "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll" - ] - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { - "sha512": "K5MGSvw/sGPKQYdOVqSpsVbHBE8HccHIDEhUNjM1lui65KGF/slNZfijGU87ggQiVXTI802ebKiOYBkwiLotow==", - "type": "package", - "path": "system.runtime.interopservices.windowsruntime/4.0.0", - "files": [ - "System.Runtime.InteropServices.WindowsRuntime.4.0.0.nupkg.sha512", - "System.Runtime.InteropServices.WindowsRuntime.nuspec", - "lib/net45/_._", - "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Runtime.InteropServices.WindowsRuntime.dll", - "ref/dotnet/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/de/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/es/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/fr/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/it/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/ja/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/ko/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/ru/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/zh-hans/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/zh-hant/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/net45/_._", - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll", - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll" - ] - }, - "System.Runtime.Numerics/4.0.0": { - "sha512": "aAYGEOE01nabQLufQ4YO8WuSyZzOqGcksi8m1BRW8ppkmssR7en8TqiXcBkB2gTkCnKG/Ai2NQY8CgdmgZw/fw==", - "type": "package", - "path": "system.runtime.numerics/4.0.0", - "files": [ - "System.Runtime.Numerics.4.0.0.nupkg.sha512", - "System.Runtime.Numerics.nuspec", - "lib/dotnet/System.Runtime.Numerics.dll", - "lib/net45/_._", - "lib/netcore50/System.Runtime.Numerics.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Runtime.Numerics.dll", - "ref/dotnet/System.Runtime.Numerics.xml", - "ref/dotnet/de/System.Runtime.Numerics.xml", - "ref/dotnet/es/System.Runtime.Numerics.xml", - "ref/dotnet/fr/System.Runtime.Numerics.xml", - "ref/dotnet/it/System.Runtime.Numerics.xml", - "ref/dotnet/ja/System.Runtime.Numerics.xml", - "ref/dotnet/ko/System.Runtime.Numerics.xml", - "ref/dotnet/ru/System.Runtime.Numerics.xml", - "ref/dotnet/zh-hans/System.Runtime.Numerics.xml", - "ref/dotnet/zh-hant/System.Runtime.Numerics.xml", - "ref/net45/_._", - "ref/netcore50/System.Runtime.Numerics.dll", - "ref/netcore50/System.Runtime.Numerics.xml", - "ref/win8/_._", - "ref/wpa81/_._" - ] - }, - "System.Runtime.Serialization.Json/4.0.0": { - "sha512": "emhWMQP3sdtkAhD0TOeP3FfjS57sfQMQ2sqA6f2Yj5Gd9jkHV4KsQ2TsoJjghca6d8fur7+REQ6ILBXVdGf/0g==", - "type": "package", - "path": "system.runtime.serialization.json/4.0.0", - "files": [ - "System.Runtime.Serialization.Json.4.0.0.nupkg.sha512", - "System.Runtime.Serialization.Json.nuspec", - "lib/DNXCore50/System.Runtime.Serialization.Json.dll", - "lib/net45/_._", - "lib/netcore50/System.Runtime.Serialization.Json.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Runtime.Serialization.Json.dll", - "ref/dotnet/System.Runtime.Serialization.Json.xml", - "ref/dotnet/de/System.Runtime.Serialization.Json.xml", - "ref/dotnet/es/System.Runtime.Serialization.Json.xml", - "ref/dotnet/fr/System.Runtime.Serialization.Json.xml", - "ref/dotnet/it/System.Runtime.Serialization.Json.xml", - "ref/dotnet/ja/System.Runtime.Serialization.Json.xml", - "ref/dotnet/ko/System.Runtime.Serialization.Json.xml", - "ref/dotnet/ru/System.Runtime.Serialization.Json.xml", - "ref/dotnet/zh-hans/System.Runtime.Serialization.Json.xml", - "ref/dotnet/zh-hant/System.Runtime.Serialization.Json.xml", - "ref/net45/_._", - "ref/netcore50/System.Runtime.Serialization.Json.dll", - "ref/netcore50/System.Runtime.Serialization.Json.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll" - ] - }, - "System.Runtime.Serialization.Primitives/4.0.10": { - "sha512": "NPc8DZIomf5tGjYtz/KTHI01IPcVlypfhCux32AbLPDjTotdvL8TpKRwMyQJ6Kh08yprRVH7uBD1PdJiuoFzag==", - "type": "package", - "path": "system.runtime.serialization.primitives/4.0.10", - "files": [ - "System.Runtime.Serialization.Primitives.4.0.10.nupkg.sha512", - "System.Runtime.Serialization.Primitives.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.Runtime.Serialization.Primitives.dll", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Runtime.Serialization.Primitives.dll", - "ref/dotnet/System.Runtime.Serialization.Primitives.xml", - "ref/dotnet/de/System.Runtime.Serialization.Primitives.xml", - "ref/dotnet/es/System.Runtime.Serialization.Primitives.xml", - "ref/dotnet/fr/System.Runtime.Serialization.Primitives.xml", - "ref/dotnet/it/System.Runtime.Serialization.Primitives.xml", - "ref/dotnet/ja/System.Runtime.Serialization.Primitives.xml", - "ref/dotnet/ko/System.Runtime.Serialization.Primitives.xml", - "ref/dotnet/ru/System.Runtime.Serialization.Primitives.xml", - "ref/dotnet/zh-hans/System.Runtime.Serialization.Primitives.xml", - "ref/dotnet/zh-hant/System.Runtime.Serialization.Primitives.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Runtime.Serialization.Xml/4.0.10": { - "sha512": "xsy7XbH8RTpKoDPNcibSGCOpujsmwUmOWAby3PssqkZFpLBXUbDO2s6JKITRjxejET2g0PK8t+mdIvu3xmUuKA==", - "type": "package", - "path": "system.runtime.serialization.xml/4.0.10", - "files": [ - "System.Runtime.Serialization.Xml.4.0.10.nupkg.sha512", - "System.Runtime.Serialization.Xml.nuspec", - "lib/DNXCore50/System.Runtime.Serialization.Xml.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Runtime.Serialization.Xml.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Runtime.Serialization.Xml.dll", - "ref/dotnet/System.Runtime.Serialization.Xml.xml", - "ref/dotnet/de/System.Runtime.Serialization.Xml.xml", - "ref/dotnet/es/System.Runtime.Serialization.Xml.xml", - "ref/dotnet/fr/System.Runtime.Serialization.Xml.xml", - "ref/dotnet/it/System.Runtime.Serialization.Xml.xml", - "ref/dotnet/ja/System.Runtime.Serialization.Xml.xml", - "ref/dotnet/ko/System.Runtime.Serialization.Xml.xml", - "ref/dotnet/ru/System.Runtime.Serialization.Xml.xml", - "ref/dotnet/zh-hans/System.Runtime.Serialization.Xml.xml", - "ref/dotnet/zh-hant/System.Runtime.Serialization.Xml.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll" - ] - }, - "System.Runtime.WindowsRuntime/4.0.10": { - "sha512": "9w6ypdnEw8RrLRlxTbLAYrap4eL1xIQeNoOaumQVOQ8TTD/5g9FGrBtY3KLiGxAPieN9AwAAEIDkugU85Cwuvg==", - "type": "package", - "path": "system.runtime.windowsruntime/4.0.10", - "files": [ - "System.Runtime.WindowsRuntime.4.0.10.nupkg.sha512", - "System.Runtime.WindowsRuntime.nuspec", - "lib/netcore50/System.Runtime.WindowsRuntime.dll", - "lib/win81/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Runtime.WindowsRuntime.dll", - "ref/dotnet/System.Runtime.WindowsRuntime.xml", - "ref/dotnet/de/System.Runtime.WindowsRuntime.xml", - "ref/dotnet/es/System.Runtime.WindowsRuntime.xml", - "ref/dotnet/fr/System.Runtime.WindowsRuntime.xml", - "ref/dotnet/it/System.Runtime.WindowsRuntime.xml", - "ref/dotnet/ja/System.Runtime.WindowsRuntime.xml", - "ref/dotnet/ko/System.Runtime.WindowsRuntime.xml", - "ref/dotnet/ru/System.Runtime.WindowsRuntime.xml", - "ref/dotnet/zh-hans/System.Runtime.WindowsRuntime.xml", - "ref/dotnet/zh-hant/System.Runtime.WindowsRuntime.xml", - "ref/netcore50/System.Runtime.WindowsRuntime.dll", - "ref/netcore50/System.Runtime.WindowsRuntime.xml", - "ref/win81/_._", - "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll" - ] - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { - "sha512": "2GY3fkXBMQOyyO9ovaH46CN6MD2ck/Gvk4VNAgVDvtmfO3HXYFNd+bB05WhVcJrHKbfKZNwfwZKpYZ+OsVFsLw==", - "type": "package", - "path": "system.runtime.windowsruntime.ui.xaml/4.0.0", - "files": [ - "System.Runtime.WindowsRuntime.UI.Xaml.4.0.0.nupkg.sha512", - "System.Runtime.WindowsRuntime.UI.Xaml.nuspec", - "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Runtime.WindowsRuntime.UI.Xaml.dll", - "ref/dotnet/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/dotnet/de/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/dotnet/es/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/dotnet/fr/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/dotnet/it/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/dotnet/ja/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/dotnet/ko/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/dotnet/ru/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/dotnet/zh-hans/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/dotnet/zh-hant/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll", - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/win8/_._", - "ref/wpa81/_._" - ] - }, - "System.Security.Claims/4.0.0": { - "sha512": "94NFR/7JN3YdyTH7hl2iSvYmdA8aqShriTHectcK+EbizT71YczMaG6LuqJBQP/HWo66AQyikYYM9aw+4EzGXg==", - "type": "package", - "path": "system.security.claims/4.0.0", - "files": [ - "System.Security.Claims.4.0.0.nupkg.sha512", - "System.Security.Claims.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.Security.Claims.dll", - "lib/net46/System.Security.Claims.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Security.Claims.dll", - "ref/dotnet/System.Security.Claims.xml", - "ref/dotnet/de/System.Security.Claims.xml", - "ref/dotnet/es/System.Security.Claims.xml", - "ref/dotnet/fr/System.Security.Claims.xml", - "ref/dotnet/it/System.Security.Claims.xml", - "ref/dotnet/ja/System.Security.Claims.xml", - "ref/dotnet/ko/System.Security.Claims.xml", - "ref/dotnet/ru/System.Security.Claims.xml", - "ref/dotnet/zh-hans/System.Security.Claims.xml", - "ref/dotnet/zh-hant/System.Security.Claims.xml", - "ref/net46/System.Security.Claims.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Security.Principal/4.0.0": { - "sha512": "FOhq3jUOONi6fp5j3nPYJMrKtSJlqAURpjiO3FaDIV4DJNEYymWW5uh1pfxySEB8dtAW+I66IypzNge/w9OzZQ==", - "type": "package", - "path": "system.security.principal/4.0.0", - "files": [ - "System.Security.Principal.4.0.0.nupkg.sha512", - "System.Security.Principal.nuspec", - "lib/dotnet/System.Security.Principal.dll", - "lib/net45/_._", - "lib/netcore50/System.Security.Principal.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Security.Principal.dll", - "ref/dotnet/System.Security.Principal.xml", - "ref/dotnet/de/System.Security.Principal.xml", - "ref/dotnet/es/System.Security.Principal.xml", - "ref/dotnet/fr/System.Security.Principal.xml", - "ref/dotnet/it/System.Security.Principal.xml", - "ref/dotnet/ja/System.Security.Principal.xml", - "ref/dotnet/ko/System.Security.Principal.xml", - "ref/dotnet/ru/System.Security.Principal.xml", - "ref/dotnet/zh-hans/System.Security.Principal.xml", - "ref/dotnet/zh-hant/System.Security.Principal.xml", - "ref/net45/_._", - "ref/netcore50/System.Security.Principal.dll", - "ref/netcore50/System.Security.Principal.xml", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._" - ] - }, - "System.ServiceModel.Duplex/4.0.0": { - "sha512": "JFeDn+IsiwAVJkNNnM7MLefJOnzYhovaHnjk3lzEnUWkYZJeAKrcgLdK6GE2GNjb5mEV8Pad/E0JcA8eCr3eWQ==", - "type": "package", - "path": "system.servicemodel.duplex/4.0.0", - "files": [ - "System.ServiceModel.Duplex.4.0.0.nupkg.sha512", - "System.ServiceModel.Duplex.nuspec", - "lib/DNXCore50/System.ServiceModel.Duplex.dll", - "lib/net45/_._", - "lib/netcore50/System.ServiceModel.Duplex.dll", - "lib/win8/_._", - "ref/dotnet/System.ServiceModel.Duplex.dll", - "ref/dotnet/System.ServiceModel.Duplex.xml", - "ref/dotnet/de/System.ServiceModel.Duplex.xml", - "ref/dotnet/es/System.ServiceModel.Duplex.xml", - "ref/dotnet/fr/System.ServiceModel.Duplex.xml", - "ref/dotnet/it/System.ServiceModel.Duplex.xml", - "ref/dotnet/ja/System.ServiceModel.Duplex.xml", - "ref/dotnet/ko/System.ServiceModel.Duplex.xml", - "ref/dotnet/ru/System.ServiceModel.Duplex.xml", - "ref/dotnet/zh-hans/System.ServiceModel.Duplex.xml", - "ref/dotnet/zh-hant/System.ServiceModel.Duplex.xml", - "ref/net45/_._", - "ref/netcore50/System.ServiceModel.Duplex.dll", - "ref/netcore50/System.ServiceModel.Duplex.xml", - "ref/win8/_._" - ] - }, - "System.ServiceModel.Http/4.0.10": { - "sha512": "Vyl7lmvMlXJamtnDugoXuAgAQGSqtA7omK3zDBYByhbYeBC2hRBchgyXox7e5vEO+29TeB1IpoLWQGb7tO9h6A==", - "type": "package", - "path": "system.servicemodel.http/4.0.10", - "files": [ - "System.ServiceModel.Http.4.0.10.nupkg.sha512", - "System.ServiceModel.Http.nuspec", - "lib/DNXCore50/System.ServiceModel.Http.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.ServiceModel.Http.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.ServiceModel.Http.dll", - "ref/dotnet/System.ServiceModel.Http.xml", - "ref/dotnet/de/System.ServiceModel.Http.xml", - "ref/dotnet/es/System.ServiceModel.Http.xml", - "ref/dotnet/fr/System.ServiceModel.Http.xml", - "ref/dotnet/it/System.ServiceModel.Http.xml", - "ref/dotnet/ja/System.ServiceModel.Http.xml", - "ref/dotnet/ko/System.ServiceModel.Http.xml", - "ref/dotnet/ru/System.ServiceModel.Http.xml", - "ref/dotnet/zh-hans/System.ServiceModel.Http.xml", - "ref/dotnet/zh-hant/System.ServiceModel.Http.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.ServiceModel.NetTcp/4.0.0": { - "sha512": "lV2Cdcso9jOS0KBtgHZHzTLe/Lx/ERdPcvF4dlepUie6/+BOMYTOgg2C7OdpIjp3fwUNXq8nhU+IilmEyjuf/A==", - "type": "package", - "path": "system.servicemodel.nettcp/4.0.0", - "files": [ - "System.ServiceModel.NetTcp.4.0.0.nupkg.sha512", - "System.ServiceModel.NetTcp.nuspec", - "lib/DNXCore50/System.ServiceModel.NetTcp.dll", - "lib/net45/_._", - "lib/netcore50/System.ServiceModel.NetTcp.dll", - "lib/win8/_._", - "ref/dotnet/System.ServiceModel.NetTcp.dll", - "ref/dotnet/System.ServiceModel.NetTcp.xml", - "ref/dotnet/de/System.ServiceModel.NetTcp.xml", - "ref/dotnet/es/System.ServiceModel.NetTcp.xml", - "ref/dotnet/fr/System.ServiceModel.NetTcp.xml", - "ref/dotnet/it/System.ServiceModel.NetTcp.xml", - "ref/dotnet/ja/System.ServiceModel.NetTcp.xml", - "ref/dotnet/ko/System.ServiceModel.NetTcp.xml", - "ref/dotnet/ru/System.ServiceModel.NetTcp.xml", - "ref/dotnet/zh-hans/System.ServiceModel.NetTcp.xml", - "ref/dotnet/zh-hant/System.ServiceModel.NetTcp.xml", - "ref/net45/_._", - "ref/netcore50/System.ServiceModel.NetTcp.dll", - "ref/netcore50/System.ServiceModel.NetTcp.xml", - "ref/win8/_._" - ] - }, - "System.ServiceModel.Primitives/4.0.0": { - "sha512": "uF5VYQWR07LgiZkzUr8qjwvqOaIAfwU566MneD4WuC14d8FLJNsAgCJUYhBGB7COjH7HTqnP9ZFmr6c+L83Stg==", - "type": "package", - "path": "system.servicemodel.primitives/4.0.0", - "files": [ - "System.ServiceModel.Primitives.4.0.0.nupkg.sha512", - "System.ServiceModel.Primitives.nuspec", - "lib/DNXCore50/System.ServiceModel.Primitives.dll", - "lib/net45/_._", - "lib/netcore50/System.ServiceModel.Primitives.dll", - "lib/win8/_._", - "ref/dotnet/System.ServiceModel.Primitives.dll", - "ref/dotnet/System.ServiceModel.Primitives.xml", - "ref/dotnet/de/System.ServiceModel.Primitives.xml", - "ref/dotnet/es/System.ServiceModel.Primitives.xml", - "ref/dotnet/fr/System.ServiceModel.Primitives.xml", - "ref/dotnet/it/System.ServiceModel.Primitives.xml", - "ref/dotnet/ja/System.ServiceModel.Primitives.xml", - "ref/dotnet/ko/System.ServiceModel.Primitives.xml", - "ref/dotnet/ru/System.ServiceModel.Primitives.xml", - "ref/dotnet/zh-hans/System.ServiceModel.Primitives.xml", - "ref/dotnet/zh-hant/System.ServiceModel.Primitives.xml", - "ref/net45/_._", - "ref/netcore50/System.ServiceModel.Primitives.dll", - "ref/netcore50/System.ServiceModel.Primitives.xml", - "ref/win8/_._" - ] - }, - "System.ServiceModel.Security/4.0.0": { - "sha512": "sPVzsnd8w/TJsW/4sYA9eIGP+RtlpN0AhKLGKf9ywdGGmHPi0kkuX2mx412dM3GN0e4oifuISwvZqby/sI8Feg==", - "type": "package", - "path": "system.servicemodel.security/4.0.0", - "files": [ - "System.ServiceModel.Security.4.0.0.nupkg.sha512", - "System.ServiceModel.Security.nuspec", - "lib/DNXCore50/System.ServiceModel.Security.dll", - "lib/net45/_._", - "lib/netcore50/System.ServiceModel.Security.dll", - "lib/win8/_._", - "ref/dotnet/System.ServiceModel.Security.dll", - "ref/dotnet/System.ServiceModel.Security.xml", - "ref/dotnet/de/System.ServiceModel.Security.xml", - "ref/dotnet/es/System.ServiceModel.Security.xml", - "ref/dotnet/fr/System.ServiceModel.Security.xml", - "ref/dotnet/it/System.ServiceModel.Security.xml", - "ref/dotnet/ja/System.ServiceModel.Security.xml", - "ref/dotnet/ko/System.ServiceModel.Security.xml", - "ref/dotnet/ru/System.ServiceModel.Security.xml", - "ref/dotnet/zh-hans/System.ServiceModel.Security.xml", - "ref/dotnet/zh-hant/System.ServiceModel.Security.xml", - "ref/net45/_._", - "ref/netcore50/System.ServiceModel.Security.dll", - "ref/netcore50/System.ServiceModel.Security.xml", - "ref/win8/_._" - ] - }, - "System.Text.Encoding/4.0.10": { - "sha512": "fNlSFgy4OuDlJrP9SFFxMlaLazq6ipv15sU5TiEgg9UCVnA/OgoVUfymFp4AOk1jOkW5SVxWbeeIUptcM+m/Vw==", - "type": "package", - "path": "system.text.encoding/4.0.10", - "files": [ - "System.Text.Encoding.4.0.10.nupkg.sha512", - "System.Text.Encoding.nuspec", - "lib/DNXCore50/System.Text.Encoding.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Text.Encoding.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Text.Encoding.dll", - "ref/dotnet/System.Text.Encoding.xml", - "ref/dotnet/de/System.Text.Encoding.xml", - "ref/dotnet/es/System.Text.Encoding.xml", - "ref/dotnet/fr/System.Text.Encoding.xml", - "ref/dotnet/it/System.Text.Encoding.xml", - "ref/dotnet/ja/System.Text.Encoding.xml", - "ref/dotnet/ko/System.Text.Encoding.xml", - "ref/dotnet/ru/System.Text.Encoding.xml", - "ref/dotnet/zh-hans/System.Text.Encoding.xml", - "ref/dotnet/zh-hant/System.Text.Encoding.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll" - ] - }, - "System.Text.Encoding.CodePages/4.0.0": { - "sha512": "ZHBTr1AXLjY9OuYR7pKx5xfN6QFye1kgd5QAbGrvfCOu7yxRnJs3VUaxERe1fOlnF0mi/xD/Dvb3T3x3HNuPWQ==", - "type": "package", - "path": "system.text.encoding.codepages/4.0.0", - "files": [ - "System.Text.Encoding.CodePages.4.0.0.nupkg.sha512", - "System.Text.Encoding.CodePages.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.Text.Encoding.CodePages.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Text.Encoding.CodePages.dll", - "ref/dotnet/System.Text.Encoding.CodePages.xml", - "ref/dotnet/de/System.Text.Encoding.CodePages.xml", - "ref/dotnet/es/System.Text.Encoding.CodePages.xml", - "ref/dotnet/fr/System.Text.Encoding.CodePages.xml", - "ref/dotnet/it/System.Text.Encoding.CodePages.xml", - "ref/dotnet/ja/System.Text.Encoding.CodePages.xml", - "ref/dotnet/ko/System.Text.Encoding.CodePages.xml", - "ref/dotnet/ru/System.Text.Encoding.CodePages.xml", - "ref/dotnet/zh-hans/System.Text.Encoding.CodePages.xml", - "ref/dotnet/zh-hant/System.Text.Encoding.CodePages.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Text.Encoding.Extensions/4.0.10": { - "sha512": "TZvlwXMxKo3bSRIcsWZLCIzIhLbvlz+mGeKYRZv/zUiSoQzGOwkYeBu6hOw2XPQgKqT0F4Rv8zqKdvmp2fWKYg==", - "type": "package", - "path": "system.text.encoding.extensions/4.0.10", - "files": [ - "System.Text.Encoding.Extensions.4.0.10.nupkg.sha512", - "System.Text.Encoding.Extensions.nuspec", - "lib/DNXCore50/System.Text.Encoding.Extensions.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Text.Encoding.Extensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Text.Encoding.Extensions.dll", - "ref/dotnet/System.Text.Encoding.Extensions.xml", - "ref/dotnet/de/System.Text.Encoding.Extensions.xml", - "ref/dotnet/es/System.Text.Encoding.Extensions.xml", - "ref/dotnet/fr/System.Text.Encoding.Extensions.xml", - "ref/dotnet/it/System.Text.Encoding.Extensions.xml", - "ref/dotnet/ja/System.Text.Encoding.Extensions.xml", - "ref/dotnet/ko/System.Text.Encoding.Extensions.xml", - "ref/dotnet/ru/System.Text.Encoding.Extensions.xml", - "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll" - ] - }, - "System.Text.RegularExpressions/4.0.10": { - "sha512": "0vDuHXJePpfMCecWBNOabOKCvzfTbFMNcGgklt3l5+RqHV5SzmF7RUVpuet8V0rJX30ROlL66xdehw2Rdsn2DA==", - "type": "package", - "path": "system.text.regularexpressions/4.0.10", - "files": [ - "System.Text.RegularExpressions.4.0.10.nupkg.sha512", - "System.Text.RegularExpressions.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.Text.RegularExpressions.dll", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Text.RegularExpressions.dll", - "ref/dotnet/System.Text.RegularExpressions.xml", - "ref/dotnet/de/System.Text.RegularExpressions.xml", - "ref/dotnet/es/System.Text.RegularExpressions.xml", - "ref/dotnet/fr/System.Text.RegularExpressions.xml", - "ref/dotnet/it/System.Text.RegularExpressions.xml", - "ref/dotnet/ja/System.Text.RegularExpressions.xml", - "ref/dotnet/ko/System.Text.RegularExpressions.xml", - "ref/dotnet/ru/System.Text.RegularExpressions.xml", - "ref/dotnet/zh-hans/System.Text.RegularExpressions.xml", - "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Threading/4.0.10": { - "sha512": "0w6pRxIEE7wuiOJeKabkDgeIKmqf4ER1VNrs6qFwHnooEE78yHwi/bKkg5Jo8/pzGLm0xQJw0nEmPXt1QBAIUA==", - "type": "package", - "path": "system.threading/4.0.10", - "files": [ - "System.Threading.4.0.10.nupkg.sha512", - "System.Threading.nuspec", - "lib/DNXCore50/System.Threading.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Threading.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Threading.dll", - "ref/dotnet/System.Threading.xml", - "ref/dotnet/de/System.Threading.xml", - "ref/dotnet/es/System.Threading.xml", - "ref/dotnet/fr/System.Threading.xml", - "ref/dotnet/it/System.Threading.xml", - "ref/dotnet/ja/System.Threading.xml", - "ref/dotnet/ko/System.Threading.xml", - "ref/dotnet/ru/System.Threading.xml", - "ref/dotnet/zh-hans/System.Threading.xml", - "ref/dotnet/zh-hant/System.Threading.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Threading.dll" - ] - }, - "System.Threading.Overlapped/4.0.0": { - "sha512": "X5LuQFhM5FTqaez3eXKJ9CbfSGZ7wj6j4hSVtxct3zmwQXLqG95qoWdvILcgN7xtrDOBIFtpiyDg0vmoI0jE2A==", - "type": "package", - "path": "system.threading.overlapped/4.0.0", - "files": [ - "System.Threading.Overlapped.4.0.0.nupkg.sha512", - "System.Threading.Overlapped.nuspec", - "lib/DNXCore50/System.Threading.Overlapped.dll", - "lib/net46/System.Threading.Overlapped.dll", - "lib/netcore50/System.Threading.Overlapped.dll", - "ref/dotnet/System.Threading.Overlapped.dll", - "ref/dotnet/System.Threading.Overlapped.xml", - "ref/dotnet/de/System.Threading.Overlapped.xml", - "ref/dotnet/es/System.Threading.Overlapped.xml", - "ref/dotnet/fr/System.Threading.Overlapped.xml", - "ref/dotnet/it/System.Threading.Overlapped.xml", - "ref/dotnet/ja/System.Threading.Overlapped.xml", - "ref/dotnet/ko/System.Threading.Overlapped.xml", - "ref/dotnet/ru/System.Threading.Overlapped.xml", - "ref/dotnet/zh-hans/System.Threading.Overlapped.xml", - "ref/dotnet/zh-hant/System.Threading.Overlapped.xml", - "ref/net46/System.Threading.Overlapped.dll" - ] - }, - "System.Threading.Tasks/4.0.10": { - "sha512": "NOwJGDfk79jR0bnzosbXLVD/PdI8KzBeESoa3CofEM5v9R5EBfcI0Jyf18stx+0IYV9okmDIDxVtxq9TbnR9bQ==", - "type": "package", - "path": "system.threading.tasks/4.0.10", - "files": [ - "System.Threading.Tasks.4.0.10.nupkg.sha512", - "System.Threading.Tasks.nuspec", - "lib/DNXCore50/System.Threading.Tasks.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Threading.Tasks.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Threading.Tasks.dll", - "ref/dotnet/System.Threading.Tasks.xml", - "ref/dotnet/de/System.Threading.Tasks.xml", - "ref/dotnet/es/System.Threading.Tasks.xml", - "ref/dotnet/fr/System.Threading.Tasks.xml", - "ref/dotnet/it/System.Threading.Tasks.xml", - "ref/dotnet/ja/System.Threading.Tasks.xml", - "ref/dotnet/ko/System.Threading.Tasks.xml", - "ref/dotnet/ru/System.Threading.Tasks.xml", - "ref/dotnet/zh-hans/System.Threading.Tasks.xml", - "ref/dotnet/zh-hant/System.Threading.Tasks.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll" - ] - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "sha512": "Y5/Dj+tYlDxHBwie7bFKp3+1uSG4vqTJRF7Zs7kaUQ3ahYClffCTxvgjrJyPclC+Le55uE7bMLgjZQVOQr3Jfg==", - "type": "package", - "path": "system.threading.tasks.dataflow/4.5.25", - "files": [ - "System.Threading.Tasks.Dataflow.4.5.25.nupkg.sha512", - "System.Threading.Tasks.Dataflow.nuspec", - "lib/dotnet/System.Threading.Tasks.Dataflow.XML", - "lib/dotnet/System.Threading.Tasks.Dataflow.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.XML", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.dll", - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.XML", - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll" - ] - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "sha512": "GXDhjPhF3nE4RtDia0W6JR4UMdmhOyt9ibHmsNV6GLRT4HAGqU636Teo4tqvVQOFp2R6b1ffxPXiRaoqtzGxuA==", - "type": "package", - "path": "system.threading.tasks.parallel/4.0.0", - "files": [ - "System.Threading.Tasks.Parallel.4.0.0.nupkg.sha512", - "System.Threading.Tasks.Parallel.nuspec", - "lib/dotnet/System.Threading.Tasks.Parallel.dll", - "lib/net45/_._", - "lib/netcore50/System.Threading.Tasks.Parallel.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Threading.Tasks.Parallel.dll", - "ref/dotnet/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/de/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/es/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/fr/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/it/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/ja/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/ko/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/ru/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/zh-hans/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/zh-hant/System.Threading.Tasks.Parallel.xml", - "ref/net45/_._", - "ref/netcore50/System.Threading.Tasks.Parallel.dll", - "ref/netcore50/System.Threading.Tasks.Parallel.xml", - "ref/win8/_._", - "ref/wpa81/_._" - ] - }, - "System.Threading.Timer/4.0.0": { - "sha512": "BIdJH5/e4FnVl7TkRUiE3pWytp7OYiRUGtwUbyLewS/PhKiLepFetdtlW+FvDYOVn60Q2NMTrhHhJ51q+sVW5g==", - "type": "package", - "path": "system.threading.timer/4.0.0", - "files": [ - "System.Threading.Timer.4.0.0.nupkg.sha512", - "System.Threading.Timer.nuspec", - "lib/DNXCore50/System.Threading.Timer.dll", - "lib/net451/_._", - "lib/netcore50/System.Threading.Timer.dll", - "lib/win81/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Threading.Timer.dll", - "ref/dotnet/System.Threading.Timer.xml", - "ref/dotnet/de/System.Threading.Timer.xml", - "ref/dotnet/es/System.Threading.Timer.xml", - "ref/dotnet/fr/System.Threading.Timer.xml", - "ref/dotnet/it/System.Threading.Timer.xml", - "ref/dotnet/ja/System.Threading.Timer.xml", - "ref/dotnet/ko/System.Threading.Timer.xml", - "ref/dotnet/ru/System.Threading.Timer.xml", - "ref/dotnet/zh-hans/System.Threading.Timer.xml", - "ref/dotnet/zh-hant/System.Threading.Timer.xml", - "ref/net451/_._", - "ref/netcore50/System.Threading.Timer.dll", - "ref/netcore50/System.Threading.Timer.xml", - "ref/win81/_._", - "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll" - ] - }, - "System.Xml.ReaderWriter/4.0.10": { - "sha512": "VdmWWMH7otrYV7D+cviUo7XjX0jzDnD/lTGSZTlZqfIQ5PhXk85j+6P0TK9od3PnOd5ZIM+pOk01G/J+3nh9/w==", - "type": "package", - "path": "system.xml.readerwriter/4.0.10", - "files": [ - "System.Xml.ReaderWriter.4.0.10.nupkg.sha512", - "System.Xml.ReaderWriter.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.Xml.ReaderWriter.dll", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Xml.ReaderWriter.dll", - "ref/dotnet/System.Xml.ReaderWriter.xml", - "ref/dotnet/de/System.Xml.ReaderWriter.xml", - "ref/dotnet/es/System.Xml.ReaderWriter.xml", - "ref/dotnet/fr/System.Xml.ReaderWriter.xml", - "ref/dotnet/it/System.Xml.ReaderWriter.xml", - "ref/dotnet/ja/System.Xml.ReaderWriter.xml", - "ref/dotnet/ko/System.Xml.ReaderWriter.xml", - "ref/dotnet/ru/System.Xml.ReaderWriter.xml", - "ref/dotnet/zh-hans/System.Xml.ReaderWriter.xml", - "ref/dotnet/zh-hant/System.Xml.ReaderWriter.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Xml.XDocument/4.0.10": { - "sha512": "+ej0g0INnXDjpS2tDJsLO7/BjyBzC+TeBXLeoGnvRrm4AuBH9PhBjjZ1IuKWOhCkxPkFognUOKhZHS2glIOlng==", - "type": "package", - "path": "system.xml.xdocument/4.0.10", - "files": [ - "System.Xml.XDocument.4.0.10.nupkg.sha512", - "System.Xml.XDocument.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.Xml.XDocument.dll", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Xml.XDocument.dll", - "ref/dotnet/System.Xml.XDocument.xml", - "ref/dotnet/de/System.Xml.XDocument.xml", - "ref/dotnet/es/System.Xml.XDocument.xml", - "ref/dotnet/fr/System.Xml.XDocument.xml", - "ref/dotnet/it/System.Xml.XDocument.xml", - "ref/dotnet/ja/System.Xml.XDocument.xml", - "ref/dotnet/ko/System.Xml.XDocument.xml", - "ref/dotnet/ru/System.Xml.XDocument.xml", - "ref/dotnet/zh-hans/System.Xml.XDocument.xml", - "ref/dotnet/zh-hant/System.Xml.XDocument.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Xml.XmlDocument/4.0.0": { - "sha512": "H5qTx2+AXgaKE5wehU1ZYeYPFpp/rfFh69/937NvwCrDqbIkvJRmIFyKKpkoMI6gl9hGfuVizfIudVTMyowCXw==", - "type": "package", - "path": "system.xml.xmldocument/4.0.0", - "files": [ - "System.Xml.XmlDocument.4.0.0.nupkg.sha512", - "System.Xml.XmlDocument.nuspec", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/dotnet/System.Xml.XmlDocument.dll", - "lib/net46/System.Xml.XmlDocument.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Xml.XmlDocument.dll", - "ref/dotnet/System.Xml.XmlDocument.xml", - "ref/dotnet/de/System.Xml.XmlDocument.xml", - "ref/dotnet/es/System.Xml.XmlDocument.xml", - "ref/dotnet/fr/System.Xml.XmlDocument.xml", - "ref/dotnet/it/System.Xml.XmlDocument.xml", - "ref/dotnet/ja/System.Xml.XmlDocument.xml", - "ref/dotnet/ko/System.Xml.XmlDocument.xml", - "ref/dotnet/ru/System.Xml.XmlDocument.xml", - "ref/dotnet/zh-hans/System.Xml.XmlDocument.xml", - "ref/dotnet/zh-hant/System.Xml.XmlDocument.xml", - "ref/net46/System.Xml.XmlDocument.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" - ] - }, - "System.Xml.XmlSerializer/4.0.10": { - "sha512": "OKhE6vruk88z/hl0lmfrMvXteTASgJUagu6PT6S10i9uLbvDR3pTwB6jVgiwa2D2qtTB+eneZbS9jljhPXhTtg==", - "type": "package", - "path": "system.xml.xmlserializer/4.0.10", - "files": [ - "System.Xml.XmlSerializer.4.0.10.nupkg.sha512", - "System.Xml.XmlSerializer.nuspec", - "lib/DNXCore50/System.Xml.XmlSerializer.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netcore50/System.Xml.XmlSerializer.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Xml.XmlSerializer.dll", - "ref/dotnet/System.Xml.XmlSerializer.xml", - "ref/dotnet/de/System.Xml.XmlSerializer.xml", - "ref/dotnet/es/System.Xml.XmlSerializer.xml", - "ref/dotnet/fr/System.Xml.XmlSerializer.xml", - "ref/dotnet/it/System.Xml.XmlSerializer.xml", - "ref/dotnet/ja/System.Xml.XmlSerializer.xml", - "ref/dotnet/ko/System.Xml.XmlSerializer.xml", - "ref/dotnet/ru/System.Xml.XmlSerializer.xml", - "ref/dotnet/zh-hans/System.Xml.XmlSerializer.xml", - "ref/dotnet/zh-hant/System.Xml.XmlSerializer.xml", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll" - ] - }, - "Win2D.uwp/1.3.0": { - "sha512": "wwMHiigyftTU7W98PTWwg7/i4DT4zIMW58SKkmdfhx9+ThCBnHvOD7HeEoAMf+eZz5CB5zQ9vX2FXAgvX2bJsQ==", - "type": "package", - "path": "win2d.uwp/1.3.0", - "files": [ - "Win2D.uwp.1.3.0.nupkg.sha512", - "Win2D.uwp.nuspec", - "Win2d.githash.txt", - "build/native/Win2D.uwp.targets", - "include/Microsoft.Graphics.Canvas.h", - "include/Microsoft.Graphics.Canvas.native.h", - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd", - "lib/uap10.0/Microsoft.Graphics.Canvas.xml", - "lib/uap10.0/Workaround1200257.dll", - "lib/uap10.0/en/Microsoft.Graphics.Canvas.xml", - "runtimes/win10-arm/native/Microsoft.Graphics.Canvas.dll", - "runtimes/win10-x64/native/Microsoft.Graphics.Canvas.dll", - "runtimes/win10-x86/native/Microsoft.Graphics.Canvas.dll" - ] - } - }, - "projectFileDependencyGroups": { - "": [ - "Microsoft.NETCore.UniversalWindowsPlatform >= 5.0.0", - "Win2D.uwp >= 1.3.0" - ], - "UAP,Version=v10.0": [] - }, - "tools": {}, - "projectFileToolGroups": {}, - "packageFolders": { - "C:\\Users\\james.MS\\.nuget\\packages\\": {} - } -} \ No newline at end of file diff --git a/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Black.ttf b/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Black.ttf deleted file mode 100644 index fbde625d40..0000000000 Binary files a/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Black.ttf and /dev/null differ diff --git a/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-BlackItalic.ttf b/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-BlackItalic.ttf deleted file mode 100644 index 60f7782a2e..0000000000 Binary files a/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-BlackItalic.ttf and /dev/null differ diff --git a/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Bold.ttf b/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Bold.ttf deleted file mode 100644 index a355c27cde..0000000000 Binary files a/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Bold.ttf and /dev/null differ diff --git a/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-BoldItalic.ttf b/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-BoldItalic.ttf deleted file mode 100644 index 3c9a7a3736..0000000000 Binary files a/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-BoldItalic.ttf and /dev/null differ diff --git a/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Italic.ttf b/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Italic.ttf deleted file mode 100644 index ff6046d5bf..0000000000 Binary files a/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Italic.ttf and /dev/null differ diff --git a/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Light.ttf b/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Light.ttf deleted file mode 100644 index 94c6bcc67e..0000000000 Binary files a/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Light.ttf and /dev/null differ diff --git a/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-LightItalic.ttf b/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-LightItalic.ttf deleted file mode 100644 index 04cc002302..0000000000 Binary files a/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-LightItalic.ttf and /dev/null differ diff --git a/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Medium.ttf b/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Medium.ttf deleted file mode 100644 index 39c63d7461..0000000000 Binary files a/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Medium.ttf and /dev/null differ diff --git a/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-MediumItalic.ttf b/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-MediumItalic.ttf deleted file mode 100644 index dc743f0a66..0000000000 Binary files a/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-MediumItalic.ttf and /dev/null differ diff --git a/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Regular.ttf b/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Regular.ttf deleted file mode 100644 index 8c082c8de0..0000000000 Binary files a/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Regular.ttf and /dev/null differ diff --git a/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Thin.ttf b/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Thin.ttf deleted file mode 100644 index d69555029c..0000000000 Binary files a/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Thin.ttf and /dev/null differ diff --git a/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-ThinItalic.ttf b/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-ThinItalic.ttf deleted file mode 100644 index 07172ff666..0000000000 Binary files a/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-ThinItalic.ttf and /dev/null differ diff --git a/MaterialDesignThemes.Wpf/Resources/Roboto/RobotoCondensed-Bold.ttf b/MaterialDesignThemes.Wpf/Resources/Roboto/RobotoCondensed-Bold.ttf deleted file mode 100644 index fc28868a83..0000000000 Binary files a/MaterialDesignThemes.Wpf/Resources/Roboto/RobotoCondensed-Bold.ttf and /dev/null differ diff --git a/MaterialDesignThemes.Wpf/Resources/Roboto/RobotoCondensed-BoldItalic.ttf b/MaterialDesignThemes.Wpf/Resources/Roboto/RobotoCondensed-BoldItalic.ttf deleted file mode 100644 index e1a648ffff..0000000000 Binary files a/MaterialDesignThemes.Wpf/Resources/Roboto/RobotoCondensed-BoldItalic.ttf and /dev/null differ diff --git a/MaterialDesignThemes.Wpf/Resources/Roboto/RobotoCondensed-Italic.ttf b/MaterialDesignThemes.Wpf/Resources/Roboto/RobotoCondensed-Italic.ttf deleted file mode 100644 index 97ff9f1edc..0000000000 Binary files a/MaterialDesignThemes.Wpf/Resources/Roboto/RobotoCondensed-Italic.ttf and /dev/null differ diff --git a/MaterialDesignThemes.Wpf/Resources/Roboto/RobotoCondensed-Light.ttf b/MaterialDesignThemes.Wpf/Resources/Roboto/RobotoCondensed-Light.ttf deleted file mode 100644 index 2dae31e286..0000000000 Binary files a/MaterialDesignThemes.Wpf/Resources/Roboto/RobotoCondensed-Light.ttf and /dev/null differ diff --git a/MaterialDesignThemes.Wpf/Resources/Roboto/RobotoCondensed-LightItalic.ttf b/MaterialDesignThemes.Wpf/Resources/Roboto/RobotoCondensed-LightItalic.ttf deleted file mode 100644 index da108d3aa5..0000000000 Binary files a/MaterialDesignThemes.Wpf/Resources/Roboto/RobotoCondensed-LightItalic.ttf and /dev/null differ diff --git a/MaterialDesignThemes.Wpf/Resources/Roboto/RobotoCondensed-Regular.ttf b/MaterialDesignThemes.Wpf/Resources/Roboto/RobotoCondensed-Regular.ttf deleted file mode 100644 index c2304c14ab..0000000000 Binary files a/MaterialDesignThemes.Wpf/Resources/Roboto/RobotoCondensed-Regular.ttf and /dev/null differ diff --git a/MaterialDesignToolkit.Full.sln b/MaterialDesignToolkit.Full.sln index c5e520f2af..d8742bd288 100644 --- a/MaterialDesignToolkit.Full.sln +++ b/MaterialDesignToolkit.Full.sln @@ -2,33 +2,33 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.0.31612.314 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MaterialDesignDemo", "MainDemo.Wpf\MaterialDesignDemo.csproj", "{CF0A27A8-EF82-44E5-B673-ECCC150C48ED}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MaterialDesignDemo", "src\MainDemo.Wpf\MaterialDesignDemo.csproj", "{CF0A27A8-EF82-44E5-B673-ECCC150C48ED}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MaterialDesignThemes.Wpf", "MaterialDesignThemes.Wpf\MaterialDesignThemes.Wpf.csproj", "{F079FB0A-A8ED-4216-B6A5-345756751A04}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MaterialDesignThemes.Wpf", "src\MaterialDesignThemes.Wpf\MaterialDesignThemes.Wpf.csproj", "{F079FB0A-A8ED-4216-B6A5-345756751A04}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MaterialDesignColors.Wpf", "MaterialDesignColors.Wpf\MaterialDesignColors.Wpf.csproj", "{90B53209-C60C-4655-B28D-A1B3E1044BA3}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MaterialDesignColors.Wpf", "src\MaterialDesignColors.Wpf\MaterialDesignColors.Wpf.csproj", "{90B53209-C60C-4655-B28D-A1B3E1044BA3}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MahAppsDragablzDemo", "MahMaterialDragablzMashUp\MahAppsDragablzDemo.csproj", "{803954E5-3A35-4D8B-95A7-F6E9B63EC0DF}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MahAppsDragablzDemo", "src\MahMaterialDragablzMashUp\MahAppsDragablzDemo.csproj", "{803954E5-3A35-4D8B-95A7-F6E9B63EC0DF}" EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "web", "web", "{7D0AC158-FD01-4EA3-8F8A-D19C085C77DF}" +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "web", "src\web", "{7D0AC158-FD01-4EA3-8F8A-D19C085C77DF}" ProjectSection(SolutionItems) = preProject - web\MashUp.gif = web\MashUp.gif - web\MaterialDesignPalette.js = web\MaterialDesignPalette.js - web\PaletteBuilder.html = web\PaletteBuilder.html + src\web\images\MashUp.gif = src\web\images\MashUp.gif + src\web\scripts\PaletteBuilder.js = src\web\scripts\PaletteBuilder.js + src\web\PaletteBuilder.html = src\web\PaletteBuilder.html EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Demos", "Demos", "{D34BE232-DE51-43C1-ABDC-B69003BB50FF}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MaterialDesignColors.Wpf.Tests", "MaterialDesignColors.Wpf.Tests\MaterialDesignColors.Wpf.Tests.csproj", "{FD1D557A-251C-4D00-9FDE-6FF9FFA747B8}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MaterialDesignColors.Wpf.Tests", "tests\MaterialDesignColors.Wpf.Tests\MaterialDesignColors.Wpf.Tests.csproj", "{FD1D557A-251C-4D00-9FDE-6FF9FFA747B8}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MaterialDesignThemes.MahApps", "MaterialDesignThemes.MahApps\MaterialDesignThemes.MahApps.csproj", "{81556A2D-D467-43E7-945B-FD987C676CF6}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MaterialDesignThemes.MahApps", "src\MaterialDesignThemes.MahApps\MaterialDesignThemes.MahApps.csproj", "{81556A2D-D467-43E7-945B-FD987C676CF6}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MaterialDesignThemes.Wpf.Tests", "MaterialDesignThemes.Wpf.Tests\MaterialDesignThemes.Wpf.Tests.csproj", "{A361C80E-F6CD-4C57-A96C-002DB159C1F4}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MaterialDesignThemes.Wpf.Tests", "tests\MaterialDesignThemes.Wpf.Tests\MaterialDesignThemes.Wpf.Tests.csproj", "{A361C80E-F6CD-4C57-A96C-002DB159C1F4}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{55087897-5F09-45CA-8E12-12B36B45F262}" ProjectSection(SolutionItems) = preProject .editorconfig = .editorconfig - Scripts\BuildNugets.ps1 = Scripts\BuildNugets.ps1 + build\BuildNugets.ps1 = build\BuildNugets.ps1 Directory.Build.props = Directory.Build.props Directory.Build.targets = Directory.Build.targets Directory.packages.props = Directory.packages.props @@ -37,20 +37,20 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution MaterialDesignColors.nuspec = MaterialDesignColors.nuspec MaterialDesignThemes.MahApps.nuspec = MaterialDesignThemes.MahApps.nuspec MaterialDesignThemes.nuspec = MaterialDesignThemes.nuspec - Scripts\MigrateBrushes.ps1 = Scripts\MigrateBrushes.ps1 + build\MigrateBrushes.ps1 = build\MigrateBrushes.ps1 nuget.config = nuget.config README.md = README.md Settings.XAMLStyler = Settings.XAMLStyler EndProjectSection EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MaterialDesignThemes.UITests", "MaterialDesignThemes.UITests\MaterialDesignThemes.UITests.csproj", "{594D2254-3623-4088-A8BD-D74B6E96DE9F}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MaterialDesignThemes.UITests", "tests\MaterialDesignThemes.UITests\MaterialDesignThemes.UITests.csproj", "{594D2254-3623-4088-A8BD-D74B6E96DE9F}" ProjectSection(ProjectDependencies) = postProject {CF0A27A8-EF82-44E5-B673-ECCC150C48ED} = {CF0A27A8-EF82-44E5-B673-ECCC150C48ED} EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tools", "Tools", "{9E303A4A-3712-44B9-91EE-830FDC087795}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "mdresgen", "mdresgen\mdresgen.csproj", "{59CE50AC-D176-4CC0-B465-26F66054A15E}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MaterialDesignToolkit.ResourceGeneration", "src\MaterialDesignToolkit.ResourceGeneration\MaterialDesignToolkit.ResourceGeneration.csproj", "{59CE50AC-D176-4CC0-B465-26F66054A15E}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{18401177-A30E-4330-8F6B-101DF876CE99}" ProjectSection(SolutionItems) = preProject @@ -63,7 +63,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{18401177 .github\workflows\release.yml = .github\workflows\release.yml EndProjectSection EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MaterialDesign3Demo", "MaterialDesign3.Demo.Wpf\MaterialDesign3Demo.csproj", "{98627CBE-F009-482E-97E9-C69C7135E91F}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MaterialDesign3Demo", "src\MaterialDesign3.Demo.Wpf\MaterialDesign3Demo.csproj", "{98627CBE-F009-482E-97E9-C69C7135E91F}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/MaterialDesignToolkit.Full.sln.DotSettings b/MaterialDesignToolkit.Full.sln.DotSettings deleted file mode 100644 index dccc6345d1..0000000000 --- a/MaterialDesignToolkit.Full.sln.DotSettings +++ /dev/null @@ -1,21 +0,0 @@ - - False - <Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /> - <Policy Inspect="True" Prefix="_" Suffix="" Style="aaBb" /> - <Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /> - True - True - True - True - True - True - True - True - True - True - True - True - True - True - True - True \ No newline at end of file diff --git a/MaterialDesignToolkit.ResourceGeneration.slnf b/MaterialDesignToolkit.ResourceGeneration.slnf deleted file mode 100644 index a826653ce7..0000000000 --- a/MaterialDesignToolkit.ResourceGeneration.slnf +++ /dev/null @@ -1,8 +0,0 @@ -{ - "solution": { - "path": "MaterialDesignToolkit.Full.sln", - "projects": [ - "mdresgen\\mdresgen.csproj" - ] - } -} \ No newline at end of file diff --git a/MaterialDesignToolkit.Uwp.sln b/MaterialDesignToolkit.Uwp.sln deleted file mode 100644 index 73dd8e4413..0000000000 --- a/MaterialDesignToolkit.Uwp.sln +++ /dev/null @@ -1,64 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 14 -VisualStudioVersion = 14.0.23107.0 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MaterialDesignThemes.Uwp", "MaterialDesignThemes.Uwp\MaterialDesignThemes.Uwp.csproj", "{E4686A3F-CC25-4EEF-9A24-7CD4A22DA233}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MainDemo.Uwp", "MainDemo.Uwp\MainDemo.Uwp.csproj", "{666A0F51-6B18-4C48-9772-5ED3FDB03A2E}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Debug|ARM = Debug|ARM - Debug|x64 = Debug|x64 - Debug|x86 = Debug|x86 - Release|Any CPU = Release|Any CPU - Release|ARM = Release|ARM - Release|x64 = Release|x64 - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {E4686A3F-CC25-4EEF-9A24-7CD4A22DA233}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {E4686A3F-CC25-4EEF-9A24-7CD4A22DA233}.Debug|Any CPU.Build.0 = Debug|Any CPU - {E4686A3F-CC25-4EEF-9A24-7CD4A22DA233}.Debug|ARM.ActiveCfg = Debug|ARM - {E4686A3F-CC25-4EEF-9A24-7CD4A22DA233}.Debug|ARM.Build.0 = Debug|ARM - {E4686A3F-CC25-4EEF-9A24-7CD4A22DA233}.Debug|x64.ActiveCfg = Debug|x64 - {E4686A3F-CC25-4EEF-9A24-7CD4A22DA233}.Debug|x64.Build.0 = Debug|x64 - {E4686A3F-CC25-4EEF-9A24-7CD4A22DA233}.Debug|x86.ActiveCfg = Debug|x86 - {E4686A3F-CC25-4EEF-9A24-7CD4A22DA233}.Debug|x86.Build.0 = Debug|x86 - {E4686A3F-CC25-4EEF-9A24-7CD4A22DA233}.Release|Any CPU.ActiveCfg = Release|Any CPU - {E4686A3F-CC25-4EEF-9A24-7CD4A22DA233}.Release|Any CPU.Build.0 = Release|Any CPU - {E4686A3F-CC25-4EEF-9A24-7CD4A22DA233}.Release|ARM.ActiveCfg = Release|ARM - {E4686A3F-CC25-4EEF-9A24-7CD4A22DA233}.Release|ARM.Build.0 = Release|ARM - {E4686A3F-CC25-4EEF-9A24-7CD4A22DA233}.Release|x64.ActiveCfg = Release|x64 - {E4686A3F-CC25-4EEF-9A24-7CD4A22DA233}.Release|x64.Build.0 = Release|x64 - {E4686A3F-CC25-4EEF-9A24-7CD4A22DA233}.Release|x86.ActiveCfg = Release|x86 - {E4686A3F-CC25-4EEF-9A24-7CD4A22DA233}.Release|x86.Build.0 = Release|x86 - {666A0F51-6B18-4C48-9772-5ED3FDB03A2E}.Debug|Any CPU.ActiveCfg = Debug|x86 - {666A0F51-6B18-4C48-9772-5ED3FDB03A2E}.Debug|Any CPU.Build.0 = Debug|x86 - {666A0F51-6B18-4C48-9772-5ED3FDB03A2E}.Debug|Any CPU.Deploy.0 = Debug|x86 - {666A0F51-6B18-4C48-9772-5ED3FDB03A2E}.Debug|ARM.ActiveCfg = Debug|ARM - {666A0F51-6B18-4C48-9772-5ED3FDB03A2E}.Debug|ARM.Build.0 = Debug|ARM - {666A0F51-6B18-4C48-9772-5ED3FDB03A2E}.Debug|ARM.Deploy.0 = Debug|ARM - {666A0F51-6B18-4C48-9772-5ED3FDB03A2E}.Debug|x64.ActiveCfg = Debug|x64 - {666A0F51-6B18-4C48-9772-5ED3FDB03A2E}.Debug|x64.Build.0 = Debug|x64 - {666A0F51-6B18-4C48-9772-5ED3FDB03A2E}.Debug|x64.Deploy.0 = Debug|x64 - {666A0F51-6B18-4C48-9772-5ED3FDB03A2E}.Debug|x86.ActiveCfg = Debug|x86 - {666A0F51-6B18-4C48-9772-5ED3FDB03A2E}.Debug|x86.Build.0 = Debug|x86 - {666A0F51-6B18-4C48-9772-5ED3FDB03A2E}.Debug|x86.Deploy.0 = Debug|x86 - {666A0F51-6B18-4C48-9772-5ED3FDB03A2E}.Release|Any CPU.ActiveCfg = Release|x86 - {666A0F51-6B18-4C48-9772-5ED3FDB03A2E}.Release|ARM.ActiveCfg = Release|ARM - {666A0F51-6B18-4C48-9772-5ED3FDB03A2E}.Release|ARM.Build.0 = Release|ARM - {666A0F51-6B18-4C48-9772-5ED3FDB03A2E}.Release|ARM.Deploy.0 = Release|ARM - {666A0F51-6B18-4C48-9772-5ED3FDB03A2E}.Release|x64.ActiveCfg = Release|x64 - {666A0F51-6B18-4C48-9772-5ED3FDB03A2E}.Release|x64.Build.0 = Release|x64 - {666A0F51-6B18-4C48-9772-5ED3FDB03A2E}.Release|x64.Deploy.0 = Release|x64 - {666A0F51-6B18-4C48-9772-5ED3FDB03A2E}.Release|x86.ActiveCfg = Release|x86 - {666A0F51-6B18-4C48-9772-5ED3FDB03A2E}.Release|x86.Build.0 = Release|x86 - {666A0F51-6B18-4C48-9772-5ED3FDB03A2E}.Release|x86.Deploy.0 = Release|x86 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/MaterialDesignToolkit.Wpf.sln.vsext.disable b/MaterialDesignToolkit.Wpf.sln.vsext.disable deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/MaterialDesignToolkit.Wpf.slnf b/MaterialDesignToolkit.Wpf.slnf deleted file mode 100644 index 011806b6a1..0000000000 --- a/MaterialDesignToolkit.Wpf.slnf +++ /dev/null @@ -1,14 +0,0 @@ -{ - "solution": { - "path": "MaterialDesignToolkit.Full.sln", - "projects": [ - "MahMaterialDragablzMashUp\\MahAppsDragablzDemo.csproj", - "MainDemo.Wpf\\MaterialDesignDemo.csproj", - "MaterialDesignColors.Wpf.Tests\\MaterialDesignColors.Wpf.Tests.csproj", - "MaterialDesignColors.Wpf\\MaterialDesignColors.Wpf.csproj", - "MaterialDesignThemes.MahApps\\MaterialDesignThemes.MahApps.csproj", - "MaterialDesignThemes.Wpf.Tests\\MaterialDesignThemes.Wpf.Tests.csproj", - "MaterialDesignThemes.Wpf\\MaterialDesignThemes.Wpf.csproj" - ] - } -} \ No newline at end of file diff --git a/README.md b/README.md index 8436f4a02c..1bad0be6c4 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ -# ![Alt text](web/images/MD4XAML64.png "Material Design In XAML Toolkit") Material Design In XAML Toolkit +# ![Alt text](src/web/images/MD4XAML64.png "Material Design In XAML Toolkit") Material Design In XAML Toolkit Comprehensive and easy to use Material Design theme and control library for the Windows desktop. -![Alt text](web/images/screen-home.png "Material Design Demo") +![Alt text](src/web/images/screen-home.png "Material Design Demo") ###### [More screenshots below](#Screenshots) -# ![Alt text](web/images/MD4XAML28.png "Summary") Summary +# ![Alt text](src/web/images/MD4XAML28.png "Summary") Summary - Material Design styles for all major WPF Framework controls - Additional controls to support the theme, including Multi Action Button, Cards, Dialogs, Clock @@ -22,13 +22,13 @@ Comprehensive and easy to use Material Design theme and control library for the [![NuGet-Themes](https://img.shields.io/nuget/vpre/MaterialDesignColors.svg?label=NuGet:%20Colours&style=flat-square)](https://www.nuget.org/packages/MaterialDesignColors/) [![Issues](https://img.shields.io/github/issues/MaterialDesignInXAML/MaterialDesignInXamlToolkit.svg?style=flat-square)](https://github.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/issues) -# ![Alt text](web/images/MD4XAML28.png "How Can I Use The Themes?") Getting Started +# ![Alt text](src/web/images/MD4XAML28.png "How Can I Use The Themes?") Getting Started - Checkout the [Super Quick Start](https://github.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/wiki/Super-Quick-Start) - Or, the more comprehensive [Starting Guide](https://github.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/wiki/Getting-Started) guide. - Or, watch the [Material Design In XAML Toolkit An Introduction](https://www.youtube.com/watch?v=-n5yeEOsbCk) video. -# ![Alt text](web/images/MD4XAML28.png "In Action") See It In Action +# ![Alt text](src/web/images/MD4XAML28.png "In Action") See It In Action - Download a pre-compiled demo from the [releases](https://github.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/releases) page. - Download the source and run the demo ([more information](https://github.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/wiki/Compiling-From-Source)). @@ -37,11 +37,11 @@ Comprehensive and easy to use Material Design theme and control library for the - Checkout [F1ix](http://materialdesigninxaml.net/f1ix). - Checkout [Motion List](https://github.com/MaterialDesignInXAML/MotionList). -# ![Alt text](web/images/MD4XAML28.png "How Can I Use The Themes?") Source Code +# ![Alt text](src/web/images/MD4XAML28.png "How Can I Use The Themes?") Source Code To load the source project you will need Visual Studio 2022. Don't worry if you have an earlier version, you can still use the compiled assemblies from NuGet (`Install-Package MaterialDesignThemes`). There are three demo projects in the solution, restore the necessary NuGet packages and correct the programming syntax that is not compatible with C# versions lower than C# 10.0 (`currently used in Visual Studio 2022`). Then, you should be able to fire the projects up. The first one is a "pure" Material Design 2 project. The second one shows how to combine with Dragablz and MahApps. The last one is a Material Design 3 project (`In Development`). -# ![Alt text](web/images/MD4XAML28.png "Contributions") Contribution Guidelines +# ![Alt text](src/web/images/MD4XAML28.png "Contributions") Contribution Guidelines - Before contributing code read the [Contribution Guidelines](.github/CONTRIBUTING.md) - GitHub issues are for bugs and feature requests. @@ -51,7 +51,7 @@ To load the source project you will need Visual Studio 2022. Don't worry if you - Hit the :star: Star :star: button - If you'd like to make a very much appreciated financial donation please visit open collective -# ![Alt text](web/images/MD4XAML28.png "Mentions") Mentions +# ![Alt text](src/web/images/MD4XAML28.png "Mentions") Mentions - **[James Willock](https://github.com/ButchersBoy) [![Twitter](https://img.shields.io/badge/twitter-%40james__willock-55acee.svg?style=flat-square)](https://twitter.com/James_Willock)** - Founder of the project @@ -65,47 +65,47 @@ To load the source project you will need Visual Studio 2022. Don't worry if you - [Material Design Extensions](https://github.com/spiegelp/MaterialDesignExtensions) - A community repository based on this library that provides additional controls and features. - **[Contributors](https://github.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/graphs/contributors)** - A big thank you to all the contributors of the project! -# ![Alt text](web/images/MD4XAML28.png "Screenshots") Screenshots +# ![Alt text](src/web/images/MD4XAML28.png "Screenshots") Screenshots -![Alt text](web/images/screen-buttons.png "Buttons") +![Alt text](src/web/images/screen-buttons.png "Buttons") -![Alt text](web/images/screen-toggles.png "Toggles") +![Alt text](src/web/images/screen-toggles.png "Toggles") -![Alt text](web/images/screen-fields.png "Fields") +![Alt text](src/web/images/screen-fields.png "Fields") -![Alt text](web/images/screen-comboboxes.png "ComboBoxes") +![Alt text](src/web/images/screen-comboboxes.png "ComboBoxes") -![Alt text](web/images/screen-palette.png "Palette") +![Alt text](src/web/images/screen-palette.png "Palette") -![Alt text](web/images/screen-colortools.png "Color Tools") +![Alt text](src/web/images/screen-colortools.png "Color Tools") -![Alt text](web/images/screen-pickers.png "Pickers") +![Alt text](src/web/images/screen-pickers.png "Pickers") -![Alt text](web/images/screen-iconpack.png "Icons") +![Alt text](src/web/images/screen-iconpack.png "Icons") -![Alt text](web/images/screen-cards.png "Cards") +![Alt text](src/web/images/screen-cards.png "Cards") -![Alt text](web/images/screen-menutoolbar.png "Menus and Toolbars") +![Alt text](src/web/images/screen-menutoolbar.png "Menus and Toolbars") -![Alt text](web/images/screen-progress.png "Progress Bars") +![Alt text](src/web/images/screen-progress.png "Progress Bars") -![Alt text](web/images/screen-dialogs.png "Dialogs") +![Alt text](src/web/images/screen-dialogs.png "Dialogs") -![Alt text](web/images/screen-lists.png "Lists") +![Alt text](src/web/images/screen-lists.png "Lists") -![Alt text](web/images/screen-treeview.png "Tree View") +![Alt text](src/web/images/screen-treeview.png "Tree View") -![Alt text](web/images/screen-sliders.png "Sliders") +![Alt text](src/web/images/screen-sliders.png "Sliders") -![Alt text](web/images/screen-chips.png "Chips") +![Alt text](src/web/images/screen-chips.png "Chips") -![Alt text](web/images/screen-typography.png "Typography") +![Alt text](src/web/images/screen-typography.png "Typography") -![Alt text](web/images/screen-groupbox.png "Group Box") +![Alt text](src/web/images/screen-groupbox.png "Group Box") -![Alt text](web/images/screen-snackbars.png "Snackbars") +![Alt text](src/web/images/screen-snackbars.png "Snackbars") -![Alt text](web/images/screen-elevation.png "Elevation") +![Alt text](src/web/images/screen-elevation.png "Elevation") ## Contributors diff --git a/Scripts/MigrateBrushes.ps1 b/Scripts/MigrateBrushes.ps1 deleted file mode 100644 index 65562ce8d5..0000000000 --- a/Scripts/MigrateBrushes.ps1 +++ /dev/null @@ -1,60 +0,0 @@ -param( - [System.IO.DirectoryInfo]$RootDirectory -) - -#NB: This script requires PowerShell 7.1 or later - -$files = Get-ChildItem -Recurse -Path $RootDirectory -File -Filter "*.xaml" -$resourceTypes = ("StaticResource", "DynamicResource") - -foreach ($file in $files) { - $fileContents = Get-Content $file -Encoding utf8BOM -Raw - $fileLength = $fileContents.Length - - foreach($resourceType in $resourceTypes) { - $fileContents = $fileContents -replace "\{$resourceType\ PrimaryHueLightBrush}", "{$resourceType MaterialDesign.Brush.Primary.Light}" - $fileContents = $fileContents -replace "\{$resourceType\ PrimaryHueLightForegroundBrush}", "{$resourceType MaterialDesign.Brush.Primary.Light.Foreground}" - $fileContents = $fileContents -replace "\{$resourceType\ PrimaryHueMidBrush}", "{$resourceType MaterialDesign.Brush.Primary}" - $fileContents = $fileContents -replace "\{$resourceType\ PrimaryHueMidForegroundBrush}", "{$resourceType MaterialDesign.Brush.Primary.Foreground}" - $fileContents = $fileContents -replace "\{$resourceType\ PrimaryHueDarkBrush}", "{$resourceType MaterialDesign.Brush.Primary.Dark}" - $fileContents = $fileContents -replace "\{$resourceType\ PrimaryHueDarkForegroundBrush}", "{$resourceType MaterialDesign.Brush.Primary.Dark.Foreground}" - $fileContents = $fileContents -replace "\{$resourceType\ SecondaryHueLightBrush}", "{$resourceType MaterialDesign.Brush.Secondary.Light}" - $fileContents = $fileContents -replace "\{$resourceType\ SecondaryHueLightForegroundBrush}", "{$resourceType MaterialDesign.Brush.Secondary.Light.Foreground}" - $fileContents = $fileContents -replace "\{$resourceType\ SecondaryHueMidBrush}", "{$resourceType MaterialDesign.Brush.Secondary}" - $fileContents = $fileContents -replace "\{$resourceType\ SecondaryHueMidForegroundBrush}", "{$resourceType MaterialDesign.Brush.Secondary.Foreground}" - $fileContents = $fileContents -replace "\{$resourceType\ SecondaryHueDarkBrush}", "{$resourceType MaterialDesign.Brush.Secondary.Dark}" - $fileContents = $fileContents -replace "\{$resourceType\ SecondaryHueDarkForegroundBrush}", "{$resourceType MaterialDesign.Brush.Secondary.Dark.Foreground}" - $fileContents = $fileContents -replace "\{$resourceType\ MaterialDesignPaper}", "{$resourceType MaterialDesign.Brush.Background}" - $fileContents = $fileContents -replace "\{$resourceType\ MaterialDesignFlatButtonClick}", "{$resourceType MaterialDesign.Brush.Button.FlatClick}" - $fileContents = $fileContents -replace "\{$resourceType\ MaterialDesignFlatButtonRipple}", "{$resourceType MaterialDesign.Brush.Button.Ripple}" - $fileContents = $fileContents -replace "\{$resourceType\ MaterialDesignSnackbarRipple}", "{$resourceType MaterialDesign.Brush.Button.Ripple}" - $fileContents = $fileContents -replace "\{$resourceType\ MaterialDesignBackground}", "{$resourceType MaterialDesign.Brush.Card.Background}" - $fileContents = $fileContents -replace "\{$resourceType\ MaterialDesignCardBackground}", "{$resourceType MaterialDesign.Brush.Card.Background}" - $fileContents = $fileContents -replace "\{$resourceType\ MaterialDesignCheckBoxDisabled}", "{$resourceType MaterialDesign.Brush.CheckBox.Disabled}" - $fileContents = $fileContents -replace "\{$resourceType\ MaterialDesignChipBackground}", "{$resourceType MaterialDesign.Brush.Chip.Background}" - $fileContents = $fileContents -replace "\{$resourceType\ MaterialDesignDataGridRowHoverBackground}", "{$resourceType MaterialDesign.Brush.DataGrid.RowHoverBackground}" - $fileContents = $fileContents -replace "\{$resourceType\ MaterialDesignBody}", "{$resourceType MaterialDesign.Brush.Foreground}" - $fileContents = $fileContents -replace "\{$resourceType\ MaterialDesignBodyLight}", "{$resourceType MaterialDesign.Brush.ForegroundLight}" - $fileContents = $fileContents -replace "\{$resourceType\ MaterialDesignCheckBoxOff}", "{$resourceType MaterialDesign.Brush.ForegroundLight}" - $fileContents = $fileContents -replace "\{$resourceType\ MaterialDesignTextBoxBorder}", "{$resourceType MaterialDesign.Brush.ForegroundLight}" - $fileContents = $fileContents -replace "\{$resourceType\ MaterialDesignColumnHeader}", "{$resourceType MaterialDesign.Brush.Header.Foreground}" - $fileContents = $fileContents -replace "\{$resourceType\ MaterialDesignTextAreaBorder}", "{$resourceType MaterialDesign.Brush.Header.Foreground}" - $fileContents = $fileContents -replace "\{$resourceType\ MaterialDesignSnackbarBackground}", "{$resourceType MaterialDesign.Brush.SnackBar.Background}" - $fileContents = $fileContents -replace "\{$resourceType\ MaterialDesignSnackbarMouseOver}", "{$resourceType MaterialDesign.Brush.SnackBar.MouseOver}" - $fileContents = $fileContents -replace "\{$resourceType\ MaterialDesignTextFieldBoxDisabledBackground}", "{$resourceType MaterialDesign.Brush.TextBox.DisabledBackground}" - $fileContents = $fileContents -replace "\{$resourceType\ MaterialDesignTextFieldBoxBackground}", "{$resourceType MaterialDesign.Brush.TextBox.FilledBackground}" - $fileContents = $fileContents -replace "\{$resourceType\ MaterialDesignTextFieldBoxHoverBackground}", "{$resourceType MaterialDesign.Brush.TextBox.HoverBackground}" - $fileContents = $fileContents -replace "\{$resourceType\ MaterialDesignDivider}", "{$resourceType MaterialDesign.Brush.TextBox.HoverBackground}" - $fileContents = $fileContents -replace "\{$resourceType\ MaterialDesignTextAreaInactiveBorder}", "{$resourceType MaterialDesign.Brush.TextBox.OutlineInactiveBorder}" - $fileContents = $fileContents -replace "\{$resourceType\ MaterialDesignToolBarBackground}", "{$resourceType MaterialDesign.Brush.ToolBar.Background}" - $fileContents = $fileContents -replace "\{$resourceType\ MaterialDesignToolBackground}", "{$resourceType MaterialDesign.Brush.ToolBar.Item.Background}" - $fileContents = $fileContents -replace "\{$resourceType\ MaterialDesignToolForeground}", "{$resourceType MaterialDesign.Brush.ToolBar.Item.Foreground}" - $fileContents = $fileContents -replace "\{$resourceType\ MaterialDesignToolTipBackground}", "{$resourceType MaterialDesign.Brush.ToolTip.Background}" - $fileContents = $fileContents -replace "\{$resourceType\ MaterialDesignValidationErrorBrush}", "{$resourceType MaterialDesign.Brush.ValidationError}" - } - - if ($fileContents.Length -ne $fileLength) { - Set-Content -Path $file -Value $fileContents -Encoding utf8BOM -NoNewline - } -} - diff --git a/Scripts/azure-pipelines-wiki.yml b/Scripts/azure-pipelines-wiki.yml deleted file mode 100644 index d48f881e9a..0000000000 --- a/Scripts/azure-pipelines-wiki.yml +++ /dev/null @@ -1,24 +0,0 @@ -trigger: none - -pr: none - -pool: - vmImage: 'VS2017-Win2016' - -steps: -- task: PowerShell@2 - inputs: - filePath: 'Scripts\\GenerateThemesWikiMarkdown.ps1' - -- task: WikiUpdaterTask@1 - inputs: - repo: 'github.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit.wiki.git' - filename: 'ControlStyleList.md' - dataIsFile: true - sourceFile: 'Scripts\\ControlStyleList.md' - message: 'Automatic update of ControlStyleList.md from Azure pipeline' - gitname: 'Azure Dev Ops' - gitemail: 'azure@materialdesigninxaml.net' - user: '$(GitHubUser)' - password: '$(GitHubPat)' - localpath: '$(System.DefaultWorkingDirectory)\\Scripts\\Wiki' \ No newline at end of file diff --git a/Scripts/ApplyXamlStyler.ps1 b/build/ApplyXamlStyler.ps1 similarity index 100% rename from Scripts/ApplyXamlStyler.ps1 rename to build/ApplyXamlStyler.ps1 diff --git a/Scripts/BuildNugets.ps1 b/build/BuildNugets.ps1 similarity index 66% rename from Scripts/BuildNugets.ps1 rename to build/BuildNugets.ps1 index 9c4de698e7..468fd29c9e 100644 --- a/Scripts/BuildNugets.ps1 +++ b/build/BuildNugets.ps1 @@ -17,7 +17,9 @@ function Update-Icon { [string] $iconUrl = $xml.package.metadata.iconUrl; if (![string]::IsNullOrWhiteSpace($iconUrl) -and [string]::IsNullOrWhiteSpace($xml.package.metadata.icon)) { $nugetIconFile = "$($xml.package.metadata.id).Icon.png"; - Invoke-WebRequest $iconUrl -OutFile "$nugetIconFile" + $nugetIconPath = Join-Path (Split-Path $Path -Parent) $nugetIconFile + Write-Host "Downloading icon from $iconUrl to $nugetIconPath" + Invoke-WebRequest $iconUrl -OutFile "$nugetIconPath" $files = $xml.SelectSingleNode("/package/files") $iconFile = $xml.CreateElement("file") $iconFile.SetAttribute("src", "$nugetIconFile") @@ -38,10 +40,11 @@ function Update-Versions { $Path = Resolve-Path $Path [xml] $xml = Get-Content $Path - foreach($dependency in $xml.package.metadata.dependencies.group.dependency){ + foreach ($dependency in $xml.package.metadata.dependencies.group.dependency) { if ($dependency.id -eq "MaterialDesignColors") { $dependency.version = $MDIXColorsVersion - } elseif ($dependency.id -eq "MaterialDesignThemes") { + } + elseif ($dependency.id -eq "MaterialDesignThemes") { $dependency.version = $MDIXVersion } } @@ -61,12 +64,12 @@ function New-Nuget { Push-Location "$(Join-Path $PSScriptRoot "..")" -Update-Versions .\MaterialDesignColors.nuspec -Update-Versions .\MaterialDesignThemes.nuspec -Update-Versions .\MaterialDesignThemes.MahApps.nuspec +Update-Versions .\src\MaterialDesignColors.Wpf\MaterialDesignColors.nuspec +Update-Versions .\src\MaterialDesignThemes.Wpf\MaterialDesignThemes.nuspec +Update-Versions .\src\MaterialDesignThemes.MahApps\MaterialDesignThemes.MahApps.nuspec -New-Nuget .\MaterialDesignColors.nuspec $MDIXColorsVersion -New-Nuget .\MaterialDesignThemes.nuspec $MDIXVersion -New-Nuget .\MaterialDesignThemes.MahApps.nuspec $MDIXMahAppsVersion +New-Nuget .\src\MaterialDesignColors.Wpf\MaterialDesignColors.nuspec $MDIXColorsVersion +New-Nuget .\src\MaterialDesignThemes.Wpf\MaterialDesignThemes.nuspec $MDIXVersion +New-Nuget .\src\MaterialDesignThemes.MahApps\MaterialDesignThemes.MahApps.nuspec $MDIXMahAppsVersion Pop-Location diff --git a/Scripts/GenerateThemesWikiMarkdown.ps1 b/build/GenerateThemesWikiMarkdown.ps1 similarity index 100% rename from Scripts/GenerateThemesWikiMarkdown.ps1 rename to build/GenerateThemesWikiMarkdown.ps1 diff --git a/build/MigrateBrushes.ps1 b/build/MigrateBrushes.ps1 new file mode 100644 index 0000000000..197aeeb3f1 --- /dev/null +++ b/build/MigrateBrushes.ps1 @@ -0,0 +1,54 @@ +param( + [System.IO.DirectoryInfo]$RootDirectory +) + +#NB: This script requires PowerShell 7.1 or later + +$files = Get-ChildItem -Recurse -Path $RootDirectory -Include "*.xaml" +foreach ($file in $files) { + $fileContents = Get-Content $file -Encoding utf8BOM -Raw + $fileLength = $fileContents.Length + $fileContents = $fileContents -replace "\{StaticResource\ PrimaryHueLightBrush}", "{StaticResource MaterialDesign.Brush.Primary.Light}" + $fileContents = $fileContents -replace "\{StaticResource\ PrimaryHueLightForegroundBrush}", "{StaticResource MaterialDesign.Brush.Primary.Light.Foreground}" + $fileContents = $fileContents -replace "\{StaticResource\ PrimaryHueMidBrush}", "{StaticResource MaterialDesign.Brush.Primary}" + $fileContents = $fileContents -replace "\{StaticResource\ PrimaryHueMidForegroundBrush}", "{StaticResource MaterialDesign.Brush.Primary.Foreground}" + $fileContents = $fileContents -replace "\{StaticResource\ PrimaryHueDarkBrush}", "{StaticResource MaterialDesign.Brush.Primary.Dark}" + $fileContents = $fileContents -replace "\{StaticResource\ PrimaryHueDarkForegroundBrush}", "{StaticResource MaterialDesign.Brush.Primary.Dark.Foreground}" + $fileContents = $fileContents -replace "\{StaticResource\ SecondaryHueLightBrush}", "{StaticResource MaterialDesign.Brush.Secondary.Light}" + $fileContents = $fileContents -replace "\{StaticResource\ SecondaryHueLightForegroundBrush}", "{StaticResource MaterialDesign.Brush.Secondary.Light.Foreground}" + $fileContents = $fileContents -replace "\{StaticResource\ SecondaryHueMidBrush}", "{StaticResource MaterialDesign.Brush.Secondary}" + $fileContents = $fileContents -replace "\{StaticResource\ SecondaryHueMidForegroundBrush}", "{StaticResource MaterialDesign.Brush.Secondary.Foreground}" + $fileContents = $fileContents -replace "\{StaticResource\ SecondaryHueDarkBrush}", "{StaticResource MaterialDesign.Brush.Secondary.Dark}" + $fileContents = $fileContents -replace "\{StaticResource\ SecondaryHueDarkForegroundBrush}", "{StaticResource MaterialDesign.Brush.Secondary.Dark.Foreground}" + $fileContents = $fileContents -replace "\{StaticResource\ MaterialDesignPaper}", "{StaticResource MaterialDesign.Brush.Background}" + $fileContents = $fileContents -replace "\{StaticResource\ MaterialDesignFlatButtonClick}", "{StaticResource MaterialDesign.Brush.Button.FlatClick}" + $fileContents = $fileContents -replace "\{StaticResource\ MaterialDesignFlatButtonRipple}", "{StaticResource MaterialDesign.Brush.Button.Ripple}" + $fileContents = $fileContents -replace "\{StaticResource\ MaterialDesignSnackbarRipple}", "{StaticResource MaterialDesign.Brush.Button.Ripple}" + $fileContents = $fileContents -replace "\{StaticResource\ MaterialDesignBackground}", "{StaticResource MaterialDesign.Brush.Card.Background}" + $fileContents = $fileContents -replace "\{StaticResource\ MaterialDesignCardBackground}", "{StaticResource MaterialDesign.Brush.Card.Background}" + $fileContents = $fileContents -replace "\{StaticResource\ MaterialDesignCheckBoxDisabled}", "{StaticResource MaterialDesign.Brush.CheckBox.Disabled}" + $fileContents = $fileContents -replace "\{StaticResource\ MaterialDesignChipBackground}", "{StaticResource MaterialDesign.Brush.Chip.Background}" + $fileContents = $fileContents -replace "\{StaticResource\ MaterialDesignDataGridRowHoverBackground}", "{StaticResource MaterialDesign.Brush.DataGrid.RowHoverBackground}" + $fileContents = $fileContents -replace "\{StaticResource\ MaterialDesignBody}", "{StaticResource MaterialDesign.Brush.Foreground}" + $fileContents = $fileContents -replace "\{StaticResource\ MaterialDesignBodyLight}", "{StaticResource MaterialDesign.Brush.ForegroundLight}" + $fileContents = $fileContents -replace "\{StaticResource\ MaterialDesignCheckBoxOff}", "{StaticResource MaterialDesign.Brush.ForegroundLight}" + $fileContents = $fileContents -replace "\{StaticResource\ MaterialDesignTextBoxBorder}", "{StaticResource MaterialDesign.Brush.ForegroundLight}" + $fileContents = $fileContents -replace "\{StaticResource\ MaterialDesignColumnHeader}", "{StaticResource MaterialDesign.Brush.Header.Foreground}" + $fileContents = $fileContents -replace "\{StaticResource\ MaterialDesignTextAreaBorder}", "{StaticResource MaterialDesign.Brush.Header.Foreground}" + $fileContents = $fileContents -replace "\{StaticResource\ MaterialDesignSnackbarBackground}", "{StaticResource MaterialDesign.Brush.SnackBar.Background}" + $fileContents = $fileContents -replace "\{StaticResource\ MaterialDesignSnackbarMouseOver}", "{StaticResource MaterialDesign.Brush.SnackBar.MouseOver}" + $fileContents = $fileContents -replace "\{StaticResource\ MaterialDesignTextFieldBoxDisabledBackground}", "{StaticResource MaterialDesign.Brush.TextBox.DisabledBackground}" + $fileContents = $fileContents -replace "\{StaticResource\ MaterialDesignTextFieldBoxBackground}", "{StaticResource MaterialDesign.Brush.TextBox.FilledBackground}" + $fileContents = $fileContents -replace "\{StaticResource\ MaterialDesignTextFieldBoxHoverBackground}", "{StaticResource MaterialDesign.Brush.TextBox.HoverBackground}" + $fileContents = $fileContents -replace "\{StaticResource\ MaterialDesignDivider}", "{StaticResource MaterialDesign.Brush.TextBox.HoverBackground}" + $fileContents = $fileContents -replace "\{StaticResource\ MaterialDesignTextAreaInactiveBorder}", "{StaticResource MaterialDesign.Brush.TextBox.OutlineInactiveBorder}" + $fileContents = $fileContents -replace "\{StaticResource\ MaterialDesignToolBarBackground}", "{StaticResource MaterialDesign.Brush.ToolBar.Background}" + $fileContents = $fileContents -replace "\{StaticResource\ MaterialDesignToolBackground}", "{StaticResource MaterialDesign.Brush.ToolBar.Item.Background}" + $fileContents = $fileContents -replace "\{StaticResource\ MaterialDesignToolForeground}", "{StaticResource MaterialDesign.Brush.ToolBar.Item.Foreground}" + $fileContents = $fileContents -replace "\{StaticResource\ MaterialDesignToolTipBackground}", "{StaticResource MaterialDesign.Brush.ToolTip.Background}" + $fileContents = $fileContents -replace "\{StaticResource\ MaterialDesignValidationErrorBrush}", "{StaticResource MaterialDesign.Brush.ValidationError}" + if ($fileContents.Length -ne $fileLength) { + Set-Content -Path $file -Value $fileContents -Encoding utf8BOM -NoNewline + } +} + diff --git a/Scripts/MigrateStyles.ps1 b/build/MigrateStyles.ps1 similarity index 100% rename from Scripts/MigrateStyles.ps1 rename to build/MigrateStyles.ps1 diff --git a/Scripts/UpdateNugets.ps1 b/build/UpdateNugets.ps1 similarity index 100% rename from Scripts/UpdateNugets.ps1 rename to build/UpdateNugets.ps1 diff --git a/build/azure-pipelines-wiki.yml b/build/azure-pipelines-wiki.yml new file mode 100644 index 0000000000..3f98fae578 --- /dev/null +++ b/build/azure-pipelines-wiki.yml @@ -0,0 +1,24 @@ +trigger: none + +pr: none + +pool: + vmImage: "VS2017-Win2016" + +steps: + - task: PowerShell@2 + inputs: + filePath: 'build\\GenerateThemesWikiMarkdown.ps1' + + - task: WikiUpdaterTask@1 + inputs: + repo: "github.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit.wiki.git" + filename: "ControlStyleList.md" + dataIsFile: true + sourceFile: 'build\\ControlStyleList.md' + message: "Automatic update of ControlStyleList.md from Azure pipeline" + gitname: "Azure Dev Ops" + gitemail: "azure@materialdesigninxaml.net" + user: "$(GitHubUser)" + password: "$(GitHubPat)" + localpath: '$(System.DefaultWorkingDirectory)\\Scripts\\Wiki' diff --git a/key.snk b/build/key.snk similarity index 100% rename from key.snk rename to build/key.snk diff --git a/MahMaterialDragablzMashUp/AnotherCommandImplementation.cs b/src/MahMaterialDragablzMashUp/AnotherCommandImplementation.cs similarity index 100% rename from MahMaterialDragablzMashUp/AnotherCommandImplementation.cs rename to src/MahMaterialDragablzMashUp/AnotherCommandImplementation.cs diff --git a/MahMaterialDragablzMashUp/App.config b/src/MahMaterialDragablzMashUp/App.config similarity index 100% rename from MahMaterialDragablzMashUp/App.config rename to src/MahMaterialDragablzMashUp/App.config diff --git a/MahMaterialDragablzMashUp/App.xaml b/src/MahMaterialDragablzMashUp/App.xaml similarity index 100% rename from MahMaterialDragablzMashUp/App.xaml rename to src/MahMaterialDragablzMashUp/App.xaml diff --git a/MahMaterialDragablzMashUp/App.xaml.cs b/src/MahMaterialDragablzMashUp/App.xaml.cs similarity index 100% rename from MahMaterialDragablzMashUp/App.xaml.cs rename to src/MahMaterialDragablzMashUp/App.xaml.cs diff --git a/MahMaterialDragablzMashUp/Dialogs.xaml b/src/MahMaterialDragablzMashUp/Dialogs.xaml similarity index 100% rename from MahMaterialDragablzMashUp/Dialogs.xaml rename to src/MahMaterialDragablzMashUp/Dialogs.xaml diff --git a/MahMaterialDragablzMashUp/Dialogs.xaml.cs b/src/MahMaterialDragablzMashUp/Dialogs.xaml.cs similarity index 100% rename from MahMaterialDragablzMashUp/Dialogs.xaml.cs rename to src/MahMaterialDragablzMashUp/Dialogs.xaml.cs diff --git a/MahMaterialDragablzMashUp/DialogsViewModel.cs b/src/MahMaterialDragablzMashUp/DialogsViewModel.cs similarity index 100% rename from MahMaterialDragablzMashUp/DialogsViewModel.cs rename to src/MahMaterialDragablzMashUp/DialogsViewModel.cs diff --git a/MahMaterialDragablzMashUp/FlyoutContent.xaml b/src/MahMaterialDragablzMashUp/FlyoutContent.xaml similarity index 100% rename from MahMaterialDragablzMashUp/FlyoutContent.xaml rename to src/MahMaterialDragablzMashUp/FlyoutContent.xaml diff --git a/MahMaterialDragablzMashUp/FlyoutContent.xaml.cs b/src/MahMaterialDragablzMashUp/FlyoutContent.xaml.cs similarity index 100% rename from MahMaterialDragablzMashUp/FlyoutContent.xaml.cs rename to src/MahMaterialDragablzMashUp/FlyoutContent.xaml.cs diff --git a/MahMaterialDragablzMashUp/Mah.xaml b/src/MahMaterialDragablzMashUp/Mah.xaml similarity index 100% rename from MahMaterialDragablzMashUp/Mah.xaml rename to src/MahMaterialDragablzMashUp/Mah.xaml diff --git a/MahMaterialDragablzMashUp/Mah.xaml.cs b/src/MahMaterialDragablzMashUp/Mah.xaml.cs similarity index 100% rename from MahMaterialDragablzMashUp/Mah.xaml.cs rename to src/MahMaterialDragablzMashUp/Mah.xaml.cs diff --git a/MahMaterialDragablzMashUp/MahAppsDragablzDemo.csproj b/src/MahMaterialDragablzMashUp/MahAppsDragablzDemo.csproj similarity index 100% rename from MahMaterialDragablzMashUp/MahAppsDragablzDemo.csproj rename to src/MahMaterialDragablzMashUp/MahAppsDragablzDemo.csproj diff --git a/MahMaterialDragablzMashUp/MahViewModel.cs b/src/MahMaterialDragablzMashUp/MahViewModel.cs similarity index 100% rename from MahMaterialDragablzMashUp/MahViewModel.cs rename to src/MahMaterialDragablzMashUp/MahViewModel.cs diff --git a/MahMaterialDragablzMashUp/MainWindow.xaml b/src/MahMaterialDragablzMashUp/MainWindow.xaml similarity index 100% rename from MahMaterialDragablzMashUp/MainWindow.xaml rename to src/MahMaterialDragablzMashUp/MainWindow.xaml diff --git a/MahMaterialDragablzMashUp/MainWindow.xaml.cs b/src/MahMaterialDragablzMashUp/MainWindow.xaml.cs similarity index 100% rename from MahMaterialDragablzMashUp/MainWindow.xaml.cs rename to src/MahMaterialDragablzMashUp/MainWindow.xaml.cs diff --git a/MahMaterialDragablzMashUp/NotEmptyValidationRule.cs b/src/MahMaterialDragablzMashUp/NotEmptyValidationRule.cs similarity index 100% rename from MahMaterialDragablzMashUp/NotEmptyValidationRule.cs rename to src/MahMaterialDragablzMashUp/NotEmptyValidationRule.cs diff --git a/MahMaterialDragablzMashUp/PaletteSelector.xaml b/src/MahMaterialDragablzMashUp/PaletteSelector.xaml similarity index 100% rename from MahMaterialDragablzMashUp/PaletteSelector.xaml rename to src/MahMaterialDragablzMashUp/PaletteSelector.xaml diff --git a/MahMaterialDragablzMashUp/PaletteSelector.xaml.cs b/src/MahMaterialDragablzMashUp/PaletteSelector.xaml.cs similarity index 100% rename from MahMaterialDragablzMashUp/PaletteSelector.xaml.cs rename to src/MahMaterialDragablzMashUp/PaletteSelector.xaml.cs diff --git a/MahMaterialDragablzMashUp/PaletteSelectorViewModel.cs b/src/MahMaterialDragablzMashUp/PaletteSelectorViewModel.cs similarity index 100% rename from MahMaterialDragablzMashUp/PaletteSelectorViewModel.cs rename to src/MahMaterialDragablzMashUp/PaletteSelectorViewModel.cs diff --git a/MahMaterialDragablzMashUp/Properties/AssemblyInfo.cs b/src/MahMaterialDragablzMashUp/Properties/AssemblyInfo.cs similarity index 100% rename from MahMaterialDragablzMashUp/Properties/AssemblyInfo.cs rename to src/MahMaterialDragablzMashUp/Properties/AssemblyInfo.cs diff --git a/MahMaterialDragablzMashUp/Properties/Resources.Designer.cs b/src/MahMaterialDragablzMashUp/Properties/Resources.Designer.cs similarity index 100% rename from MahMaterialDragablzMashUp/Properties/Resources.Designer.cs rename to src/MahMaterialDragablzMashUp/Properties/Resources.Designer.cs diff --git a/MahMaterialDragablzMashUp/Properties/Resources.resx b/src/MahMaterialDragablzMashUp/Properties/Resources.resx similarity index 100% rename from MahMaterialDragablzMashUp/Properties/Resources.resx rename to src/MahMaterialDragablzMashUp/Properties/Resources.resx diff --git a/MahMaterialDragablzMashUp/Properties/Settings.Designer.cs b/src/MahMaterialDragablzMashUp/Properties/Settings.Designer.cs similarity index 100% rename from MahMaterialDragablzMashUp/Properties/Settings.Designer.cs rename to src/MahMaterialDragablzMashUp/Properties/Settings.Designer.cs diff --git a/MahMaterialDragablzMashUp/Properties/Settings.settings b/src/MahMaterialDragablzMashUp/Properties/Settings.settings similarity index 100% rename from MahMaterialDragablzMashUp/Properties/Settings.settings rename to src/MahMaterialDragablzMashUp/Properties/Settings.settings diff --git a/MahMaterialDragablzMashUp/Resources/ProfilePic.jpg b/src/MahMaterialDragablzMashUp/Resources/ProfilePic.jpg similarity index 100% rename from MahMaterialDragablzMashUp/Resources/ProfilePic.jpg rename to src/MahMaterialDragablzMashUp/Resources/ProfilePic.jpg diff --git a/MahMaterialDragablzMashUp/XamlDisplayEx.cs b/src/MahMaterialDragablzMashUp/XamlDisplayEx.cs similarity index 100% rename from MahMaterialDragablzMashUp/XamlDisplayEx.cs rename to src/MahMaterialDragablzMashUp/XamlDisplayEx.cs diff --git a/MainDemo.Wpf/App.config b/src/MainDemo.Wpf/App.config similarity index 100% rename from MainDemo.Wpf/App.config rename to src/MainDemo.Wpf/App.config diff --git a/MainDemo.Wpf/App.manifest b/src/MainDemo.Wpf/App.manifest similarity index 100% rename from MainDemo.Wpf/App.manifest rename to src/MainDemo.Wpf/App.manifest diff --git a/MainDemo.Wpf/App.xaml b/src/MainDemo.Wpf/App.xaml similarity index 100% rename from MainDemo.Wpf/App.xaml rename to src/MainDemo.Wpf/App.xaml diff --git a/MainDemo.Wpf/App.xaml.cs b/src/MainDemo.Wpf/App.xaml.cs similarity index 100% rename from MainDemo.Wpf/App.xaml.cs rename to src/MainDemo.Wpf/App.xaml.cs diff --git a/MainDemo.Wpf/ButtonAssist.cs b/src/MainDemo.Wpf/ButtonAssist.cs similarity index 100% rename from MainDemo.Wpf/ButtonAssist.cs rename to src/MainDemo.Wpf/ButtonAssist.cs diff --git a/MainDemo.Wpf/Buttons.xaml b/src/MainDemo.Wpf/Buttons.xaml similarity index 100% rename from MainDemo.Wpf/Buttons.xaml rename to src/MainDemo.Wpf/Buttons.xaml diff --git a/MainDemo.Wpf/Buttons.xaml.cs b/src/MainDemo.Wpf/Buttons.xaml.cs similarity index 100% rename from MainDemo.Wpf/Buttons.xaml.cs rename to src/MainDemo.Wpf/Buttons.xaml.cs diff --git a/MainDemo.Wpf/Cards.xaml b/src/MainDemo.Wpf/Cards.xaml similarity index 100% rename from MainDemo.Wpf/Cards.xaml rename to src/MainDemo.Wpf/Cards.xaml diff --git a/MainDemo.Wpf/Cards.xaml.cs b/src/MainDemo.Wpf/Cards.xaml.cs similarity index 100% rename from MainDemo.Wpf/Cards.xaml.cs rename to src/MainDemo.Wpf/Cards.xaml.cs diff --git a/MainDemo.Wpf/Chips.xaml b/src/MainDemo.Wpf/Chips.xaml similarity index 100% rename from MainDemo.Wpf/Chips.xaml rename to src/MainDemo.Wpf/Chips.xaml diff --git a/MainDemo.Wpf/Chips.xaml.cs b/src/MainDemo.Wpf/Chips.xaml.cs similarity index 100% rename from MainDemo.Wpf/Chips.xaml.cs rename to src/MainDemo.Wpf/Chips.xaml.cs diff --git a/MainDemo.Wpf/ColorScheme.cs b/src/MainDemo.Wpf/ColorScheme.cs similarity index 100% rename from MainDemo.Wpf/ColorScheme.cs rename to src/MainDemo.Wpf/ColorScheme.cs diff --git a/MainDemo.Wpf/ColorTool.xaml b/src/MainDemo.Wpf/ColorTool.xaml similarity index 100% rename from MainDemo.Wpf/ColorTool.xaml rename to src/MainDemo.Wpf/ColorTool.xaml diff --git a/MainDemo.Wpf/ColorTool.xaml.cs b/src/MainDemo.Wpf/ColorTool.xaml.cs similarity index 100% rename from MainDemo.Wpf/ColorTool.xaml.cs rename to src/MainDemo.Wpf/ColorTool.xaml.cs diff --git a/MainDemo.Wpf/ColorZones.xaml b/src/MainDemo.Wpf/ColorZones.xaml similarity index 100% rename from MainDemo.Wpf/ColorZones.xaml rename to src/MainDemo.Wpf/ColorZones.xaml diff --git a/MainDemo.Wpf/ColorZones.xaml.cs b/src/MainDemo.Wpf/ColorZones.xaml.cs similarity index 100% rename from MainDemo.Wpf/ColorZones.xaml.cs rename to src/MainDemo.Wpf/ColorZones.xaml.cs diff --git a/MainDemo.Wpf/ComboBoxes.xaml b/src/MainDemo.Wpf/ComboBoxes.xaml similarity index 100% rename from MainDemo.Wpf/ComboBoxes.xaml rename to src/MainDemo.Wpf/ComboBoxes.xaml diff --git a/MainDemo.Wpf/ComboBoxes.xaml.cs b/src/MainDemo.Wpf/ComboBoxes.xaml.cs similarity index 100% rename from MainDemo.Wpf/ComboBoxes.xaml.cs rename to src/MainDemo.Wpf/ComboBoxes.xaml.cs diff --git a/MainDemo.Wpf/CommandLineOptions.cs b/src/MainDemo.Wpf/CommandLineOptions.cs similarity index 100% rename from MainDemo.Wpf/CommandLineOptions.cs rename to src/MainDemo.Wpf/CommandLineOptions.cs diff --git a/MainDemo.Wpf/Converters/BooleanToDoubleConverter.cs b/src/MainDemo.Wpf/Converters/BooleanToDoubleConverter.cs similarity index 100% rename from MainDemo.Wpf/Converters/BooleanToDoubleConverter.cs rename to src/MainDemo.Wpf/Converters/BooleanToDoubleConverter.cs diff --git a/MainDemo.Wpf/Converters/BrushToHexConverter.cs b/src/MainDemo.Wpf/Converters/BrushToHexConverter.cs similarity index 100% rename from MainDemo.Wpf/Converters/BrushToHexConverter.cs rename to src/MainDemo.Wpf/Converters/BrushToHexConverter.cs diff --git a/MainDemo.Wpf/Converters/ColorToBrushConverter.cs b/src/MainDemo.Wpf/Converters/ColorToBrushConverter.cs similarity index 100% rename from MainDemo.Wpf/Converters/ColorToBrushConverter.cs rename to src/MainDemo.Wpf/Converters/ColorToBrushConverter.cs diff --git a/MainDemo.Wpf/Converters/IsTransparentConverter.cs b/src/MainDemo.Wpf/Converters/IsTransparentConverter.cs similarity index 100% rename from MainDemo.Wpf/Converters/IsTransparentConverter.cs rename to src/MainDemo.Wpf/Converters/IsTransparentConverter.cs diff --git a/MainDemo.Wpf/Converters/MultiValueEqualityConverter.cs b/src/MainDemo.Wpf/Converters/MultiValueEqualityConverter.cs similarity index 100% rename from MainDemo.Wpf/Converters/MultiValueEqualityConverter.cs rename to src/MainDemo.Wpf/Converters/MultiValueEqualityConverter.cs diff --git a/MainDemo.Wpf/Converters/StringJoinConverter.cs b/src/MainDemo.Wpf/Converters/StringJoinConverter.cs similarity index 100% rename from MainDemo.Wpf/Converters/StringJoinConverter.cs rename to src/MainDemo.Wpf/Converters/StringJoinConverter.cs diff --git a/MainDemo.Wpf/DataGrids.xaml b/src/MainDemo.Wpf/DataGrids.xaml similarity index 100% rename from MainDemo.Wpf/DataGrids.xaml rename to src/MainDemo.Wpf/DataGrids.xaml diff --git a/MainDemo.Wpf/DataGrids.xaml.cs b/src/MainDemo.Wpf/DataGrids.xaml.cs similarity index 100% rename from MainDemo.Wpf/DataGrids.xaml.cs rename to src/MainDemo.Wpf/DataGrids.xaml.cs diff --git a/MainDemo.Wpf/Dialogs.xaml b/src/MainDemo.Wpf/Dialogs.xaml similarity index 100% rename from MainDemo.Wpf/Dialogs.xaml rename to src/MainDemo.Wpf/Dialogs.xaml diff --git a/MainDemo.Wpf/Dialogs.xaml.cs b/src/MainDemo.Wpf/Dialogs.xaml.cs similarity index 100% rename from MainDemo.Wpf/Dialogs.xaml.cs rename to src/MainDemo.Wpf/Dialogs.xaml.cs diff --git a/MainDemo.Wpf/Domain/AnotherCommandImplementation.cs b/src/MainDemo.Wpf/Domain/AnotherCommandImplementation.cs similarity index 100% rename from MainDemo.Wpf/Domain/AnotherCommandImplementation.cs rename to src/MainDemo.Wpf/Domain/AnotherCommandImplementation.cs diff --git a/MainDemo.Wpf/Domain/ButtonsViewModel.cs b/src/MainDemo.Wpf/Domain/ButtonsViewModel.cs similarity index 100% rename from MainDemo.Wpf/Domain/ButtonsViewModel.cs rename to src/MainDemo.Wpf/Domain/ButtonsViewModel.cs diff --git a/MainDemo.Wpf/Domain/ColorToolViewModel.cs b/src/MainDemo.Wpf/Domain/ColorToolViewModel.cs similarity index 100% rename from MainDemo.Wpf/Domain/ColorToolViewModel.cs rename to src/MainDemo.Wpf/Domain/ColorToolViewModel.cs diff --git a/MainDemo.Wpf/Domain/ComboBoxesViewModel.cs b/src/MainDemo.Wpf/Domain/ComboBoxesViewModel.cs similarity index 100% rename from MainDemo.Wpf/Domain/ComboBoxesViewModel.cs rename to src/MainDemo.Wpf/Domain/ComboBoxesViewModel.cs diff --git a/MainDemo.Wpf/Domain/DemoItem.cs b/src/MainDemo.Wpf/Domain/DemoItem.cs similarity index 100% rename from MainDemo.Wpf/Domain/DemoItem.cs rename to src/MainDemo.Wpf/Domain/DemoItem.cs diff --git a/MainDemo.Wpf/Domain/DialogsViewModel.cs b/src/MainDemo.Wpf/Domain/DialogsViewModel.cs similarity index 100% rename from MainDemo.Wpf/Domain/DialogsViewModel.cs rename to src/MainDemo.Wpf/Domain/DialogsViewModel.cs diff --git a/MainDemo.Wpf/Domain/DocumentationLink.cs b/src/MainDemo.Wpf/Domain/DocumentationLink.cs similarity index 100% rename from MainDemo.Wpf/Domain/DocumentationLink.cs rename to src/MainDemo.Wpf/Domain/DocumentationLink.cs diff --git a/MainDemo.Wpf/Domain/DocumentationLinkType.cs b/src/MainDemo.Wpf/Domain/DocumentationLinkType.cs similarity index 100% rename from MainDemo.Wpf/Domain/DocumentationLinkType.cs rename to src/MainDemo.Wpf/Domain/DocumentationLinkType.cs diff --git a/MainDemo.Wpf/Domain/DocumentationLinks.xaml b/src/MainDemo.Wpf/Domain/DocumentationLinks.xaml similarity index 100% rename from MainDemo.Wpf/Domain/DocumentationLinks.xaml rename to src/MainDemo.Wpf/Domain/DocumentationLinks.xaml diff --git a/MainDemo.Wpf/Domain/DocumentationLinks.xaml.cs b/src/MainDemo.Wpf/Domain/DocumentationLinks.xaml.cs similarity index 100% rename from MainDemo.Wpf/Domain/DocumentationLinks.xaml.cs rename to src/MainDemo.Wpf/Domain/DocumentationLinks.xaml.cs diff --git a/MainDemo.Wpf/Domain/FieldsViewModel.cs b/src/MainDemo.Wpf/Domain/FieldsViewModel.cs similarity index 100% rename from MainDemo.Wpf/Domain/FieldsViewModel.cs rename to src/MainDemo.Wpf/Domain/FieldsViewModel.cs diff --git a/MainDemo.Wpf/Domain/FutureDateValidationRule.cs b/src/MainDemo.Wpf/Domain/FutureDateValidationRule.cs similarity index 100% rename from MainDemo.Wpf/Domain/FutureDateValidationRule.cs rename to src/MainDemo.Wpf/Domain/FutureDateValidationRule.cs diff --git a/MainDemo.Wpf/Domain/IconPackViewModel.cs b/src/MainDemo.Wpf/Domain/IconPackViewModel.cs similarity index 100% rename from MainDemo.Wpf/Domain/IconPackViewModel.cs rename to src/MainDemo.Wpf/Domain/IconPackViewModel.cs diff --git a/MainDemo.Wpf/Domain/IsCheckedValidationRule.cs b/src/MainDemo.Wpf/Domain/IsCheckedValidationRule.cs similarity index 100% rename from MainDemo.Wpf/Domain/IsCheckedValidationRule.cs rename to src/MainDemo.Wpf/Domain/IsCheckedValidationRule.cs diff --git a/MainDemo.Wpf/Domain/Link.cs b/src/MainDemo.Wpf/Domain/Link.cs similarity index 100% rename from MainDemo.Wpf/Domain/Link.cs rename to src/MainDemo.Wpf/Domain/Link.cs diff --git a/MainDemo.Wpf/Domain/ListsAndGridsViewModel.cs b/src/MainDemo.Wpf/Domain/ListsAndGridsViewModel.cs similarity index 100% rename from MainDemo.Wpf/Domain/ListsAndGridsViewModel.cs rename to src/MainDemo.Wpf/Domain/ListsAndGridsViewModel.cs diff --git a/MainDemo.Wpf/Domain/MainWindowViewModel.cs b/src/MainDemo.Wpf/Domain/MainWindowViewModel.cs similarity index 100% rename from MainDemo.Wpf/Domain/MainWindowViewModel.cs rename to src/MainDemo.Wpf/Domain/MainWindowViewModel.cs diff --git a/MainDemo.Wpf/Domain/NotEmptyValidationRule.cs b/src/MainDemo.Wpf/Domain/NotEmptyValidationRule.cs similarity index 100% rename from MainDemo.Wpf/Domain/NotEmptyValidationRule.cs rename to src/MainDemo.Wpf/Domain/NotEmptyValidationRule.cs diff --git a/MainDemo.Wpf/Domain/PaletteSelectorViewModel.cs b/src/MainDemo.Wpf/Domain/PaletteSelectorViewModel.cs similarity index 100% rename from MainDemo.Wpf/Domain/PaletteSelectorViewModel.cs rename to src/MainDemo.Wpf/Domain/PaletteSelectorViewModel.cs diff --git a/MainDemo.Wpf/Domain/PickersViewModel.cs b/src/MainDemo.Wpf/Domain/PickersViewModel.cs similarity index 100% rename from MainDemo.Wpf/Domain/PickersViewModel.cs rename to src/MainDemo.Wpf/Domain/PickersViewModel.cs diff --git a/MainDemo.Wpf/Domain/Sample4Dialog.xaml b/src/MainDemo.Wpf/Domain/Sample4Dialog.xaml similarity index 100% rename from MainDemo.Wpf/Domain/Sample4Dialog.xaml rename to src/MainDemo.Wpf/Domain/Sample4Dialog.xaml diff --git a/MainDemo.Wpf/Domain/Sample4Dialog.xaml.cs b/src/MainDemo.Wpf/Domain/Sample4Dialog.xaml.cs similarity index 100% rename from MainDemo.Wpf/Domain/Sample4Dialog.xaml.cs rename to src/MainDemo.Wpf/Domain/Sample4Dialog.xaml.cs diff --git a/MainDemo.Wpf/Domain/SampleDialog.xaml b/src/MainDemo.Wpf/Domain/SampleDialog.xaml similarity index 100% rename from MainDemo.Wpf/Domain/SampleDialog.xaml rename to src/MainDemo.Wpf/Domain/SampleDialog.xaml diff --git a/MainDemo.Wpf/Domain/SampleDialog.xaml.cs b/src/MainDemo.Wpf/Domain/SampleDialog.xaml.cs similarity index 100% rename from MainDemo.Wpf/Domain/SampleDialog.xaml.cs rename to src/MainDemo.Wpf/Domain/SampleDialog.xaml.cs diff --git a/MainDemo.Wpf/Domain/SampleDialogViewModel.cs b/src/MainDemo.Wpf/Domain/SampleDialogViewModel.cs similarity index 100% rename from MainDemo.Wpf/Domain/SampleDialogViewModel.cs rename to src/MainDemo.Wpf/Domain/SampleDialogViewModel.cs diff --git a/MainDemo.Wpf/Domain/SampleMessageDialog.xaml b/src/MainDemo.Wpf/Domain/SampleMessageDialog.xaml similarity index 100% rename from MainDemo.Wpf/Domain/SampleMessageDialog.xaml rename to src/MainDemo.Wpf/Domain/SampleMessageDialog.xaml diff --git a/MainDemo.Wpf/Domain/SampleMessageDialog.xaml.cs b/src/MainDemo.Wpf/Domain/SampleMessageDialog.xaml.cs similarity index 100% rename from MainDemo.Wpf/Domain/SampleMessageDialog.xaml.cs rename to src/MainDemo.Wpf/Domain/SampleMessageDialog.xaml.cs diff --git a/MainDemo.Wpf/Domain/SampleProgressDialog.xaml b/src/MainDemo.Wpf/Domain/SampleProgressDialog.xaml similarity index 100% rename from MainDemo.Wpf/Domain/SampleProgressDialog.xaml rename to src/MainDemo.Wpf/Domain/SampleProgressDialog.xaml diff --git a/MainDemo.Wpf/Domain/SampleProgressDialog.xaml.cs b/src/MainDemo.Wpf/Domain/SampleProgressDialog.xaml.cs similarity index 100% rename from MainDemo.Wpf/Domain/SampleProgressDialog.xaml.cs rename to src/MainDemo.Wpf/Domain/SampleProgressDialog.xaml.cs diff --git a/MainDemo.Wpf/Domain/SelectableViewModel.cs b/src/MainDemo.Wpf/Domain/SelectableViewModel.cs similarity index 100% rename from MainDemo.Wpf/Domain/SelectableViewModel.cs rename to src/MainDemo.Wpf/Domain/SelectableViewModel.cs diff --git a/MainDemo.Wpf/Domain/SimpleDataTemplateSelector.cs b/src/MainDemo.Wpf/Domain/SimpleDataTemplateSelector.cs similarity index 100% rename from MainDemo.Wpf/Domain/SimpleDataTemplateSelector.cs rename to src/MainDemo.Wpf/Domain/SimpleDataTemplateSelector.cs diff --git a/MainDemo.Wpf/Domain/SimpleDateValidationRule.cs b/src/MainDemo.Wpf/Domain/SimpleDateValidationRule.cs similarity index 100% rename from MainDemo.Wpf/Domain/SimpleDateValidationRule.cs rename to src/MainDemo.Wpf/Domain/SimpleDateValidationRule.cs diff --git a/MainDemo.Wpf/Domain/SlidersViewModel.cs b/src/MainDemo.Wpf/Domain/SlidersViewModel.cs similarity index 100% rename from MainDemo.Wpf/Domain/SlidersViewModel.cs rename to src/MainDemo.Wpf/Domain/SlidersViewModel.cs diff --git a/MainDemo.Wpf/Domain/SmartHintViewModel.cs b/src/MainDemo.Wpf/Domain/SmartHintViewModel.cs similarity index 100% rename from MainDemo.Wpf/Domain/SmartHintViewModel.cs rename to src/MainDemo.Wpf/Domain/SmartHintViewModel.cs diff --git a/MainDemo.Wpf/Domain/TabsViewModel.cs b/src/MainDemo.Wpf/Domain/TabsViewModel.cs similarity index 100% rename from MainDemo.Wpf/Domain/TabsViewModel.cs rename to src/MainDemo.Wpf/Domain/TabsViewModel.cs diff --git a/MainDemo.Wpf/Domain/ThemeSettingsViewModel.cs b/src/MainDemo.Wpf/Domain/ThemeSettingsViewModel.cs similarity index 100% rename from MainDemo.Wpf/Domain/ThemeSettingsViewModel.cs rename to src/MainDemo.Wpf/Domain/ThemeSettingsViewModel.cs diff --git a/MainDemo.Wpf/Domain/TreesViewModel.cs b/src/MainDemo.Wpf/Domain/TreesViewModel.cs similarity index 100% rename from MainDemo.Wpf/Domain/TreesViewModel.cs rename to src/MainDemo.Wpf/Domain/TreesViewModel.cs diff --git a/MainDemo.Wpf/Domain/ViewModelBase.cs b/src/MainDemo.Wpf/Domain/ViewModelBase.cs similarity index 100% rename from MainDemo.Wpf/Domain/ViewModelBase.cs rename to src/MainDemo.Wpf/Domain/ViewModelBase.cs diff --git a/MainDemo.Wpf/Drawers.xaml b/src/MainDemo.Wpf/Drawers.xaml similarity index 100% rename from MainDemo.Wpf/Drawers.xaml rename to src/MainDemo.Wpf/Drawers.xaml diff --git a/MainDemo.Wpf/Drawers.xaml.cs b/src/MainDemo.Wpf/Drawers.xaml.cs similarity index 100% rename from MainDemo.Wpf/Drawers.xaml.cs rename to src/MainDemo.Wpf/Drawers.xaml.cs diff --git a/MainDemo.Wpf/Elevation.xaml b/src/MainDemo.Wpf/Elevation.xaml similarity index 100% rename from MainDemo.Wpf/Elevation.xaml rename to src/MainDemo.Wpf/Elevation.xaml diff --git a/MainDemo.Wpf/Elevation.xaml.cs b/src/MainDemo.Wpf/Elevation.xaml.cs similarity index 100% rename from MainDemo.Wpf/Elevation.xaml.cs rename to src/MainDemo.Wpf/Elevation.xaml.cs diff --git a/MainDemo.Wpf/Expander.xaml b/src/MainDemo.Wpf/Expander.xaml similarity index 100% rename from MainDemo.Wpf/Expander.xaml rename to src/MainDemo.Wpf/Expander.xaml diff --git a/MainDemo.Wpf/Expander.xaml.cs b/src/MainDemo.Wpf/Expander.xaml.cs similarity index 100% rename from MainDemo.Wpf/Expander.xaml.cs rename to src/MainDemo.Wpf/Expander.xaml.cs diff --git a/MainDemo.Wpf/Fields.xaml b/src/MainDemo.Wpf/Fields.xaml similarity index 100% rename from MainDemo.Wpf/Fields.xaml rename to src/MainDemo.Wpf/Fields.xaml diff --git a/MainDemo.Wpf/Fields.xaml.cs b/src/MainDemo.Wpf/Fields.xaml.cs similarity index 100% rename from MainDemo.Wpf/Fields.xaml.cs rename to src/MainDemo.Wpf/Fields.xaml.cs diff --git a/MainDemo.Wpf/FieldsLineUp.xaml b/src/MainDemo.Wpf/FieldsLineUp.xaml similarity index 100% rename from MainDemo.Wpf/FieldsLineUp.xaml rename to src/MainDemo.Wpf/FieldsLineUp.xaml diff --git a/MainDemo.Wpf/FieldsLineUp.xaml.cs b/src/MainDemo.Wpf/FieldsLineUp.xaml.cs similarity index 100% rename from MainDemo.Wpf/FieldsLineUp.xaml.cs rename to src/MainDemo.Wpf/FieldsLineUp.xaml.cs diff --git a/MainDemo.Wpf/GroupBoxes.xaml b/src/MainDemo.Wpf/GroupBoxes.xaml similarity index 100% rename from MainDemo.Wpf/GroupBoxes.xaml rename to src/MainDemo.Wpf/GroupBoxes.xaml diff --git a/MainDemo.Wpf/GroupBoxes.xaml.cs b/src/MainDemo.Wpf/GroupBoxes.xaml.cs similarity index 100% rename from MainDemo.Wpf/GroupBoxes.xaml.cs rename to src/MainDemo.Wpf/GroupBoxes.xaml.cs diff --git a/MainDemo.Wpf/Home.xaml b/src/MainDemo.Wpf/Home.xaml similarity index 100% rename from MainDemo.Wpf/Home.xaml rename to src/MainDemo.Wpf/Home.xaml diff --git a/MainDemo.Wpf/Home.xaml.cs b/src/MainDemo.Wpf/Home.xaml.cs similarity index 100% rename from MainDemo.Wpf/Home.xaml.cs rename to src/MainDemo.Wpf/Home.xaml.cs diff --git a/MainDemo.Wpf/IconPack.xaml b/src/MainDemo.Wpf/IconPack.xaml similarity index 100% rename from MainDemo.Wpf/IconPack.xaml rename to src/MainDemo.Wpf/IconPack.xaml diff --git a/MainDemo.Wpf/IconPack.xaml.cs b/src/MainDemo.Wpf/IconPack.xaml.cs similarity index 100% rename from MainDemo.Wpf/IconPack.xaml.cs rename to src/MainDemo.Wpf/IconPack.xaml.cs diff --git a/MainDemo.Wpf/InputElementContentControl.cs b/src/MainDemo.Wpf/InputElementContentControl.cs similarity index 100% rename from MainDemo.Wpf/InputElementContentControl.cs rename to src/MainDemo.Wpf/InputElementContentControl.cs diff --git a/MainDemo.Wpf/Lists.xaml b/src/MainDemo.Wpf/Lists.xaml similarity index 100% rename from MainDemo.Wpf/Lists.xaml rename to src/MainDemo.Wpf/Lists.xaml diff --git a/MainDemo.Wpf/Lists.xaml.cs b/src/MainDemo.Wpf/Lists.xaml.cs similarity index 100% rename from MainDemo.Wpf/Lists.xaml.cs rename to src/MainDemo.Wpf/Lists.xaml.cs diff --git a/MainDemo.Wpf/MainWindow.xaml b/src/MainDemo.Wpf/MainWindow.xaml similarity index 100% rename from MainDemo.Wpf/MainWindow.xaml rename to src/MainDemo.Wpf/MainWindow.xaml diff --git a/MainDemo.Wpf/MainWindow.xaml.cs b/src/MainDemo.Wpf/MainWindow.xaml.cs similarity index 100% rename from MainDemo.Wpf/MainWindow.xaml.cs rename to src/MainDemo.Wpf/MainWindow.xaml.cs diff --git a/MainDemo.Wpf/MaterialDesignDemo.csproj b/src/MainDemo.Wpf/MaterialDesignDemo.csproj similarity index 100% rename from MainDemo.Wpf/MaterialDesignDemo.csproj rename to src/MainDemo.Wpf/MaterialDesignDemo.csproj diff --git a/MainDemo.Wpf/MenusAndToolBars.xaml b/src/MainDemo.Wpf/MenusAndToolBars.xaml similarity index 100% rename from MainDemo.Wpf/MenusAndToolBars.xaml rename to src/MainDemo.Wpf/MenusAndToolBars.xaml diff --git a/MainDemo.Wpf/MenusAndToolBars.xaml.cs b/src/MainDemo.Wpf/MenusAndToolBars.xaml.cs similarity index 100% rename from MainDemo.Wpf/MenusAndToolBars.xaml.cs rename to src/MainDemo.Wpf/MenusAndToolBars.xaml.cs diff --git a/MainDemo.Wpf/NavigationRail.xaml b/src/MainDemo.Wpf/NavigationRail.xaml similarity index 100% rename from MainDemo.Wpf/NavigationRail.xaml rename to src/MainDemo.Wpf/NavigationRail.xaml diff --git a/MainDemo.Wpf/NavigationRail.xaml.cs b/src/MainDemo.Wpf/NavigationRail.xaml.cs similarity index 100% rename from MainDemo.Wpf/NavigationRail.xaml.cs rename to src/MainDemo.Wpf/NavigationRail.xaml.cs diff --git a/MainDemo.Wpf/PackIconKindGroup.cs b/src/MainDemo.Wpf/PackIconKindGroup.cs similarity index 100% rename from MainDemo.Wpf/PackIconKindGroup.cs rename to src/MainDemo.Wpf/PackIconKindGroup.cs diff --git a/MainDemo.Wpf/Palette.xaml b/src/MainDemo.Wpf/Palette.xaml similarity index 100% rename from MainDemo.Wpf/Palette.xaml rename to src/MainDemo.Wpf/Palette.xaml diff --git a/MainDemo.Wpf/Palette.xaml.cs b/src/MainDemo.Wpf/Palette.xaml.cs similarity index 100% rename from MainDemo.Wpf/Palette.xaml.cs rename to src/MainDemo.Wpf/Palette.xaml.cs diff --git a/MainDemo.Wpf/PaletteHelperExtensions.cs b/src/MainDemo.Wpf/PaletteHelperExtensions.cs similarity index 100% rename from MainDemo.Wpf/PaletteHelperExtensions.cs rename to src/MainDemo.Wpf/PaletteHelperExtensions.cs diff --git a/MainDemo.Wpf/PaletteSelector.xaml b/src/MainDemo.Wpf/PaletteSelector.xaml similarity index 100% rename from MainDemo.Wpf/PaletteSelector.xaml rename to src/MainDemo.Wpf/PaletteSelector.xaml diff --git a/MainDemo.Wpf/PaletteSelector.xaml.cs b/src/MainDemo.Wpf/PaletteSelector.xaml.cs similarity index 100% rename from MainDemo.Wpf/PaletteSelector.xaml.cs rename to src/MainDemo.Wpf/PaletteSelector.xaml.cs diff --git a/MainDemo.Wpf/Pickers.xaml b/src/MainDemo.Wpf/Pickers.xaml similarity index 100% rename from MainDemo.Wpf/Pickers.xaml rename to src/MainDemo.Wpf/Pickers.xaml diff --git a/MainDemo.Wpf/Pickers.xaml.cs b/src/MainDemo.Wpf/Pickers.xaml.cs similarity index 100% rename from MainDemo.Wpf/Pickers.xaml.cs rename to src/MainDemo.Wpf/Pickers.xaml.cs diff --git a/MainDemo.Wpf/PopupBox.xaml b/src/MainDemo.Wpf/PopupBox.xaml similarity index 100% rename from MainDemo.Wpf/PopupBox.xaml rename to src/MainDemo.Wpf/PopupBox.xaml diff --git a/MainDemo.Wpf/PopupBox.xaml.cs b/src/MainDemo.Wpf/PopupBox.xaml.cs similarity index 100% rename from MainDemo.Wpf/PopupBox.xaml.cs rename to src/MainDemo.Wpf/PopupBox.xaml.cs diff --git a/MainDemo.Wpf/Progress.xaml b/src/MainDemo.Wpf/Progress.xaml similarity index 100% rename from MainDemo.Wpf/Progress.xaml rename to src/MainDemo.Wpf/Progress.xaml diff --git a/MainDemo.Wpf/Progress.xaml.cs b/src/MainDemo.Wpf/Progress.xaml.cs similarity index 100% rename from MainDemo.Wpf/Progress.xaml.cs rename to src/MainDemo.Wpf/Progress.xaml.cs diff --git a/MainDemo.Wpf/Properties/AssemblyInfo.cs b/src/MainDemo.Wpf/Properties/AssemblyInfo.cs similarity index 100% rename from MainDemo.Wpf/Properties/AssemblyInfo.cs rename to src/MainDemo.Wpf/Properties/AssemblyInfo.cs diff --git a/MainDemo.Wpf/Properties/Resources.Designer.cs b/src/MainDemo.Wpf/Properties/Resources.Designer.cs similarity index 100% rename from MainDemo.Wpf/Properties/Resources.Designer.cs rename to src/MainDemo.Wpf/Properties/Resources.Designer.cs diff --git a/MainDemo.Wpf/Properties/Resources.resx b/src/MainDemo.Wpf/Properties/Resources.resx similarity index 100% rename from MainDemo.Wpf/Properties/Resources.resx rename to src/MainDemo.Wpf/Properties/Resources.resx diff --git a/MainDemo.Wpf/Properties/Settings.Designer.cs b/src/MainDemo.Wpf/Properties/Settings.Designer.cs similarity index 100% rename from MainDemo.Wpf/Properties/Settings.Designer.cs rename to src/MainDemo.Wpf/Properties/Settings.Designer.cs diff --git a/MainDemo.Wpf/Properties/Settings.settings b/src/MainDemo.Wpf/Properties/Settings.settings similarity index 100% rename from MainDemo.Wpf/Properties/Settings.settings rename to src/MainDemo.Wpf/Properties/Settings.settings diff --git a/MainDemo.Wpf/Properties/launchSettings.json b/src/MainDemo.Wpf/Properties/launchSettings.json similarity index 100% rename from MainDemo.Wpf/Properties/launchSettings.json rename to src/MainDemo.Wpf/Properties/launchSettings.json diff --git a/MainDemo.Wpf/RatingBar.xaml b/src/MainDemo.Wpf/RatingBar.xaml similarity index 100% rename from MainDemo.Wpf/RatingBar.xaml rename to src/MainDemo.Wpf/RatingBar.xaml diff --git a/MainDemo.Wpf/RatingBar.xaml.cs b/src/MainDemo.Wpf/RatingBar.xaml.cs similarity index 100% rename from MainDemo.Wpf/RatingBar.xaml.cs rename to src/MainDemo.Wpf/RatingBar.xaml.cs diff --git a/MainDemo.Wpf/Resources/Chartridge046_small.jpg b/src/MainDemo.Wpf/Resources/Chartridge046_small.jpg similarity index 100% rename from MainDemo.Wpf/Resources/Chartridge046_small.jpg rename to src/MainDemo.Wpf/Resources/Chartridge046_small.jpg diff --git a/MainDemo.Wpf/Resources/Contact.png b/src/MainDemo.Wpf/Resources/Contact.png similarity index 100% rename from MainDemo.Wpf/Resources/Contact.png rename to src/MainDemo.Wpf/Resources/Contact.png diff --git a/MainDemo.Wpf/Resources/ProfilePic.jpg b/src/MainDemo.Wpf/Resources/ProfilePic.jpg similarity index 100% rename from MainDemo.Wpf/Resources/ProfilePic.jpg rename to src/MainDemo.Wpf/Resources/ProfilePic.jpg diff --git a/MainDemo.Wpf/Resources/favicon.ico b/src/MainDemo.Wpf/Resources/favicon.ico similarity index 100% rename from MainDemo.Wpf/Resources/favicon.ico rename to src/MainDemo.Wpf/Resources/favicon.ico diff --git a/MainDemo.Wpf/Resources/ms-icon-310x310.png b/src/MainDemo.Wpf/Resources/ms-icon-310x310.png similarity index 100% rename from MainDemo.Wpf/Resources/ms-icon-310x310.png rename to src/MainDemo.Wpf/Resources/ms-icon-310x310.png diff --git a/MainDemo.Wpf/ScreenGrabFromGoogle.gif b/src/MainDemo.Wpf/ScreenGrabFromGoogle.gif similarity index 100% rename from MainDemo.Wpf/ScreenGrabFromGoogle.gif rename to src/MainDemo.Wpf/ScreenGrabFromGoogle.gif diff --git a/MainDemo.Wpf/Sliders.xaml b/src/MainDemo.Wpf/Sliders.xaml similarity index 100% rename from MainDemo.Wpf/Sliders.xaml rename to src/MainDemo.Wpf/Sliders.xaml diff --git a/MainDemo.Wpf/Sliders.xaml.cs b/src/MainDemo.Wpf/Sliders.xaml.cs similarity index 100% rename from MainDemo.Wpf/Sliders.xaml.cs rename to src/MainDemo.Wpf/Sliders.xaml.cs diff --git a/MainDemo.Wpf/SmartHint.xaml b/src/MainDemo.Wpf/SmartHint.xaml similarity index 100% rename from MainDemo.Wpf/SmartHint.xaml rename to src/MainDemo.Wpf/SmartHint.xaml diff --git a/MainDemo.Wpf/SmartHint.xaml.cs b/src/MainDemo.Wpf/SmartHint.xaml.cs similarity index 100% rename from MainDemo.Wpf/SmartHint.xaml.cs rename to src/MainDemo.Wpf/SmartHint.xaml.cs diff --git a/MainDemo.Wpf/Snackbars.xaml b/src/MainDemo.Wpf/Snackbars.xaml similarity index 100% rename from MainDemo.Wpf/Snackbars.xaml rename to src/MainDemo.Wpf/Snackbars.xaml diff --git a/MainDemo.Wpf/Snackbars.xaml.cs b/src/MainDemo.Wpf/Snackbars.xaml.cs similarity index 100% rename from MainDemo.Wpf/Snackbars.xaml.cs rename to src/MainDemo.Wpf/Snackbars.xaml.cs diff --git a/MainDemo.Wpf/Tabs.xaml b/src/MainDemo.Wpf/Tabs.xaml similarity index 100% rename from MainDemo.Wpf/Tabs.xaml rename to src/MainDemo.Wpf/Tabs.xaml diff --git a/MainDemo.Wpf/Tabs.xaml.cs b/src/MainDemo.Wpf/Tabs.xaml.cs similarity index 100% rename from MainDemo.Wpf/Tabs.xaml.cs rename to src/MainDemo.Wpf/Tabs.xaml.cs diff --git a/MainDemo.Wpf/ThemeSettings.xaml b/src/MainDemo.Wpf/ThemeSettings.xaml similarity index 100% rename from MainDemo.Wpf/ThemeSettings.xaml rename to src/MainDemo.Wpf/ThemeSettings.xaml diff --git a/MainDemo.Wpf/ThemeSettings.xaml.cs b/src/MainDemo.Wpf/ThemeSettings.xaml.cs similarity index 100% rename from MainDemo.Wpf/ThemeSettings.xaml.cs rename to src/MainDemo.Wpf/ThemeSettings.xaml.cs diff --git a/MainDemo.Wpf/Toggles.xaml b/src/MainDemo.Wpf/Toggles.xaml similarity index 100% rename from MainDemo.Wpf/Toggles.xaml rename to src/MainDemo.Wpf/Toggles.xaml diff --git a/MainDemo.Wpf/Toggles.xaml.cs b/src/MainDemo.Wpf/Toggles.xaml.cs similarity index 100% rename from MainDemo.Wpf/Toggles.xaml.cs rename to src/MainDemo.Wpf/Toggles.xaml.cs diff --git a/MainDemo.Wpf/Transitions.xaml b/src/MainDemo.Wpf/Transitions.xaml similarity index 100% rename from MainDemo.Wpf/Transitions.xaml rename to src/MainDemo.Wpf/Transitions.xaml diff --git a/MainDemo.Wpf/Transitions.xaml.cs b/src/MainDemo.Wpf/Transitions.xaml.cs similarity index 100% rename from MainDemo.Wpf/Transitions.xaml.cs rename to src/MainDemo.Wpf/Transitions.xaml.cs diff --git a/MainDemo.Wpf/TransitionsDemo/Slide1_Intro.xaml b/src/MainDemo.Wpf/TransitionsDemo/Slide1_Intro.xaml similarity index 100% rename from MainDemo.Wpf/TransitionsDemo/Slide1_Intro.xaml rename to src/MainDemo.Wpf/TransitionsDemo/Slide1_Intro.xaml diff --git a/MainDemo.Wpf/TransitionsDemo/Slide1_Intro.xaml.cs b/src/MainDemo.Wpf/TransitionsDemo/Slide1_Intro.xaml.cs similarity index 100% rename from MainDemo.Wpf/TransitionsDemo/Slide1_Intro.xaml.cs rename to src/MainDemo.Wpf/TransitionsDemo/Slide1_Intro.xaml.cs diff --git a/MainDemo.Wpf/TransitionsDemo/Slide2_Intro.xaml b/src/MainDemo.Wpf/TransitionsDemo/Slide2_Intro.xaml similarity index 100% rename from MainDemo.Wpf/TransitionsDemo/Slide2_Intro.xaml rename to src/MainDemo.Wpf/TransitionsDemo/Slide2_Intro.xaml diff --git a/MainDemo.Wpf/TransitionsDemo/Slide2_Intro.xaml.cs b/src/MainDemo.Wpf/TransitionsDemo/Slide2_Intro.xaml.cs similarity index 100% rename from MainDemo.Wpf/TransitionsDemo/Slide2_Intro.xaml.cs rename to src/MainDemo.Wpf/TransitionsDemo/Slide2_Intro.xaml.cs diff --git a/MainDemo.Wpf/TransitionsDemo/Slide3_Intro.xaml b/src/MainDemo.Wpf/TransitionsDemo/Slide3_Intro.xaml similarity index 100% rename from MainDemo.Wpf/TransitionsDemo/Slide3_Intro.xaml rename to src/MainDemo.Wpf/TransitionsDemo/Slide3_Intro.xaml diff --git a/MainDemo.Wpf/TransitionsDemo/Slide3_Intro.xaml.cs b/src/MainDemo.Wpf/TransitionsDemo/Slide3_Intro.xaml.cs similarity index 100% rename from MainDemo.Wpf/TransitionsDemo/Slide3_Intro.xaml.cs rename to src/MainDemo.Wpf/TransitionsDemo/Slide3_Intro.xaml.cs diff --git a/MainDemo.Wpf/TransitionsDemo/Slide4_CombineTransitions.xaml b/src/MainDemo.Wpf/TransitionsDemo/Slide4_CombineTransitions.xaml similarity index 100% rename from MainDemo.Wpf/TransitionsDemo/Slide4_CombineTransitions.xaml rename to src/MainDemo.Wpf/TransitionsDemo/Slide4_CombineTransitions.xaml diff --git a/MainDemo.Wpf/TransitionsDemo/Slide4_CombineTransitions.xaml.cs b/src/MainDemo.Wpf/TransitionsDemo/Slide4_CombineTransitions.xaml.cs similarity index 100% rename from MainDemo.Wpf/TransitionsDemo/Slide4_CombineTransitions.xaml.cs rename to src/MainDemo.Wpf/TransitionsDemo/Slide4_CombineTransitions.xaml.cs diff --git a/MainDemo.Wpf/TransitionsDemo/Slide5_TransitioningContent.xaml b/src/MainDemo.Wpf/TransitionsDemo/Slide5_TransitioningContent.xaml similarity index 100% rename from MainDemo.Wpf/TransitionsDemo/Slide5_TransitioningContent.xaml rename to src/MainDemo.Wpf/TransitionsDemo/Slide5_TransitioningContent.xaml diff --git a/MainDemo.Wpf/TransitionsDemo/Slide5_TransitioningContent.xaml.cs b/src/MainDemo.Wpf/TransitionsDemo/Slide5_TransitioningContent.xaml.cs similarity index 100% rename from MainDemo.Wpf/TransitionsDemo/Slide5_TransitioningContent.xaml.cs rename to src/MainDemo.Wpf/TransitionsDemo/Slide5_TransitioningContent.xaml.cs diff --git a/MainDemo.Wpf/TransitionsDemo/Slide6_Origins.xaml b/src/MainDemo.Wpf/TransitionsDemo/Slide6_Origins.xaml similarity index 100% rename from MainDemo.Wpf/TransitionsDemo/Slide6_Origins.xaml rename to src/MainDemo.Wpf/TransitionsDemo/Slide6_Origins.xaml diff --git a/MainDemo.Wpf/TransitionsDemo/Slide6_Origins.xaml.cs b/src/MainDemo.Wpf/TransitionsDemo/Slide6_Origins.xaml.cs similarity index 100% rename from MainDemo.Wpf/TransitionsDemo/Slide6_Origins.xaml.cs rename to src/MainDemo.Wpf/TransitionsDemo/Slide6_Origins.xaml.cs diff --git a/MainDemo.Wpf/TransitionsDemo/Slide7_MVVM.xaml b/src/MainDemo.Wpf/TransitionsDemo/Slide7_MVVM.xaml similarity index 100% rename from MainDemo.Wpf/TransitionsDemo/Slide7_MVVM.xaml rename to src/MainDemo.Wpf/TransitionsDemo/Slide7_MVVM.xaml diff --git a/MainDemo.Wpf/TransitionsDemo/Slide7_MVVM.xaml.cs b/src/MainDemo.Wpf/TransitionsDemo/Slide7_MVVM.xaml.cs similarity index 100% rename from MainDemo.Wpf/TransitionsDemo/Slide7_MVVM.xaml.cs rename to src/MainDemo.Wpf/TransitionsDemo/Slide7_MVVM.xaml.cs diff --git a/MainDemo.Wpf/TransitionsDemo/Slide7_MasterModel.cs b/src/MainDemo.Wpf/TransitionsDemo/Slide7_MasterModel.cs similarity index 100% rename from MainDemo.Wpf/TransitionsDemo/Slide7_MasterModel.cs rename to src/MainDemo.Wpf/TransitionsDemo/Slide7_MasterModel.cs diff --git a/MainDemo.Wpf/TransitionsDemo/Slide8_Details.xaml b/src/MainDemo.Wpf/TransitionsDemo/Slide8_Details.xaml similarity index 100% rename from MainDemo.Wpf/TransitionsDemo/Slide8_Details.xaml rename to src/MainDemo.Wpf/TransitionsDemo/Slide8_Details.xaml diff --git a/MainDemo.Wpf/TransitionsDemo/Slide8_Details.xaml.cs b/src/MainDemo.Wpf/TransitionsDemo/Slide8_Details.xaml.cs similarity index 100% rename from MainDemo.Wpf/TransitionsDemo/Slide8_Details.xaml.cs rename to src/MainDemo.Wpf/TransitionsDemo/Slide8_Details.xaml.cs diff --git a/MainDemo.Wpf/TransitionsDemo/TransitionsDemoHome.xaml b/src/MainDemo.Wpf/TransitionsDemo/TransitionsDemoHome.xaml similarity index 100% rename from MainDemo.Wpf/TransitionsDemo/TransitionsDemoHome.xaml rename to src/MainDemo.Wpf/TransitionsDemo/TransitionsDemoHome.xaml diff --git a/MainDemo.Wpf/TransitionsDemo/TransitionsDemoHome.xaml.cs b/src/MainDemo.Wpf/TransitionsDemo/TransitionsDemoHome.xaml.cs similarity index 100% rename from MainDemo.Wpf/TransitionsDemo/TransitionsDemoHome.xaml.cs rename to src/MainDemo.Wpf/TransitionsDemo/TransitionsDemoHome.xaml.cs diff --git a/MainDemo.Wpf/Trees.xaml b/src/MainDemo.Wpf/Trees.xaml similarity index 100% rename from MainDemo.Wpf/Trees.xaml rename to src/MainDemo.Wpf/Trees.xaml diff --git a/MainDemo.Wpf/Trees.xaml.cs b/src/MainDemo.Wpf/Trees.xaml.cs similarity index 100% rename from MainDemo.Wpf/Trees.xaml.cs rename to src/MainDemo.Wpf/Trees.xaml.cs diff --git a/MainDemo.Wpf/Typography.xaml b/src/MainDemo.Wpf/Typography.xaml similarity index 100% rename from MainDemo.Wpf/Typography.xaml rename to src/MainDemo.Wpf/Typography.xaml diff --git a/MainDemo.Wpf/Typography.xaml.cs b/src/MainDemo.Wpf/Typography.xaml.cs similarity index 100% rename from MainDemo.Wpf/Typography.xaml.cs rename to src/MainDemo.Wpf/Typography.xaml.cs diff --git a/MainDemo.Wpf/VisualTreeUtil.cs b/src/MainDemo.Wpf/VisualTreeUtil.cs similarity index 100% rename from MainDemo.Wpf/VisualTreeUtil.cs rename to src/MainDemo.Wpf/VisualTreeUtil.cs diff --git a/MainDemo.Wpf/XamlDisplayEx.cs b/src/MainDemo.Wpf/XamlDisplayEx.cs similarity index 100% rename from MainDemo.Wpf/XamlDisplayEx.cs rename to src/MainDemo.Wpf/XamlDisplayEx.cs diff --git a/MainDemo.Wpf/favicon.ico b/src/MainDemo.Wpf/favicon.ico similarity index 100% rename from MainDemo.Wpf/favicon.ico rename to src/MainDemo.Wpf/favicon.ico diff --git a/MaterialDesign3.Demo.Wpf/App.config b/src/MaterialDesign3.Demo.Wpf/App.config similarity index 100% rename from MaterialDesign3.Demo.Wpf/App.config rename to src/MaterialDesign3.Demo.Wpf/App.config diff --git a/MaterialDesign3.Demo.Wpf/App.manifest b/src/MaterialDesign3.Demo.Wpf/App.manifest similarity index 100% rename from MaterialDesign3.Demo.Wpf/App.manifest rename to src/MaterialDesign3.Demo.Wpf/App.manifest diff --git a/MaterialDesign3.Demo.Wpf/App.xaml b/src/MaterialDesign3.Demo.Wpf/App.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/App.xaml rename to src/MaterialDesign3.Demo.Wpf/App.xaml diff --git a/MaterialDesign3.Demo.Wpf/App.xaml.cs b/src/MaterialDesign3.Demo.Wpf/App.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/App.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/App.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/ButtonAssist.cs b/src/MaterialDesign3.Demo.Wpf/ButtonAssist.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/ButtonAssist.cs rename to src/MaterialDesign3.Demo.Wpf/ButtonAssist.cs diff --git a/MaterialDesign3.Demo.Wpf/Buttons.xaml b/src/MaterialDesign3.Demo.Wpf/Buttons.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/Buttons.xaml rename to src/MaterialDesign3.Demo.Wpf/Buttons.xaml diff --git a/MaterialDesign3.Demo.Wpf/Buttons.xaml.cs b/src/MaterialDesign3.Demo.Wpf/Buttons.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Buttons.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/Buttons.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/Cards.xaml b/src/MaterialDesign3.Demo.Wpf/Cards.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/Cards.xaml rename to src/MaterialDesign3.Demo.Wpf/Cards.xaml diff --git a/MaterialDesign3.Demo.Wpf/Cards.xaml.cs b/src/MaterialDesign3.Demo.Wpf/Cards.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Cards.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/Cards.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/Chips.xaml b/src/MaterialDesign3.Demo.Wpf/Chips.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/Chips.xaml rename to src/MaterialDesign3.Demo.Wpf/Chips.xaml diff --git a/MaterialDesign3.Demo.Wpf/Chips.xaml.cs b/src/MaterialDesign3.Demo.Wpf/Chips.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Chips.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/Chips.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/ColorScheme.cs b/src/MaterialDesign3.Demo.Wpf/ColorScheme.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/ColorScheme.cs rename to src/MaterialDesign3.Demo.Wpf/ColorScheme.cs diff --git a/MaterialDesign3.Demo.Wpf/ColorTool.xaml b/src/MaterialDesign3.Demo.Wpf/ColorTool.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/ColorTool.xaml rename to src/MaterialDesign3.Demo.Wpf/ColorTool.xaml diff --git a/MaterialDesign3.Demo.Wpf/ColorTool.xaml.cs b/src/MaterialDesign3.Demo.Wpf/ColorTool.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/ColorTool.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/ColorTool.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/ColorZones.xaml b/src/MaterialDesign3.Demo.Wpf/ColorZones.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/ColorZones.xaml rename to src/MaterialDesign3.Demo.Wpf/ColorZones.xaml diff --git a/MaterialDesign3.Demo.Wpf/ColorZones.xaml.cs b/src/MaterialDesign3.Demo.Wpf/ColorZones.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/ColorZones.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/ColorZones.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/ComboBoxes.xaml b/src/MaterialDesign3.Demo.Wpf/ComboBoxes.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/ComboBoxes.xaml rename to src/MaterialDesign3.Demo.Wpf/ComboBoxes.xaml diff --git a/MaterialDesign3.Demo.Wpf/ComboBoxes.xaml.cs b/src/MaterialDesign3.Demo.Wpf/ComboBoxes.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/ComboBoxes.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/ComboBoxes.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/Converters/BrushToHexConverter.cs b/src/MaterialDesign3.Demo.Wpf/Converters/BrushToHexConverter.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Converters/BrushToHexConverter.cs rename to src/MaterialDesign3.Demo.Wpf/Converters/BrushToHexConverter.cs diff --git a/MaterialDesign3.Demo.Wpf/Converters/ColorToBrushConverter.cs b/src/MaterialDesign3.Demo.Wpf/Converters/ColorToBrushConverter.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Converters/ColorToBrushConverter.cs rename to src/MaterialDesign3.Demo.Wpf/Converters/ColorToBrushConverter.cs diff --git a/MaterialDesign3.Demo.Wpf/Converters/MultiValueEqualityConverter.cs b/src/MaterialDesign3.Demo.Wpf/Converters/MultiValueEqualityConverter.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Converters/MultiValueEqualityConverter.cs rename to src/MaterialDesign3.Demo.Wpf/Converters/MultiValueEqualityConverter.cs diff --git a/MaterialDesign3.Demo.Wpf/Converters/StringJoinConverter.cs b/src/MaterialDesign3.Demo.Wpf/Converters/StringJoinConverter.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Converters/StringJoinConverter.cs rename to src/MaterialDesign3.Demo.Wpf/Converters/StringJoinConverter.cs diff --git a/MaterialDesign3.Demo.Wpf/DataGrids.xaml b/src/MaterialDesign3.Demo.Wpf/DataGrids.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/DataGrids.xaml rename to src/MaterialDesign3.Demo.Wpf/DataGrids.xaml diff --git a/MaterialDesign3.Demo.Wpf/DataGrids.xaml.cs b/src/MaterialDesign3.Demo.Wpf/DataGrids.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/DataGrids.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/DataGrids.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/Dialogs.xaml b/src/MaterialDesign3.Demo.Wpf/Dialogs.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/Dialogs.xaml rename to src/MaterialDesign3.Demo.Wpf/Dialogs.xaml diff --git a/MaterialDesign3.Demo.Wpf/Dialogs.xaml.cs b/src/MaterialDesign3.Demo.Wpf/Dialogs.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Dialogs.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/Dialogs.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/Domain/AnotherCommandImplementation.cs b/src/MaterialDesign3.Demo.Wpf/Domain/AnotherCommandImplementation.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/AnotherCommandImplementation.cs rename to src/MaterialDesign3.Demo.Wpf/Domain/AnotherCommandImplementation.cs diff --git a/MaterialDesign3.Demo.Wpf/Domain/ButtonsViewModel.cs b/src/MaterialDesign3.Demo.Wpf/Domain/ButtonsViewModel.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/ButtonsViewModel.cs rename to src/MaterialDesign3.Demo.Wpf/Domain/ButtonsViewModel.cs diff --git a/MaterialDesign3.Demo.Wpf/Domain/ColorToolViewModel.cs b/src/MaterialDesign3.Demo.Wpf/Domain/ColorToolViewModel.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/ColorToolViewModel.cs rename to src/MaterialDesign3.Demo.Wpf/Domain/ColorToolViewModel.cs diff --git a/MaterialDesign3.Demo.Wpf/Domain/ComboBoxesViewModel.cs b/src/MaterialDesign3.Demo.Wpf/Domain/ComboBoxesViewModel.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/ComboBoxesViewModel.cs rename to src/MaterialDesign3.Demo.Wpf/Domain/ComboBoxesViewModel.cs diff --git a/MaterialDesign3.Demo.Wpf/Domain/DemoItem.cs b/src/MaterialDesign3.Demo.Wpf/Domain/DemoItem.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/DemoItem.cs rename to src/MaterialDesign3.Demo.Wpf/Domain/DemoItem.cs diff --git a/MaterialDesign3.Demo.Wpf/Domain/DialogsViewModel.cs b/src/MaterialDesign3.Demo.Wpf/Domain/DialogsViewModel.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/DialogsViewModel.cs rename to src/MaterialDesign3.Demo.Wpf/Domain/DialogsViewModel.cs diff --git a/MaterialDesign3.Demo.Wpf/Domain/DocumentationLink.cs b/src/MaterialDesign3.Demo.Wpf/Domain/DocumentationLink.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/DocumentationLink.cs rename to src/MaterialDesign3.Demo.Wpf/Domain/DocumentationLink.cs diff --git a/MaterialDesign3.Demo.Wpf/Domain/DocumentationLinkType.cs b/src/MaterialDesign3.Demo.Wpf/Domain/DocumentationLinkType.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/DocumentationLinkType.cs rename to src/MaterialDesign3.Demo.Wpf/Domain/DocumentationLinkType.cs diff --git a/MaterialDesign3.Demo.Wpf/Domain/DocumentationLinks.xaml b/src/MaterialDesign3.Demo.Wpf/Domain/DocumentationLinks.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/DocumentationLinks.xaml rename to src/MaterialDesign3.Demo.Wpf/Domain/DocumentationLinks.xaml diff --git a/MaterialDesign3.Demo.Wpf/Domain/DocumentationLinks.xaml.cs b/src/MaterialDesign3.Demo.Wpf/Domain/DocumentationLinks.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/DocumentationLinks.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/Domain/DocumentationLinks.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/Domain/FieldsViewModel.cs b/src/MaterialDesign3.Demo.Wpf/Domain/FieldsViewModel.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/FieldsViewModel.cs rename to src/MaterialDesign3.Demo.Wpf/Domain/FieldsViewModel.cs diff --git a/MaterialDesign3.Demo.Wpf/Domain/FutureDateValidationRule.cs b/src/MaterialDesign3.Demo.Wpf/Domain/FutureDateValidationRule.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/FutureDateValidationRule.cs rename to src/MaterialDesign3.Demo.Wpf/Domain/FutureDateValidationRule.cs diff --git a/MaterialDesign3.Demo.Wpf/Domain/IconPackViewModel.cs b/src/MaterialDesign3.Demo.Wpf/Domain/IconPackViewModel.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/IconPackViewModel.cs rename to src/MaterialDesign3.Demo.Wpf/Domain/IconPackViewModel.cs diff --git a/MaterialDesign3.Demo.Wpf/Domain/IsCheckedValidationRule.cs b/src/MaterialDesign3.Demo.Wpf/Domain/IsCheckedValidationRule.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/IsCheckedValidationRule.cs rename to src/MaterialDesign3.Demo.Wpf/Domain/IsCheckedValidationRule.cs diff --git a/MaterialDesign3.Demo.Wpf/Domain/Link.cs b/src/MaterialDesign3.Demo.Wpf/Domain/Link.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/Link.cs rename to src/MaterialDesign3.Demo.Wpf/Domain/Link.cs diff --git a/MaterialDesign3.Demo.Wpf/Domain/ListsAndGridsViewModel.cs b/src/MaterialDesign3.Demo.Wpf/Domain/ListsAndGridsViewModel.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/ListsAndGridsViewModel.cs rename to src/MaterialDesign3.Demo.Wpf/Domain/ListsAndGridsViewModel.cs diff --git a/MaterialDesign3.Demo.Wpf/Domain/MainWindowViewModel.cs b/src/MaterialDesign3.Demo.Wpf/Domain/MainWindowViewModel.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/MainWindowViewModel.cs rename to src/MaterialDesign3.Demo.Wpf/Domain/MainWindowViewModel.cs diff --git a/MaterialDesign3.Demo.Wpf/Domain/NotEmptyValidationRule.cs b/src/MaterialDesign3.Demo.Wpf/Domain/NotEmptyValidationRule.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/NotEmptyValidationRule.cs rename to src/MaterialDesign3.Demo.Wpf/Domain/NotEmptyValidationRule.cs diff --git a/MaterialDesign3.Demo.Wpf/Domain/PaletteSelectorViewModel.cs b/src/MaterialDesign3.Demo.Wpf/Domain/PaletteSelectorViewModel.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/PaletteSelectorViewModel.cs rename to src/MaterialDesign3.Demo.Wpf/Domain/PaletteSelectorViewModel.cs diff --git a/MaterialDesign3.Demo.Wpf/Domain/PickersViewModel.cs b/src/MaterialDesign3.Demo.Wpf/Domain/PickersViewModel.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/PickersViewModel.cs rename to src/MaterialDesign3.Demo.Wpf/Domain/PickersViewModel.cs diff --git a/MaterialDesign3.Demo.Wpf/Domain/Sample4Dialog.xaml b/src/MaterialDesign3.Demo.Wpf/Domain/Sample4Dialog.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/Sample4Dialog.xaml rename to src/MaterialDesign3.Demo.Wpf/Domain/Sample4Dialog.xaml diff --git a/MaterialDesign3.Demo.Wpf/Domain/Sample4Dialog.xaml.cs b/src/MaterialDesign3.Demo.Wpf/Domain/Sample4Dialog.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/Sample4Dialog.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/Domain/Sample4Dialog.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/Domain/SampleDialog.xaml b/src/MaterialDesign3.Demo.Wpf/Domain/SampleDialog.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/SampleDialog.xaml rename to src/MaterialDesign3.Demo.Wpf/Domain/SampleDialog.xaml diff --git a/MaterialDesign3.Demo.Wpf/Domain/SampleDialog.xaml.cs b/src/MaterialDesign3.Demo.Wpf/Domain/SampleDialog.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/SampleDialog.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/Domain/SampleDialog.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/Domain/SampleDialogViewModel.cs b/src/MaterialDesign3.Demo.Wpf/Domain/SampleDialogViewModel.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/SampleDialogViewModel.cs rename to src/MaterialDesign3.Demo.Wpf/Domain/SampleDialogViewModel.cs diff --git a/MaterialDesign3.Demo.Wpf/Domain/SampleItem.cs b/src/MaterialDesign3.Demo.Wpf/Domain/SampleItem.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/SampleItem.cs rename to src/MaterialDesign3.Demo.Wpf/Domain/SampleItem.cs diff --git a/MaterialDesign3.Demo.Wpf/Domain/SampleMessageDialog.xaml b/src/MaterialDesign3.Demo.Wpf/Domain/SampleMessageDialog.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/SampleMessageDialog.xaml rename to src/MaterialDesign3.Demo.Wpf/Domain/SampleMessageDialog.xaml diff --git a/MaterialDesign3.Demo.Wpf/Domain/SampleMessageDialog.xaml.cs b/src/MaterialDesign3.Demo.Wpf/Domain/SampleMessageDialog.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/SampleMessageDialog.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/Domain/SampleMessageDialog.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/Domain/SampleProgressDialog.xaml b/src/MaterialDesign3.Demo.Wpf/Domain/SampleProgressDialog.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/SampleProgressDialog.xaml rename to src/MaterialDesign3.Demo.Wpf/Domain/SampleProgressDialog.xaml diff --git a/MaterialDesign3.Demo.Wpf/Domain/SampleProgressDialog.xaml.cs b/src/MaterialDesign3.Demo.Wpf/Domain/SampleProgressDialog.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/SampleProgressDialog.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/Domain/SampleProgressDialog.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/Domain/SelectableViewModel.cs b/src/MaterialDesign3.Demo.Wpf/Domain/SelectableViewModel.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/SelectableViewModel.cs rename to src/MaterialDesign3.Demo.Wpf/Domain/SelectableViewModel.cs diff --git a/MaterialDesign3.Demo.Wpf/Domain/SimpleDataTemplateSelector.cs b/src/MaterialDesign3.Demo.Wpf/Domain/SimpleDataTemplateSelector.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/SimpleDataTemplateSelector.cs rename to src/MaterialDesign3.Demo.Wpf/Domain/SimpleDataTemplateSelector.cs diff --git a/MaterialDesign3.Demo.Wpf/Domain/SimpleDateValidationRule.cs b/src/MaterialDesign3.Demo.Wpf/Domain/SimpleDateValidationRule.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/SimpleDateValidationRule.cs rename to src/MaterialDesign3.Demo.Wpf/Domain/SimpleDateValidationRule.cs diff --git a/MaterialDesign3.Demo.Wpf/Domain/SlidersViewModel.cs b/src/MaterialDesign3.Demo.Wpf/Domain/SlidersViewModel.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/SlidersViewModel.cs rename to src/MaterialDesign3.Demo.Wpf/Domain/SlidersViewModel.cs diff --git a/MaterialDesign3.Demo.Wpf/Domain/ThemeSettingsViewModel.cs b/src/MaterialDesign3.Demo.Wpf/Domain/ThemeSettingsViewModel.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/ThemeSettingsViewModel.cs rename to src/MaterialDesign3.Demo.Wpf/Domain/ThemeSettingsViewModel.cs diff --git a/MaterialDesign3.Demo.Wpf/Domain/TreesViewModel.cs b/src/MaterialDesign3.Demo.Wpf/Domain/TreesViewModel.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/TreesViewModel.cs rename to src/MaterialDesign3.Demo.Wpf/Domain/TreesViewModel.cs diff --git a/MaterialDesign3.Demo.Wpf/Domain/ViewModelBase.cs b/src/MaterialDesign3.Demo.Wpf/Domain/ViewModelBase.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Domain/ViewModelBase.cs rename to src/MaterialDesign3.Demo.Wpf/Domain/ViewModelBase.cs diff --git a/MaterialDesign3.Demo.Wpf/Drawers.xaml b/src/MaterialDesign3.Demo.Wpf/Drawers.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/Drawers.xaml rename to src/MaterialDesign3.Demo.Wpf/Drawers.xaml diff --git a/MaterialDesign3.Demo.Wpf/Drawers.xaml.cs b/src/MaterialDesign3.Demo.Wpf/Drawers.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Drawers.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/Drawers.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/Elevation.xaml b/src/MaterialDesign3.Demo.Wpf/Elevation.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/Elevation.xaml rename to src/MaterialDesign3.Demo.Wpf/Elevation.xaml diff --git a/MaterialDesign3.Demo.Wpf/Elevation.xaml.cs b/src/MaterialDesign3.Demo.Wpf/Elevation.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Elevation.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/Elevation.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/Expander.xaml b/src/MaterialDesign3.Demo.Wpf/Expander.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/Expander.xaml rename to src/MaterialDesign3.Demo.Wpf/Expander.xaml diff --git a/MaterialDesign3.Demo.Wpf/Expander.xaml.cs b/src/MaterialDesign3.Demo.Wpf/Expander.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Expander.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/Expander.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/Fields.xaml b/src/MaterialDesign3.Demo.Wpf/Fields.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/Fields.xaml rename to src/MaterialDesign3.Demo.Wpf/Fields.xaml diff --git a/MaterialDesign3.Demo.Wpf/Fields.xaml.cs b/src/MaterialDesign3.Demo.Wpf/Fields.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Fields.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/Fields.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/FieldsLineUp.xaml b/src/MaterialDesign3.Demo.Wpf/FieldsLineUp.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/FieldsLineUp.xaml rename to src/MaterialDesign3.Demo.Wpf/FieldsLineUp.xaml diff --git a/MaterialDesign3.Demo.Wpf/FieldsLineUp.xaml.cs b/src/MaterialDesign3.Demo.Wpf/FieldsLineUp.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/FieldsLineUp.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/FieldsLineUp.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/GroupBoxes.xaml b/src/MaterialDesign3.Demo.Wpf/GroupBoxes.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/GroupBoxes.xaml rename to src/MaterialDesign3.Demo.Wpf/GroupBoxes.xaml diff --git a/MaterialDesign3.Demo.Wpf/GroupBoxes.xaml.cs b/src/MaterialDesign3.Demo.Wpf/GroupBoxes.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/GroupBoxes.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/GroupBoxes.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/Home.xaml b/src/MaterialDesign3.Demo.Wpf/Home.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/Home.xaml rename to src/MaterialDesign3.Demo.Wpf/Home.xaml diff --git a/MaterialDesign3.Demo.Wpf/Home.xaml.cs b/src/MaterialDesign3.Demo.Wpf/Home.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Home.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/Home.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/IconPack.xaml b/src/MaterialDesign3.Demo.Wpf/IconPack.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/IconPack.xaml rename to src/MaterialDesign3.Demo.Wpf/IconPack.xaml diff --git a/MaterialDesign3.Demo.Wpf/IconPack.xaml.cs b/src/MaterialDesign3.Demo.Wpf/IconPack.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/IconPack.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/IconPack.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/Lists.xaml b/src/MaterialDesign3.Demo.Wpf/Lists.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/Lists.xaml rename to src/MaterialDesign3.Demo.Wpf/Lists.xaml diff --git a/MaterialDesign3.Demo.Wpf/Lists.xaml.cs b/src/MaterialDesign3.Demo.Wpf/Lists.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Lists.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/Lists.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/MainWindow.xaml b/src/MaterialDesign3.Demo.Wpf/MainWindow.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/MainWindow.xaml rename to src/MaterialDesign3.Demo.Wpf/MainWindow.xaml diff --git a/MaterialDesign3.Demo.Wpf/MainWindow.xaml.cs b/src/MaterialDesign3.Demo.Wpf/MainWindow.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/MainWindow.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/MainWindow.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/MaterialDesign3Demo.csproj b/src/MaterialDesign3.Demo.Wpf/MaterialDesign3Demo.csproj similarity index 100% rename from MaterialDesign3.Demo.Wpf/MaterialDesign3Demo.csproj rename to src/MaterialDesign3.Demo.Wpf/MaterialDesign3Demo.csproj diff --git a/MaterialDesign3.Demo.Wpf/MenusAndToolBars.xaml b/src/MaterialDesign3.Demo.Wpf/MenusAndToolBars.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/MenusAndToolBars.xaml rename to src/MaterialDesign3.Demo.Wpf/MenusAndToolBars.xaml diff --git a/MaterialDesign3.Demo.Wpf/MenusAndToolBars.xaml.cs b/src/MaterialDesign3.Demo.Wpf/MenusAndToolBars.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/MenusAndToolBars.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/MenusAndToolBars.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/NavigationBar.xaml b/src/MaterialDesign3.Demo.Wpf/NavigationBar.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/NavigationBar.xaml rename to src/MaterialDesign3.Demo.Wpf/NavigationBar.xaml diff --git a/MaterialDesign3.Demo.Wpf/NavigationBar.xaml.cs b/src/MaterialDesign3.Demo.Wpf/NavigationBar.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/NavigationBar.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/NavigationBar.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/NavigationRail.xaml b/src/MaterialDesign3.Demo.Wpf/NavigationRail.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/NavigationRail.xaml rename to src/MaterialDesign3.Demo.Wpf/NavigationRail.xaml diff --git a/MaterialDesign3.Demo.Wpf/NavigationRail.xaml.cs b/src/MaterialDesign3.Demo.Wpf/NavigationRail.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/NavigationRail.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/NavigationRail.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/PackIconKindGroup.cs b/src/MaterialDesign3.Demo.Wpf/PackIconKindGroup.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/PackIconKindGroup.cs rename to src/MaterialDesign3.Demo.Wpf/PackIconKindGroup.cs diff --git a/MaterialDesign3.Demo.Wpf/Palette.xaml b/src/MaterialDesign3.Demo.Wpf/Palette.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/Palette.xaml rename to src/MaterialDesign3.Demo.Wpf/Palette.xaml diff --git a/MaterialDesign3.Demo.Wpf/Palette.xaml.cs b/src/MaterialDesign3.Demo.Wpf/Palette.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Palette.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/Palette.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/PaletteHelperExtensions.cs b/src/MaterialDesign3.Demo.Wpf/PaletteHelperExtensions.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/PaletteHelperExtensions.cs rename to src/MaterialDesign3.Demo.Wpf/PaletteHelperExtensions.cs diff --git a/MaterialDesign3.Demo.Wpf/PaletteSelector.xaml b/src/MaterialDesign3.Demo.Wpf/PaletteSelector.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/PaletteSelector.xaml rename to src/MaterialDesign3.Demo.Wpf/PaletteSelector.xaml diff --git a/MaterialDesign3.Demo.Wpf/PaletteSelector.xaml.cs b/src/MaterialDesign3.Demo.Wpf/PaletteSelector.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/PaletteSelector.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/PaletteSelector.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/Pickers.xaml b/src/MaterialDesign3.Demo.Wpf/Pickers.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/Pickers.xaml rename to src/MaterialDesign3.Demo.Wpf/Pickers.xaml diff --git a/MaterialDesign3.Demo.Wpf/Pickers.xaml.cs b/src/MaterialDesign3.Demo.Wpf/Pickers.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Pickers.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/Pickers.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/Progress.xaml b/src/MaterialDesign3.Demo.Wpf/Progress.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/Progress.xaml rename to src/MaterialDesign3.Demo.Wpf/Progress.xaml diff --git a/MaterialDesign3.Demo.Wpf/Progress.xaml.cs b/src/MaterialDesign3.Demo.Wpf/Progress.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Progress.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/Progress.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/Properties/AssemblyInfo.cs b/src/MaterialDesign3.Demo.Wpf/Properties/AssemblyInfo.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Properties/AssemblyInfo.cs rename to src/MaterialDesign3.Demo.Wpf/Properties/AssemblyInfo.cs diff --git a/MaterialDesign3.Demo.Wpf/Properties/Resources.Designer.cs b/src/MaterialDesign3.Demo.Wpf/Properties/Resources.Designer.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Properties/Resources.Designer.cs rename to src/MaterialDesign3.Demo.Wpf/Properties/Resources.Designer.cs diff --git a/MaterialDesign3.Demo.Wpf/Properties/Resources.resx b/src/MaterialDesign3.Demo.Wpf/Properties/Resources.resx similarity index 100% rename from MaterialDesign3.Demo.Wpf/Properties/Resources.resx rename to src/MaterialDesign3.Demo.Wpf/Properties/Resources.resx diff --git a/MaterialDesign3.Demo.Wpf/Properties/Settings.Designer.cs b/src/MaterialDesign3.Demo.Wpf/Properties/Settings.Designer.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Properties/Settings.Designer.cs rename to src/MaterialDesign3.Demo.Wpf/Properties/Settings.Designer.cs diff --git a/MaterialDesign3.Demo.Wpf/Properties/Settings.settings b/src/MaterialDesign3.Demo.Wpf/Properties/Settings.settings similarity index 100% rename from MaterialDesign3.Demo.Wpf/Properties/Settings.settings rename to src/MaterialDesign3.Demo.Wpf/Properties/Settings.settings diff --git a/MaterialDesign3.Demo.Wpf/Properties/launchSettings.json b/src/MaterialDesign3.Demo.Wpf/Properties/launchSettings.json similarity index 100% rename from MaterialDesign3.Demo.Wpf/Properties/launchSettings.json rename to src/MaterialDesign3.Demo.Wpf/Properties/launchSettings.json diff --git a/MaterialDesign3.Demo.Wpf/RatingBar.xaml b/src/MaterialDesign3.Demo.Wpf/RatingBar.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/RatingBar.xaml rename to src/MaterialDesign3.Demo.Wpf/RatingBar.xaml diff --git a/MaterialDesign3.Demo.Wpf/RatingBar.xaml.cs b/src/MaterialDesign3.Demo.Wpf/RatingBar.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/RatingBar.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/RatingBar.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/Resources/Chartridge046_small.jpg b/src/MaterialDesign3.Demo.Wpf/Resources/Chartridge046_small.jpg similarity index 100% rename from MaterialDesign3.Demo.Wpf/Resources/Chartridge046_small.jpg rename to src/MaterialDesign3.Demo.Wpf/Resources/Chartridge046_small.jpg diff --git a/MaterialDesign3.Demo.Wpf/Resources/Contact.png b/src/MaterialDesign3.Demo.Wpf/Resources/Contact.png similarity index 100% rename from MaterialDesign3.Demo.Wpf/Resources/Contact.png rename to src/MaterialDesign3.Demo.Wpf/Resources/Contact.png diff --git a/MaterialDesign3.Demo.Wpf/Resources/ProfilePic.jpg b/src/MaterialDesign3.Demo.Wpf/Resources/ProfilePic.jpg similarity index 100% rename from MaterialDesign3.Demo.Wpf/Resources/ProfilePic.jpg rename to src/MaterialDesign3.Demo.Wpf/Resources/ProfilePic.jpg diff --git a/MaterialDesign3.Demo.Wpf/Resources/favicon.ico b/src/MaterialDesign3.Demo.Wpf/Resources/favicon.ico similarity index 100% rename from MaterialDesign3.Demo.Wpf/Resources/favicon.ico rename to src/MaterialDesign3.Demo.Wpf/Resources/favicon.ico diff --git a/MaterialDesign3.Demo.Wpf/Resources/ms-icon-310x310.png b/src/MaterialDesign3.Demo.Wpf/Resources/ms-icon-310x310.png similarity index 100% rename from MaterialDesign3.Demo.Wpf/Resources/ms-icon-310x310.png rename to src/MaterialDesign3.Demo.Wpf/Resources/ms-icon-310x310.png diff --git a/MaterialDesign3.Demo.Wpf/ScreenGrabFromGoogle.gif b/src/MaterialDesign3.Demo.Wpf/ScreenGrabFromGoogle.gif similarity index 100% rename from MaterialDesign3.Demo.Wpf/ScreenGrabFromGoogle.gif rename to src/MaterialDesign3.Demo.Wpf/ScreenGrabFromGoogle.gif diff --git a/MaterialDesign3.Demo.Wpf/Sliders.xaml b/src/MaterialDesign3.Demo.Wpf/Sliders.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/Sliders.xaml rename to src/MaterialDesign3.Demo.Wpf/Sliders.xaml diff --git a/MaterialDesign3.Demo.Wpf/Sliders.xaml.cs b/src/MaterialDesign3.Demo.Wpf/Sliders.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Sliders.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/Sliders.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/Snackbars.xaml b/src/MaterialDesign3.Demo.Wpf/Snackbars.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/Snackbars.xaml rename to src/MaterialDesign3.Demo.Wpf/Snackbars.xaml diff --git a/MaterialDesign3.Demo.Wpf/Snackbars.xaml.cs b/src/MaterialDesign3.Demo.Wpf/Snackbars.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Snackbars.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/Snackbars.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/ThemeSettings.xaml b/src/MaterialDesign3.Demo.Wpf/ThemeSettings.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/ThemeSettings.xaml rename to src/MaterialDesign3.Demo.Wpf/ThemeSettings.xaml diff --git a/MaterialDesign3.Demo.Wpf/ThemeSettings.xaml.cs b/src/MaterialDesign3.Demo.Wpf/ThemeSettings.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/ThemeSettings.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/ThemeSettings.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/Toggles.xaml b/src/MaterialDesign3.Demo.Wpf/Toggles.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/Toggles.xaml rename to src/MaterialDesign3.Demo.Wpf/Toggles.xaml diff --git a/MaterialDesign3.Demo.Wpf/Toggles.xaml.cs b/src/MaterialDesign3.Demo.Wpf/Toggles.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Toggles.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/Toggles.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/Transitions.xaml b/src/MaterialDesign3.Demo.Wpf/Transitions.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/Transitions.xaml rename to src/MaterialDesign3.Demo.Wpf/Transitions.xaml diff --git a/MaterialDesign3.Demo.Wpf/Transitions.xaml.cs b/src/MaterialDesign3.Demo.Wpf/Transitions.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Transitions.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/Transitions.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide1_Intro.xaml b/src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide1_Intro.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide1_Intro.xaml rename to src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide1_Intro.xaml diff --git a/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide1_Intro.xaml.cs b/src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide1_Intro.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide1_Intro.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide1_Intro.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide2_Intro.xaml b/src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide2_Intro.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide2_Intro.xaml rename to src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide2_Intro.xaml diff --git a/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide2_Intro.xaml.cs b/src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide2_Intro.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide2_Intro.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide2_Intro.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide3_Intro.xaml b/src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide3_Intro.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide3_Intro.xaml rename to src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide3_Intro.xaml diff --git a/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide3_Intro.xaml.cs b/src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide3_Intro.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide3_Intro.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide3_Intro.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide4_CombineTransitions.xaml b/src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide4_CombineTransitions.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide4_CombineTransitions.xaml rename to src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide4_CombineTransitions.xaml diff --git a/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide4_CombineTransitions.xaml.cs b/src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide4_CombineTransitions.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide4_CombineTransitions.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide4_CombineTransitions.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide5_TransitioningContent.xaml b/src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide5_TransitioningContent.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide5_TransitioningContent.xaml rename to src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide5_TransitioningContent.xaml diff --git a/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide5_TransitioningContent.xaml.cs b/src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide5_TransitioningContent.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide5_TransitioningContent.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide5_TransitioningContent.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide6_Origins.xaml b/src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide6_Origins.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide6_Origins.xaml rename to src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide6_Origins.xaml diff --git a/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide6_Origins.xaml.cs b/src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide6_Origins.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide6_Origins.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide6_Origins.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide7_MVVM.xaml b/src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide7_MVVM.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide7_MVVM.xaml rename to src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide7_MVVM.xaml diff --git a/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide7_MVVM.xaml.cs b/src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide7_MVVM.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide7_MVVM.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide7_MVVM.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide7_MasterModel.cs b/src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide7_MasterModel.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide7_MasterModel.cs rename to src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide7_MasterModel.cs diff --git a/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide8_Details.xaml b/src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide8_Details.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide8_Details.xaml rename to src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide8_Details.xaml diff --git a/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide8_Details.xaml.cs b/src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide8_Details.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide8_Details.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide8_Details.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/TransitionsDemo/TransitionsDemoHome.xaml b/src/MaterialDesign3.Demo.Wpf/TransitionsDemo/TransitionsDemoHome.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/TransitionsDemo/TransitionsDemoHome.xaml rename to src/MaterialDesign3.Demo.Wpf/TransitionsDemo/TransitionsDemoHome.xaml diff --git a/MaterialDesign3.Demo.Wpf/TransitionsDemo/TransitionsDemoHome.xaml.cs b/src/MaterialDesign3.Demo.Wpf/TransitionsDemo/TransitionsDemoHome.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/TransitionsDemo/TransitionsDemoHome.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/TransitionsDemo/TransitionsDemoHome.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/Trees.xaml b/src/MaterialDesign3.Demo.Wpf/Trees.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/Trees.xaml rename to src/MaterialDesign3.Demo.Wpf/Trees.xaml diff --git a/MaterialDesign3.Demo.Wpf/Trees.xaml.cs b/src/MaterialDesign3.Demo.Wpf/Trees.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Trees.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/Trees.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/Typography.xaml b/src/MaterialDesign3.Demo.Wpf/Typography.xaml similarity index 100% rename from MaterialDesign3.Demo.Wpf/Typography.xaml rename to src/MaterialDesign3.Demo.Wpf/Typography.xaml diff --git a/MaterialDesign3.Demo.Wpf/Typography.xaml.cs b/src/MaterialDesign3.Demo.Wpf/Typography.xaml.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/Typography.xaml.cs rename to src/MaterialDesign3.Demo.Wpf/Typography.xaml.cs diff --git a/MaterialDesign3.Demo.Wpf/XamlDisplayEx.cs b/src/MaterialDesign3.Demo.Wpf/XamlDisplayEx.cs similarity index 100% rename from MaterialDesign3.Demo.Wpf/XamlDisplayEx.cs rename to src/MaterialDesign3.Demo.Wpf/XamlDisplayEx.cs diff --git a/MaterialDesign3.Demo.Wpf/favicon.ico b/src/MaterialDesign3.Demo.Wpf/favicon.ico similarity index 100% rename from MaterialDesign3.Demo.Wpf/favicon.ico rename to src/MaterialDesign3.Demo.Wpf/favicon.ico diff --git a/MaterialDesignColors.Wpf/ColorManipulation/ColorAssist.cs b/src/MaterialDesignColors.Wpf/ColorManipulation/ColorAssist.cs similarity index 100% rename from MaterialDesignColors.Wpf/ColorManipulation/ColorAssist.cs rename to src/MaterialDesignColors.Wpf/ColorManipulation/ColorAssist.cs diff --git a/MaterialDesignColors.Wpf/ColorManipulation/Hsb.cs b/src/MaterialDesignColors.Wpf/ColorManipulation/Hsb.cs similarity index 100% rename from MaterialDesignColors.Wpf/ColorManipulation/Hsb.cs rename to src/MaterialDesignColors.Wpf/ColorManipulation/Hsb.cs diff --git a/MaterialDesignColors.Wpf/ColorManipulation/HsbExtensions.cs b/src/MaterialDesignColors.Wpf/ColorManipulation/HsbExtensions.cs similarity index 100% rename from MaterialDesignColors.Wpf/ColorManipulation/HsbExtensions.cs rename to src/MaterialDesignColors.Wpf/ColorManipulation/HsbExtensions.cs diff --git a/MaterialDesignColors.Wpf/ColorManipulation/Hsl.cs b/src/MaterialDesignColors.Wpf/ColorManipulation/Hsl.cs similarity index 100% rename from MaterialDesignColors.Wpf/ColorManipulation/Hsl.cs rename to src/MaterialDesignColors.Wpf/ColorManipulation/Hsl.cs diff --git a/MaterialDesignColors.Wpf/ColorManipulation/HslExtensions.cs b/src/MaterialDesignColors.Wpf/ColorManipulation/HslExtensions.cs similarity index 100% rename from MaterialDesignColors.Wpf/ColorManipulation/HslExtensions.cs rename to src/MaterialDesignColors.Wpf/ColorManipulation/HslExtensions.cs diff --git a/MaterialDesignColors.Wpf/ColorManipulation/Lab.cs b/src/MaterialDesignColors.Wpf/ColorManipulation/Lab.cs similarity index 100% rename from MaterialDesignColors.Wpf/ColorManipulation/Lab.cs rename to src/MaterialDesignColors.Wpf/ColorManipulation/Lab.cs diff --git a/MaterialDesignColors.Wpf/ColorManipulation/LabExtensions.cs b/src/MaterialDesignColors.Wpf/ColorManipulation/LabExtensions.cs similarity index 100% rename from MaterialDesignColors.Wpf/ColorManipulation/LabExtensions.cs rename to src/MaterialDesignColors.Wpf/ColorManipulation/LabExtensions.cs diff --git a/MaterialDesignColors.Wpf/ColorManipulation/Xyz.cs b/src/MaterialDesignColors.Wpf/ColorManipulation/Xyz.cs similarity index 100% rename from MaterialDesignColors.Wpf/ColorManipulation/Xyz.cs rename to src/MaterialDesignColors.Wpf/ColorManipulation/Xyz.cs diff --git a/MaterialDesignColors.Wpf/ColorManipulation/XyzExtensions.cs b/src/MaterialDesignColors.Wpf/ColorManipulation/XyzExtensions.cs similarity index 100% rename from MaterialDesignColors.Wpf/ColorManipulation/XyzExtensions.cs rename to src/MaterialDesignColors.Wpf/ColorManipulation/XyzExtensions.cs diff --git a/MaterialDesignColors.Wpf/ColorPair.cs b/src/MaterialDesignColors.Wpf/ColorPair.cs similarity index 100% rename from MaterialDesignColors.Wpf/ColorPair.cs rename to src/MaterialDesignColors.Wpf/ColorPair.cs diff --git a/MaterialDesignColors.Wpf/Hue.cs b/src/MaterialDesignColors.Wpf/Hue.cs similarity index 100% rename from MaterialDesignColors.Wpf/Hue.cs rename to src/MaterialDesignColors.Wpf/Hue.cs diff --git a/MaterialDesignColors.Wpf/ISwatch.cs b/src/MaterialDesignColors.Wpf/ISwatch.cs similarity index 100% rename from MaterialDesignColors.Wpf/ISwatch.cs rename to src/MaterialDesignColors.Wpf/ISwatch.cs diff --git a/MaterialDesignColors.Wpf/MaterialDesignColor.cs b/src/MaterialDesignColors.Wpf/MaterialDesignColor.cs similarity index 100% rename from MaterialDesignColors.Wpf/MaterialDesignColor.cs rename to src/MaterialDesignColors.Wpf/MaterialDesignColor.cs diff --git a/MaterialDesignColors.Wpf/MaterialDesignColors.Wpf.csproj b/src/MaterialDesignColors.Wpf/MaterialDesignColors.Wpf.csproj similarity index 100% rename from MaterialDesignColors.Wpf/MaterialDesignColors.Wpf.csproj rename to src/MaterialDesignColors.Wpf/MaterialDesignColors.Wpf.csproj diff --git a/MaterialDesignColors.nuspec b/src/MaterialDesignColors.Wpf/MaterialDesignColors.nuspec similarity index 64% rename from MaterialDesignColors.nuspec rename to src/MaterialDesignColors.Wpf/MaterialDesignColors.nuspec index 64761c7b83..875f9e27fa 100644 --- a/MaterialDesignColors.nuspec +++ b/src/MaterialDesignColors.Wpf/MaterialDesignColors.nuspec @@ -10,7 +10,8 @@ https://github.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit http://materialdesigninxaml.net/images/MD4XAML32.png false - ResourceDictionary instances containing standard Google Material Design swatches, for inclusion in a XAML application. + ResourceDictionary instances containing standard Google Material Design swatches, + for inclusion in a XAML application. docs\README.md https://github.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/releases $copyright$ @@ -22,9 +23,12 @@ - - - - + + + + - + \ No newline at end of file diff --git a/MaterialDesignColors.Wpf/Properties/AssemblyInfo.cs b/src/MaterialDesignColors.Wpf/Properties/AssemblyInfo.cs similarity index 100% rename from MaterialDesignColors.Wpf/Properties/AssemblyInfo.cs rename to src/MaterialDesignColors.Wpf/Properties/AssemblyInfo.cs diff --git a/MaterialDesignColors.Wpf/Properties/Resources.Designer.cs b/src/MaterialDesignColors.Wpf/Properties/Resources.Designer.cs similarity index 100% rename from MaterialDesignColors.Wpf/Properties/Resources.Designer.cs rename to src/MaterialDesignColors.Wpf/Properties/Resources.Designer.cs diff --git a/MaterialDesignColors.Wpf/Properties/Resources.resx b/src/MaterialDesignColors.Wpf/Properties/Resources.resx similarity index 100% rename from MaterialDesignColors.Wpf/Properties/Resources.resx rename to src/MaterialDesignColors.Wpf/Properties/Resources.resx diff --git a/MaterialDesignColors.Wpf/Properties/Settings.Designer.cs b/src/MaterialDesignColors.Wpf/Properties/Settings.Designer.cs similarity index 100% rename from MaterialDesignColors.Wpf/Properties/Settings.Designer.cs rename to src/MaterialDesignColors.Wpf/Properties/Settings.Designer.cs diff --git a/MaterialDesignColors.Wpf/Properties/Settings.settings b/src/MaterialDesignColors.Wpf/Properties/Settings.settings similarity index 100% rename from MaterialDesignColors.Wpf/Properties/Settings.settings rename to src/MaterialDesignColors.Wpf/Properties/Settings.settings diff --git a/MaterialDesignColors.Wpf/Recommended/AmberSwatch.cs b/src/MaterialDesignColors.Wpf/Recommended/AmberSwatch.cs similarity index 100% rename from MaterialDesignColors.Wpf/Recommended/AmberSwatch.cs rename to src/MaterialDesignColors.Wpf/Recommended/AmberSwatch.cs diff --git a/MaterialDesignColors.Wpf/Recommended/BlueGreySwatch.cs b/src/MaterialDesignColors.Wpf/Recommended/BlueGreySwatch.cs similarity index 100% rename from MaterialDesignColors.Wpf/Recommended/BlueGreySwatch.cs rename to src/MaterialDesignColors.Wpf/Recommended/BlueGreySwatch.cs diff --git a/MaterialDesignColors.Wpf/Recommended/BlueSwatch.cs b/src/MaterialDesignColors.Wpf/Recommended/BlueSwatch.cs similarity index 100% rename from MaterialDesignColors.Wpf/Recommended/BlueSwatch.cs rename to src/MaterialDesignColors.Wpf/Recommended/BlueSwatch.cs diff --git a/MaterialDesignColors.Wpf/Recommended/BrownSwatch.cs b/src/MaterialDesignColors.Wpf/Recommended/BrownSwatch.cs similarity index 100% rename from MaterialDesignColors.Wpf/Recommended/BrownSwatch.cs rename to src/MaterialDesignColors.Wpf/Recommended/BrownSwatch.cs diff --git a/MaterialDesignColors.Wpf/Recommended/CyanSwatch.cs b/src/MaterialDesignColors.Wpf/Recommended/CyanSwatch.cs similarity index 100% rename from MaterialDesignColors.Wpf/Recommended/CyanSwatch.cs rename to src/MaterialDesignColors.Wpf/Recommended/CyanSwatch.cs diff --git a/MaterialDesignColors.Wpf/Recommended/DeepOrangeSwatch.cs b/src/MaterialDesignColors.Wpf/Recommended/DeepOrangeSwatch.cs similarity index 100% rename from MaterialDesignColors.Wpf/Recommended/DeepOrangeSwatch.cs rename to src/MaterialDesignColors.Wpf/Recommended/DeepOrangeSwatch.cs diff --git a/MaterialDesignColors.Wpf/Recommended/DeepPurpleSwatch.cs b/src/MaterialDesignColors.Wpf/Recommended/DeepPurpleSwatch.cs similarity index 100% rename from MaterialDesignColors.Wpf/Recommended/DeepPurpleSwatch.cs rename to src/MaterialDesignColors.Wpf/Recommended/DeepPurpleSwatch.cs diff --git a/MaterialDesignColors.Wpf/Recommended/GreenSwatch.cs b/src/MaterialDesignColors.Wpf/Recommended/GreenSwatch.cs similarity index 100% rename from MaterialDesignColors.Wpf/Recommended/GreenSwatch.cs rename to src/MaterialDesignColors.Wpf/Recommended/GreenSwatch.cs diff --git a/MaterialDesignColors.Wpf/Recommended/GreySwatch.cs b/src/MaterialDesignColors.Wpf/Recommended/GreySwatch.cs similarity index 100% rename from MaterialDesignColors.Wpf/Recommended/GreySwatch.cs rename to src/MaterialDesignColors.Wpf/Recommended/GreySwatch.cs diff --git a/MaterialDesignColors.Wpf/Recommended/IndigoSwatch.cs b/src/MaterialDesignColors.Wpf/Recommended/IndigoSwatch.cs similarity index 100% rename from MaterialDesignColors.Wpf/Recommended/IndigoSwatch.cs rename to src/MaterialDesignColors.Wpf/Recommended/IndigoSwatch.cs diff --git a/MaterialDesignColors.Wpf/Recommended/LightBlueSwatch.cs b/src/MaterialDesignColors.Wpf/Recommended/LightBlueSwatch.cs similarity index 100% rename from MaterialDesignColors.Wpf/Recommended/LightBlueSwatch.cs rename to src/MaterialDesignColors.Wpf/Recommended/LightBlueSwatch.cs diff --git a/MaterialDesignColors.Wpf/Recommended/LightGreenSwatch.cs b/src/MaterialDesignColors.Wpf/Recommended/LightGreenSwatch.cs similarity index 100% rename from MaterialDesignColors.Wpf/Recommended/LightGreenSwatch.cs rename to src/MaterialDesignColors.Wpf/Recommended/LightGreenSwatch.cs diff --git a/MaterialDesignColors.Wpf/Recommended/LimeSwatch.cs b/src/MaterialDesignColors.Wpf/Recommended/LimeSwatch.cs similarity index 100% rename from MaterialDesignColors.Wpf/Recommended/LimeSwatch.cs rename to src/MaterialDesignColors.Wpf/Recommended/LimeSwatch.cs diff --git a/MaterialDesignColors.Wpf/Recommended/OrangeSwatch.cs b/src/MaterialDesignColors.Wpf/Recommended/OrangeSwatch.cs similarity index 100% rename from MaterialDesignColors.Wpf/Recommended/OrangeSwatch.cs rename to src/MaterialDesignColors.Wpf/Recommended/OrangeSwatch.cs diff --git a/MaterialDesignColors.Wpf/Recommended/PinkSwatch.cs b/src/MaterialDesignColors.Wpf/Recommended/PinkSwatch.cs similarity index 100% rename from MaterialDesignColors.Wpf/Recommended/PinkSwatch.cs rename to src/MaterialDesignColors.Wpf/Recommended/PinkSwatch.cs diff --git a/MaterialDesignColors.Wpf/Recommended/PurpleSwatch.cs b/src/MaterialDesignColors.Wpf/Recommended/PurpleSwatch.cs similarity index 100% rename from MaterialDesignColors.Wpf/Recommended/PurpleSwatch.cs rename to src/MaterialDesignColors.Wpf/Recommended/PurpleSwatch.cs diff --git a/MaterialDesignColors.Wpf/Recommended/RedSwatch.cs b/src/MaterialDesignColors.Wpf/Recommended/RedSwatch.cs similarity index 100% rename from MaterialDesignColors.Wpf/Recommended/RedSwatch.cs rename to src/MaterialDesignColors.Wpf/Recommended/RedSwatch.cs diff --git a/MaterialDesignColors.Wpf/Recommended/TealSwatch.cs b/src/MaterialDesignColors.Wpf/Recommended/TealSwatch.cs similarity index 100% rename from MaterialDesignColors.Wpf/Recommended/TealSwatch.cs rename to src/MaterialDesignColors.Wpf/Recommended/TealSwatch.cs diff --git a/MaterialDesignColors.Wpf/Recommended/YellowSwatch.cs b/src/MaterialDesignColors.Wpf/Recommended/YellowSwatch.cs similarity index 100% rename from MaterialDesignColors.Wpf/Recommended/YellowSwatch.cs rename to src/MaterialDesignColors.Wpf/Recommended/YellowSwatch.cs diff --git a/MaterialDesignColors.Wpf/StaticResourceExtension.cs b/src/MaterialDesignColors.Wpf/StaticResourceExtension.cs similarity index 100% rename from MaterialDesignColors.Wpf/StaticResourceExtension.cs rename to src/MaterialDesignColors.Wpf/StaticResourceExtension.cs diff --git a/MaterialDesignColors.Wpf/Swatch.cs b/src/MaterialDesignColors.Wpf/Swatch.cs similarity index 100% rename from MaterialDesignColors.Wpf/Swatch.cs rename to src/MaterialDesignColors.Wpf/Swatch.cs diff --git a/MaterialDesignColors.Wpf/SwatchHelper.cs b/src/MaterialDesignColors.Wpf/SwatchHelper.cs similarity index 100% rename from MaterialDesignColors.Wpf/SwatchHelper.cs rename to src/MaterialDesignColors.Wpf/SwatchHelper.cs diff --git a/MaterialDesignColors.Wpf/SwatchesProvider.cs b/src/MaterialDesignColors.Wpf/SwatchesProvider.cs similarity index 100% rename from MaterialDesignColors.Wpf/SwatchesProvider.cs rename to src/MaterialDesignColors.Wpf/SwatchesProvider.cs diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Amber.Named.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Amber.Named.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Amber.Named.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Amber.Named.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Amber.Named.Secondary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Amber.Named.Secondary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Amber.Named.Secondary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Amber.Named.Secondary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Amber.Named.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Amber.Named.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Amber.Named.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Amber.Named.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Amber.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Amber.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Amber.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Amber.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Amber.Secondary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Amber.Secondary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Amber.Secondary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Amber.Secondary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Amber.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Amber.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Amber.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Amber.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Blue.Named.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Blue.Named.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Blue.Named.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Blue.Named.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Blue.Named.Secondary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Blue.Named.Secondary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Blue.Named.Secondary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Blue.Named.Secondary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Blue.Named.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Blue.Named.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Blue.Named.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Blue.Named.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Blue.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Blue.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Blue.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Blue.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Blue.Secondary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Blue.Secondary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Blue.Secondary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Blue.Secondary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Blue.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Blue.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Blue.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Blue.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.BlueGrey.Named.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.BlueGrey.Named.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.BlueGrey.Named.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.BlueGrey.Named.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.BlueGrey.Named.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.BlueGrey.Named.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.BlueGrey.Named.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.BlueGrey.Named.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.BlueGrey.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.BlueGrey.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.BlueGrey.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.BlueGrey.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.BlueGrey.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.BlueGrey.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.BlueGrey.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.BlueGrey.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Brown.Named.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Brown.Named.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Brown.Named.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Brown.Named.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Brown.Named.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Brown.Named.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Brown.Named.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Brown.Named.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Brown.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Brown.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Brown.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Brown.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Brown.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Brown.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Brown.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Brown.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Cyan.Named.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Cyan.Named.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Cyan.Named.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Cyan.Named.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Cyan.Named.Secondary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Cyan.Named.Secondary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Cyan.Named.Secondary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Cyan.Named.Secondary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Cyan.Named.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Cyan.Named.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Cyan.Named.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Cyan.Named.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Cyan.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Cyan.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Cyan.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Cyan.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Cyan.Secondary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Cyan.Secondary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Cyan.Secondary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Cyan.Secondary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Cyan.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Cyan.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Cyan.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Cyan.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepOrange.Named.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepOrange.Named.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepOrange.Named.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepOrange.Named.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepOrange.Named.Secondary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepOrange.Named.Secondary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepOrange.Named.Secondary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepOrange.Named.Secondary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepOrange.Named.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepOrange.Named.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepOrange.Named.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepOrange.Named.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepOrange.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepOrange.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepOrange.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepOrange.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepOrange.Secondary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepOrange.Secondary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepOrange.Secondary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepOrange.Secondary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepOrange.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepOrange.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepOrange.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepOrange.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepPurple.Named.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepPurple.Named.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepPurple.Named.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepPurple.Named.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepPurple.Named.Secondary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepPurple.Named.Secondary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepPurple.Named.Secondary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepPurple.Named.Secondary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepPurple.Named.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepPurple.Named.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepPurple.Named.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepPurple.Named.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepPurple.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepPurple.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepPurple.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepPurple.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepPurple.Secondary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepPurple.Secondary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepPurple.Secondary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepPurple.Secondary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepPurple.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepPurple.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepPurple.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.DeepPurple.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Green.Named.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Green.Named.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Green.Named.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Green.Named.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Green.Named.Secondary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Green.Named.Secondary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Green.Named.Secondary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Green.Named.Secondary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Green.Named.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Green.Named.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Green.Named.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Green.Named.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Green.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Green.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Green.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Green.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Green.Secondary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Green.Secondary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Green.Secondary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Green.Secondary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Green.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Green.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Green.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Green.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Grey.Named.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Grey.Named.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Grey.Named.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Grey.Named.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Grey.Named.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Grey.Named.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Grey.Named.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Grey.Named.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Grey.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Grey.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Grey.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Grey.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Grey.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Grey.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Grey.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Grey.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Indigo.Named.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Indigo.Named.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Indigo.Named.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Indigo.Named.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Indigo.Named.Secondary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Indigo.Named.Secondary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Indigo.Named.Secondary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Indigo.Named.Secondary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Indigo.Named.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Indigo.Named.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Indigo.Named.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Indigo.Named.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Indigo.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Indigo.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Indigo.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Indigo.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Indigo.Secondary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Indigo.Secondary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Indigo.Secondary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Indigo.Secondary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Indigo.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Indigo.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Indigo.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Indigo.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightBlue.Named.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightBlue.Named.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightBlue.Named.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightBlue.Named.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightBlue.Named.Secondary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightBlue.Named.Secondary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightBlue.Named.Secondary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightBlue.Named.Secondary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightBlue.Named.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightBlue.Named.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightBlue.Named.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightBlue.Named.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightBlue.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightBlue.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightBlue.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightBlue.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightBlue.Secondary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightBlue.Secondary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightBlue.Secondary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightBlue.Secondary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightBlue.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightBlue.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightBlue.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightBlue.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightGreen.Named.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightGreen.Named.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightGreen.Named.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightGreen.Named.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightGreen.Named.Secondary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightGreen.Named.Secondary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightGreen.Named.Secondary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightGreen.Named.Secondary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightGreen.Named.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightGreen.Named.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightGreen.Named.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightGreen.Named.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightGreen.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightGreen.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightGreen.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightGreen.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightGreen.Secondary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightGreen.Secondary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightGreen.Secondary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightGreen.Secondary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightGreen.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightGreen.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightGreen.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.LightGreen.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Lime.Named.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Lime.Named.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Lime.Named.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Lime.Named.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Lime.Named.Secondary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Lime.Named.Secondary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Lime.Named.Secondary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Lime.Named.Secondary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Lime.Named.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Lime.Named.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Lime.Named.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Lime.Named.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Lime.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Lime.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Lime.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Lime.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Lime.Secondary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Lime.Secondary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Lime.Secondary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Lime.Secondary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Lime.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Lime.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Lime.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Lime.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Orange.Named.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Orange.Named.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Orange.Named.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Orange.Named.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Orange.Named.Secondary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Orange.Named.Secondary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Orange.Named.Secondary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Orange.Named.Secondary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Orange.Named.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Orange.Named.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Orange.Named.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Orange.Named.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Orange.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Orange.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Orange.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Orange.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Orange.Secondary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Orange.Secondary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Orange.Secondary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Orange.Secondary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Orange.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Orange.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Orange.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Orange.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Pink.Named.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Pink.Named.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Pink.Named.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Pink.Named.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Pink.Named.Secondary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Pink.Named.Secondary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Pink.Named.Secondary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Pink.Named.Secondary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Pink.Named.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Pink.Named.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Pink.Named.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Pink.Named.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Pink.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Pink.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Pink.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Pink.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Pink.Secondary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Pink.Secondary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Pink.Secondary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Pink.Secondary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Pink.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Pink.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Pink.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Pink.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Purple.Named.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Purple.Named.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Purple.Named.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Purple.Named.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Purple.Named.Secondary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Purple.Named.Secondary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Purple.Named.Secondary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Purple.Named.Secondary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Purple.Named.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Purple.Named.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Purple.Named.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Purple.Named.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Purple.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Purple.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Purple.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Purple.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Purple.Secondary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Purple.Secondary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Purple.Secondary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Purple.Secondary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Purple.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Purple.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Purple.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Purple.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Red.Named.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Red.Named.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Red.Named.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Red.Named.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Red.Named.Secondary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Red.Named.Secondary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Red.Named.Secondary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Red.Named.Secondary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Red.Named.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Red.Named.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Red.Named.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Red.Named.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Red.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Red.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Red.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Red.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Red.Secondary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Red.Secondary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Red.Secondary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Red.Secondary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Red.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Red.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Red.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Red.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Teal.Named.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Teal.Named.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Teal.Named.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Teal.Named.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Teal.Named.Secondary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Teal.Named.Secondary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Teal.Named.Secondary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Teal.Named.Secondary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Teal.Named.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Teal.Named.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Teal.Named.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Teal.Named.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Teal.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Teal.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Teal.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Teal.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Teal.Secondary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Teal.Secondary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Teal.Secondary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Teal.Secondary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Teal.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Teal.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Teal.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Teal.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Yellow.Named.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Yellow.Named.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Yellow.Named.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Yellow.Named.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Yellow.Named.Secondary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Yellow.Named.Secondary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Yellow.Named.Secondary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Yellow.Named.Secondary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Yellow.Named.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Yellow.Named.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Yellow.Named.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Yellow.Named.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Yellow.Primary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Yellow.Primary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Yellow.Primary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Yellow.Primary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Yellow.Secondary.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Yellow.Secondary.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Yellow.Secondary.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Yellow.Secondary.xaml diff --git a/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Yellow.xaml b/src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Yellow.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Yellow.xaml rename to src/MaterialDesignColors.Wpf/Themes/MaterialDesignColor.Yellow.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Amber.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Amber.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Amber.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Amber.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Blue.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Blue.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Blue.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Blue.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.BlueGrey.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.BlueGrey.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.BlueGrey.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.BlueGrey.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Brown.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Brown.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Brown.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Brown.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Cyan.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Cyan.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Cyan.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Cyan.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.DeepOrange.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.DeepOrange.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.DeepOrange.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.DeepOrange.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.DeepPurple.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.DeepPurple.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.DeepPurple.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.DeepPurple.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Green.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Green.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Green.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Green.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Grey.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Grey.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Grey.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Grey.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Indigo.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Indigo.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Indigo.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Indigo.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.LightBlue.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.LightBlue.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.LightBlue.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.LightBlue.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.LightGreen.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.LightGreen.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.LightGreen.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.LightGreen.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Lime.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Lime.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Lime.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Lime.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Orange.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Orange.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Orange.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Orange.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Pink.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Pink.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Pink.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Pink.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Purple.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Purple.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Purple.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Purple.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Red.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Red.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Red.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Red.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Teal.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Teal.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Teal.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Teal.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Yellow.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Yellow.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Yellow.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Primary/MaterialDesignColor.Yellow.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Amber.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Amber.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Amber.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Amber.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Blue.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Blue.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Blue.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Blue.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Cyan.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Cyan.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Cyan.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Cyan.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.DeepOrange.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.DeepOrange.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.DeepOrange.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.DeepOrange.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.DeepPurple.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.DeepPurple.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.DeepPurple.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.DeepPurple.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Green.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Green.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Green.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Green.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Indigo.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Indigo.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Indigo.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Indigo.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.LightBlue.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.LightBlue.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.LightBlue.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.LightBlue.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.LightGreen.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.LightGreen.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.LightGreen.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.LightGreen.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Lime.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Lime.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Lime.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Lime.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Orange.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Orange.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Orange.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Orange.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Pink.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Pink.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Pink.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Pink.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Purple.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Purple.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Purple.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Purple.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Red.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Red.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Red.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Red.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Teal.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Teal.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Teal.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Teal.xaml diff --git a/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Yellow.xaml b/src/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Yellow.xaml similarity index 100% rename from MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Yellow.xaml rename to src/MaterialDesignColors.Wpf/Themes/Recommended/Secondary/MaterialDesignColor.Yellow.xaml diff --git a/MaterialDesignThemes.MahApps/BaseThemeExtensions.cs b/src/MaterialDesignThemes.MahApps/BaseThemeExtensions.cs similarity index 100% rename from MaterialDesignThemes.MahApps/BaseThemeExtensions.cs rename to src/MaterialDesignThemes.MahApps/BaseThemeExtensions.cs diff --git a/MaterialDesignThemes.MahApps/FlyoutAssist.cs b/src/MaterialDesignThemes.MahApps/FlyoutAssist.cs similarity index 100% rename from MaterialDesignThemes.MahApps/FlyoutAssist.cs rename to src/MaterialDesignThemes.MahApps/FlyoutAssist.cs diff --git a/MaterialDesignThemes.MahApps/MahAppsBundledTheme.cs b/src/MaterialDesignThemes.MahApps/MahAppsBundledTheme.cs similarity index 100% rename from MaterialDesignThemes.MahApps/MahAppsBundledTheme.cs rename to src/MaterialDesignThemes.MahApps/MahAppsBundledTheme.cs diff --git a/MaterialDesignThemes.MahApps/MahAppsCustomColorTheme.cs b/src/MaterialDesignThemes.MahApps/MahAppsCustomColorTheme.cs similarity index 100% rename from MaterialDesignThemes.MahApps/MahAppsCustomColorTheme.cs rename to src/MaterialDesignThemes.MahApps/MahAppsCustomColorTheme.cs diff --git a/MaterialDesignThemes.MahApps/MaterialDesignAssist.cs b/src/MaterialDesignThemes.MahApps/MaterialDesignAssist.cs similarity index 100% rename from MaterialDesignThemes.MahApps/MaterialDesignAssist.cs rename to src/MaterialDesignThemes.MahApps/MaterialDesignAssist.cs diff --git a/MaterialDesignThemes.MahApps/MaterialDesignThemes.MahApps.csproj b/src/MaterialDesignThemes.MahApps/MaterialDesignThemes.MahApps.csproj similarity index 100% rename from MaterialDesignThemes.MahApps/MaterialDesignThemes.MahApps.csproj rename to src/MaterialDesignThemes.MahApps/MaterialDesignThemes.MahApps.csproj diff --git a/MaterialDesignThemes.MahApps.nuspec b/src/MaterialDesignThemes.MahApps/MaterialDesignThemes.MahApps.nuspec similarity index 73% rename from MaterialDesignThemes.MahApps.nuspec rename to src/MaterialDesignThemes.MahApps/MaterialDesignThemes.MahApps.nuspec index 2d2e1402a1..68296a8e08 100644 --- a/MaterialDesignThemes.MahApps.nuspec +++ b/src/MaterialDesignThemes.MahApps/MaterialDesignThemes.MahApps.nuspec @@ -10,7 +10,8 @@ https://github.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit http://materialdesigninxaml.net/images/MD4XAML32.png false - ResourceDictionary instances containing Material Design templates and styles for WPF controls in the MahApps library. + ResourceDictionary instances containing Material Design templates and styles for + WPF controls in the MahApps library. docs\README.md https://github.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/releases $copyright$ @@ -34,9 +35,12 @@ - - - - + + + + - + \ No newline at end of file diff --git a/MaterialDesignThemes.MahApps/Properties/AssemblyInfo.cs b/src/MaterialDesignThemes.MahApps/Properties/AssemblyInfo.cs similarity index 100% rename from MaterialDesignThemes.MahApps/Properties/AssemblyInfo.cs rename to src/MaterialDesignThemes.MahApps/Properties/AssemblyInfo.cs diff --git a/MaterialDesignThemes.MahApps/Properties/Resources.Designer.cs b/src/MaterialDesignThemes.MahApps/Properties/Resources.Designer.cs similarity index 100% rename from MaterialDesignThemes.MahApps/Properties/Resources.Designer.cs rename to src/MaterialDesignThemes.MahApps/Properties/Resources.Designer.cs diff --git a/MaterialDesignThemes.MahApps/Properties/Resources.resx b/src/MaterialDesignThemes.MahApps/Properties/Resources.resx similarity index 100% rename from MaterialDesignThemes.MahApps/Properties/Resources.resx rename to src/MaterialDesignThemes.MahApps/Properties/Resources.resx diff --git a/MaterialDesignThemes.MahApps/Properties/Settings.Designer.cs b/src/MaterialDesignThemes.MahApps/Properties/Settings.Designer.cs similarity index 100% rename from MaterialDesignThemes.MahApps/Properties/Settings.Designer.cs rename to src/MaterialDesignThemes.MahApps/Properties/Settings.Designer.cs diff --git a/MaterialDesignThemes.MahApps/Properties/Settings.settings b/src/MaterialDesignThemes.MahApps/Properties/Settings.settings similarity index 100% rename from MaterialDesignThemes.MahApps/Properties/Settings.settings rename to src/MaterialDesignThemes.MahApps/Properties/Settings.settings diff --git a/MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.Defaults.xaml b/src/MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.Defaults.xaml similarity index 100% rename from MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.Defaults.xaml rename to src/MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.Defaults.xaml diff --git a/MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.Dialogs.xaml b/src/MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.Dialogs.xaml similarity index 100% rename from MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.Dialogs.xaml rename to src/MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.Dialogs.xaml diff --git a/MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.Flyout.xaml b/src/MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.Flyout.xaml similarity index 100% rename from MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.Flyout.xaml rename to src/MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.Flyout.xaml diff --git a/MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.Fonts.xaml b/src/MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.Fonts.xaml similarity index 100% rename from MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.Fonts.xaml rename to src/MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.Fonts.xaml diff --git a/MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.NumericUpDown.xaml b/src/MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.NumericUpDown.xaml similarity index 100% rename from MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.NumericUpDown.xaml rename to src/MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.NumericUpDown.xaml diff --git a/MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.PasswordBox.xaml b/src/MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.PasswordBox.xaml similarity index 100% rename from MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.PasswordBox.xaml rename to src/MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.PasswordBox.xaml diff --git a/MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.RangeSlider.xaml b/src/MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.RangeSlider.xaml similarity index 100% rename from MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.RangeSlider.xaml rename to src/MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.RangeSlider.xaml diff --git a/MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.TextBox.xaml b/src/MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.TextBox.xaml similarity index 100% rename from MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.TextBox.xaml rename to src/MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.TextBox.xaml diff --git a/MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.WindowCommands.xaml b/src/MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.WindowCommands.xaml similarity index 100% rename from MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.WindowCommands.xaml rename to src/MaterialDesignThemes.MahApps/Themes/MaterialDesignTheme.MahApps.WindowCommands.xaml diff --git a/MaterialDesignThemes.Wpf/AdornerExtensions.cs b/src/MaterialDesignThemes.Wpf/AdornerExtensions.cs similarity index 100% rename from MaterialDesignThemes.Wpf/AdornerExtensions.cs rename to src/MaterialDesignThemes.Wpf/AdornerExtensions.cs diff --git a/MaterialDesignThemes.Wpf/AutoSuggestBox.cs b/src/MaterialDesignThemes.Wpf/AutoSuggestBox.cs similarity index 100% rename from MaterialDesignThemes.Wpf/AutoSuggestBox.cs rename to src/MaterialDesignThemes.Wpf/AutoSuggestBox.cs diff --git a/MaterialDesignThemes.Wpf/Automation/Peers/TreeListViewItemAutomationPeer.cs b/src/MaterialDesignThemes.Wpf/Automation/Peers/TreeListViewItemAutomationPeer.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Automation/Peers/TreeListViewItemAutomationPeer.cs rename to src/MaterialDesignThemes.Wpf/Automation/Peers/TreeListViewItemAutomationPeer.cs diff --git a/MaterialDesignThemes.Wpf/Badged.cs b/src/MaterialDesignThemes.Wpf/Badged.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Badged.cs rename to src/MaterialDesignThemes.Wpf/Badged.cs diff --git a/MaterialDesignThemes.Wpf/BadgedAssist.cs b/src/MaterialDesignThemes.Wpf/BadgedAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/BadgedAssist.cs rename to src/MaterialDesignThemes.Wpf/BadgedAssist.cs diff --git a/MaterialDesignThemes.Wpf/BaseTheme.cs b/src/MaterialDesignThemes.Wpf/BaseTheme.cs similarity index 100% rename from MaterialDesignThemes.Wpf/BaseTheme.cs rename to src/MaterialDesignThemes.Wpf/BaseTheme.cs diff --git a/MaterialDesignThemes.Wpf/BehaviorCollection.cs b/src/MaterialDesignThemes.Wpf/BehaviorCollection.cs similarity index 100% rename from MaterialDesignThemes.Wpf/BehaviorCollection.cs rename to src/MaterialDesignThemes.Wpf/BehaviorCollection.cs diff --git a/MaterialDesignThemes.Wpf/Behaviors/PasswordBoxBehavior.cs b/src/MaterialDesignThemes.Wpf/Behaviors/PasswordBoxBehavior.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Behaviors/PasswordBoxBehavior.cs rename to src/MaterialDesignThemes.Wpf/Behaviors/PasswordBoxBehavior.cs diff --git a/MaterialDesignThemes.Wpf/Behaviors/PasswordBoxRevealTextBoxBehavior.cs b/src/MaterialDesignThemes.Wpf/Behaviors/PasswordBoxRevealTextBoxBehavior.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Behaviors/PasswordBoxRevealTextBoxBehavior.cs rename to src/MaterialDesignThemes.Wpf/Behaviors/PasswordBoxRevealTextBoxBehavior.cs diff --git a/MaterialDesignThemes.Wpf/BehaviorsAssist.cs b/src/MaterialDesignThemes.Wpf/BehaviorsAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/BehaviorsAssist.cs rename to src/MaterialDesignThemes.Wpf/BehaviorsAssist.cs diff --git a/MaterialDesignThemes.Wpf/BottomDashedLineAdorner.cs b/src/MaterialDesignThemes.Wpf/BottomDashedLineAdorner.cs similarity index 100% rename from MaterialDesignThemes.Wpf/BottomDashedLineAdorner.cs rename to src/MaterialDesignThemes.Wpf/BottomDashedLineAdorner.cs diff --git a/MaterialDesignThemes.Wpf/BundledTheme.cs b/src/MaterialDesignThemes.Wpf/BundledTheme.cs similarity index 100% rename from MaterialDesignThemes.Wpf/BundledTheme.cs rename to src/MaterialDesignThemes.Wpf/BundledTheme.cs diff --git a/MaterialDesignThemes.Wpf/ButtonAssist.cs b/src/MaterialDesignThemes.Wpf/ButtonAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ButtonAssist.cs rename to src/MaterialDesignThemes.Wpf/ButtonAssist.cs diff --git a/MaterialDesignThemes.Wpf/ButtonProgressAssist.cs b/src/MaterialDesignThemes.Wpf/ButtonProgressAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ButtonProgressAssist.cs rename to src/MaterialDesignThemes.Wpf/ButtonProgressAssist.cs diff --git a/MaterialDesignThemes.Wpf/CalendarAssist.cs b/src/MaterialDesignThemes.Wpf/CalendarAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/CalendarAssist.cs rename to src/MaterialDesignThemes.Wpf/CalendarAssist.cs diff --git a/MaterialDesignThemes.Wpf/CalendarFormatInfo.cs b/src/MaterialDesignThemes.Wpf/CalendarFormatInfo.cs similarity index 100% rename from MaterialDesignThemes.Wpf/CalendarFormatInfo.cs rename to src/MaterialDesignThemes.Wpf/CalendarFormatInfo.cs diff --git a/MaterialDesignThemes.Wpf/Card.cs b/src/MaterialDesignThemes.Wpf/Card.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Card.cs rename to src/MaterialDesignThemes.Wpf/Card.cs diff --git a/MaterialDesignThemes.Wpf/CheckBoxAssist.cs b/src/MaterialDesignThemes.Wpf/CheckBoxAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/CheckBoxAssist.cs rename to src/MaterialDesignThemes.Wpf/CheckBoxAssist.cs diff --git a/MaterialDesignThemes.Wpf/Chip.cs b/src/MaterialDesignThemes.Wpf/Chip.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Chip.cs rename to src/MaterialDesignThemes.Wpf/Chip.cs diff --git a/MaterialDesignThemes.Wpf/Clock.cs b/src/MaterialDesignThemes.Wpf/Clock.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Clock.cs rename to src/MaterialDesignThemes.Wpf/Clock.cs diff --git a/MaterialDesignThemes.Wpf/ClockChoiceMadeEventArgs.cs b/src/MaterialDesignThemes.Wpf/ClockChoiceMadeEventArgs.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ClockChoiceMadeEventArgs.cs rename to src/MaterialDesignThemes.Wpf/ClockChoiceMadeEventArgs.cs diff --git a/MaterialDesignThemes.Wpf/ClockItemButton.cs b/src/MaterialDesignThemes.Wpf/ClockItemButton.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ClockItemButton.cs rename to src/MaterialDesignThemes.Wpf/ClockItemButton.cs diff --git a/MaterialDesignThemes.Wpf/ColorAdjustment.cs b/src/MaterialDesignThemes.Wpf/ColorAdjustment.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ColorAdjustment.cs rename to src/MaterialDesignThemes.Wpf/ColorAdjustment.cs diff --git a/MaterialDesignThemes.Wpf/ColorPicker.cs b/src/MaterialDesignThemes.Wpf/ColorPicker.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ColorPicker.cs rename to src/MaterialDesignThemes.Wpf/ColorPicker.cs diff --git a/MaterialDesignThemes.Wpf/ColorReference.cs b/src/MaterialDesignThemes.Wpf/ColorReference.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ColorReference.cs rename to src/MaterialDesignThemes.Wpf/ColorReference.cs diff --git a/MaterialDesignThemes.Wpf/ColorSelection.cs b/src/MaterialDesignThemes.Wpf/ColorSelection.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ColorSelection.cs rename to src/MaterialDesignThemes.Wpf/ColorSelection.cs diff --git a/MaterialDesignThemes.Wpf/ColorZone.cs b/src/MaterialDesignThemes.Wpf/ColorZone.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ColorZone.cs rename to src/MaterialDesignThemes.Wpf/ColorZone.cs diff --git a/MaterialDesignThemes.Wpf/ColorZoneAssist.cs b/src/MaterialDesignThemes.Wpf/ColorZoneAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ColorZoneAssist.cs rename to src/MaterialDesignThemes.Wpf/ColorZoneAssist.cs diff --git a/MaterialDesignThemes.Wpf/ColorZoneMode.cs b/src/MaterialDesignThemes.Wpf/ColorZoneMode.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ColorZoneMode.cs rename to src/MaterialDesignThemes.Wpf/ColorZoneMode.cs diff --git a/MaterialDesignThemes.Wpf/ComboBoxAssist.cs b/src/MaterialDesignThemes.Wpf/ComboBoxAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ComboBoxAssist.cs rename to src/MaterialDesignThemes.Wpf/ComboBoxAssist.cs diff --git a/MaterialDesignThemes.Wpf/ComboBoxPopup.cs b/src/MaterialDesignThemes.Wpf/ComboBoxPopup.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ComboBoxPopup.cs rename to src/MaterialDesignThemes.Wpf/ComboBoxPopup.cs diff --git a/MaterialDesignThemes.Wpf/Constants.cs b/src/MaterialDesignThemes.Wpf/Constants.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Constants.cs rename to src/MaterialDesignThemes.Wpf/Constants.cs diff --git a/MaterialDesignThemes.Wpf/Contrast.cs b/src/MaterialDesignThemes.Wpf/Contrast.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Contrast.cs rename to src/MaterialDesignThemes.Wpf/Contrast.cs diff --git a/MaterialDesignThemes.Wpf/Converters/BooleanAllConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/BooleanAllConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/BooleanAllConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/BooleanAllConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/BooleanConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/BooleanConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/BooleanConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/BooleanConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/BooleanToDashStyleConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/BooleanToDashStyleConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/BooleanToDashStyleConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/BooleanToDashStyleConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/BooleanToVisibilityConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/BooleanToVisibilityConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/BooleanToVisibilityConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/BooleanToVisibilityConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/BorderClipConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/BorderClipConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/BorderClipConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/BorderClipConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/BrushOpacityConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/BrushOpacityConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/BrushOpacityConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/BrushOpacityConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/BrushRoundConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/BrushRoundConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/BrushRoundConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/BrushRoundConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/BrushToRadialGradientBrushConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/BrushToRadialGradientBrushConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/BrushToRadialGradientBrushConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/BrushToRadialGradientBrushConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/CalendarDateCoalesceConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/CalendarDateCoalesceConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/CalendarDateCoalesceConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/CalendarDateCoalesceConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/CalendarYearMonthConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/CalendarYearMonthConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/CalendarYearMonthConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/CalendarYearMonthConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/CircularProgressBar/ArcEndPointConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/CircularProgressBar/ArcEndPointConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/CircularProgressBar/ArcEndPointConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/CircularProgressBar/ArcEndPointConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/CircularProgressBar/ArcSizeConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/CircularProgressBar/ArcSizeConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/CircularProgressBar/ArcSizeConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/CircularProgressBar/ArcSizeConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/CircularProgressBar/LocalEx.cs b/src/MaterialDesignThemes.Wpf/Converters/CircularProgressBar/LocalEx.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/CircularProgressBar/LocalEx.cs rename to src/MaterialDesignThemes.Wpf/Converters/CircularProgressBar/LocalEx.cs diff --git a/MaterialDesignThemes.Wpf/Converters/CircularProgressBar/RotateTransformCentreConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/CircularProgressBar/RotateTransformCentreConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/CircularProgressBar/RotateTransformCentreConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/CircularProgressBar/RotateTransformCentreConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/CircularProgressBar/StartPointConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/CircularProgressBar/StartPointConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/CircularProgressBar/StartPointConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/CircularProgressBar/StartPointConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/ClockItemIsCheckedConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/ClockItemIsCheckedConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/ClockItemIsCheckedConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/ClockItemIsCheckedConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/ClockLineConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/ClockLineConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/ClockLineConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/ClockLineConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/CornerRadiusCloneConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/CornerRadiusCloneConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/CornerRadiusCloneConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/CornerRadiusCloneConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/CursorConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/CursorConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/CursorConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/CursorConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/DoubleToCornerRadiusConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/DoubleToCornerRadiusConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/DoubleToCornerRadiusConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/DoubleToCornerRadiusConverter.cs diff --git a/src/MaterialDesignThemes.Wpf/Converters/DoubleToThicknessConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/DoubleToThicknessConverter.cs new file mode 100644 index 0000000000..e32a945103 --- /dev/null +++ b/src/MaterialDesignThemes.Wpf/Converters/DoubleToThicknessConverter.cs @@ -0,0 +1,21 @@ +using System.Globalization; +using System.Windows.Data; + +namespace MaterialDesignThemes.Wpf.Converters; + +internal class DoubleToThicknessConverter : IValueConverter +{ + public double InitialOffset { get; set; } + + public object Convert(object value, Type targetType, object parameter, CultureInfo culture) + => (Dock)parameter switch + { + Dock.Left => new Thickness(InitialOffset + (double)value, 0, 0, 0), + Dock.Top => new Thickness(0, InitialOffset + (double)value, 0, 0), + Dock.Right => new Thickness(0, 0, InitialOffset + (double)value, 0), + Dock.Bottom => new Thickness(0, 0, 0, InitialOffset + (double)value), + _ => Binding.DoNothing + }; + + public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) => throw new NotImplementedException(); +} diff --git a/MaterialDesignThemes.Wpf/Converters/DrawerOffsetConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/DrawerOffsetConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/DrawerOffsetConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/DrawerOffsetConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/EqualityToVisibilityConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/EqualityToVisibilityConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/EqualityToVisibilityConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/EqualityToVisibilityConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/ExpanderRotateAngleConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/ExpanderRotateAngleConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/ExpanderRotateAngleConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/ExpanderRotateAngleConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/FallbackBrushConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/FallbackBrushConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/FallbackBrushConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/FallbackBrushConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/FirstNonNullConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/FirstNonNullConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/FirstNonNullConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/FirstNonNullConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/FloatingHintContainerMarginConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/FloatingHintContainerMarginConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/FloatingHintContainerMarginConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/FloatingHintContainerMarginConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/FloatingHintInitialHorizontalOffsetConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/FloatingHintInitialHorizontalOffsetConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/FloatingHintInitialHorizontalOffsetConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/FloatingHintInitialHorizontalOffsetConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/FloatingHintInitialVerticalOffsetConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/FloatingHintInitialVerticalOffsetConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/FloatingHintInitialVerticalOffsetConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/FloatingHintInitialVerticalOffsetConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/FloatingHintMarginConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/FloatingHintMarginConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/FloatingHintMarginConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/FloatingHintMarginConverter.cs diff --git a/src/MaterialDesignThemes.Wpf/Converters/FloatingHintOffsetCalculationConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/FloatingHintOffsetCalculationConverter.cs new file mode 100644 index 0000000000..030e8a9329 --- /dev/null +++ b/src/MaterialDesignThemes.Wpf/Converters/FloatingHintOffsetCalculationConverter.cs @@ -0,0 +1,65 @@ +using System.Globalization; +using System.Windows.Data; +using System.Windows.Media; + +namespace MaterialDesignThemes.Wpf.Converters; + +// TODO: This converter can be deleted when the new SmartHint approach from TextBox style is applied throughout. +internal class FloatingHintOffsetCalculationConverter : IMultiValueConverter +{ + public object Convert(object?[] values, Type targetType, object? parameter, CultureInfo culture) + { + if (values.Length > 3 && + values[3] is Point floatingOffset && + IsType(targetType) && + floatingOffset != HintAssist.DefaultFloatingOffset) + { + return floatingOffset; + } + + var fontFamily = (FontFamily)values[0]!; + double fontSize = (double)values[1]!; + double floatingScale = (double)values[2]!; + + double hintHeight = fontFamily.LineSpacing * fontSize; + double floatingHintHeight = hintHeight * floatingScale; + double offset = floatingHintHeight; + + // For the "outlined" styles, the hint should (by default) float to the outline; this needs a bit of calculation using additional input. + if (values.Length == 7 + && values[4] is double parentActualHeight + && values[5] is Thickness padding + && values[6] is VerticalAlignment verticalContentAlignment) + { + switch (verticalContentAlignment) + { + case VerticalAlignment.Top: + case VerticalAlignment.Stretch: + offset = (floatingHintHeight / 2) + padding.Top; + break; + case VerticalAlignment.Center: + offset = (floatingHintHeight / 2) + (parentActualHeight - padding.Top) / 2; + break; + case VerticalAlignment.Bottom: + offset = (floatingHintHeight / 2) + parentActualHeight - padding.Top - padding.Bottom; + break; + } + } + + if (IsType(targetType)) + { + return new Point(0, -offset); + } + + if (IsType(targetType)) + { + return new Thickness(0, offset, 0, 0); + } + + throw new NotSupportedException(targetType.FullName); + } + + public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture) => throw new NotSupportedException(); + + private bool IsType(Type type) => type == typeof(T); +} diff --git a/MaterialDesignThemes.Wpf/Converters/FloatingHintScaleTransformConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/FloatingHintScaleTransformConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/FloatingHintScaleTransformConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/FloatingHintScaleTransformConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/FloatingHintTextBlockMarginConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/FloatingHintTextBlockMarginConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/FloatingHintTextBlockMarginConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/FloatingHintTextBlockMarginConverter.cs diff --git a/src/MaterialDesignThemes.Wpf/Converters/FloatingHintTransformConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/FloatingHintTransformConverter.cs new file mode 100644 index 0000000000..3a965ed754 --- /dev/null +++ b/src/MaterialDesignThemes.Wpf/Converters/FloatingHintTransformConverter.cs @@ -0,0 +1,52 @@ +using System.Globalization; +using System.Windows.Data; +using System.Windows.Media; + +namespace MaterialDesignThemes.Wpf.Converters; + +internal class FloatingHintTransformConverter : IMultiValueConverter +{ + public bool ApplyScaleTransform { get; set; } = true; + public bool ApplyTranslateTransform { get; set; } = true; + + public object? Convert(object?[]? values, Type targetType, object? parameter, CultureInfo culture) + { + if (values?.Length != 5 + || values.Any(v => v == null) + || !double.TryParse(values[0]!.ToString(), out double scale) + || !double.TryParse(values[1]!.ToString(), out double lower) + || !double.TryParse(values[2]!.ToString(), out double upper) + || values[3] is not Point floatingOffset + || !double.TryParse(values[4]!.ToString(), out double initialVerticalOffset)) + { + return Transform.Identity; + } + + double result = upper + (lower - upper) * scale; + + var transformGroup = new TransformGroup(); + if (ApplyScaleTransform) + { + transformGroup.Children.Add(new ScaleTransform + { + ScaleX = result, + ScaleY = result + }); + } + if (ApplyTranslateTransform) + { + /* As a consequence of Math.Min() which is used below to ensure the initial offset is respected (in filled style) + the SmartHint will not be able to "float downwards". I believe this is acceptable though. + */ + transformGroup.Children.Add(new TranslateTransform + { + X = scale * floatingOffset.X, + Y = Math.Min(initialVerticalOffset, scale * floatingOffset.Y) + }); + } + return transformGroup; + } + + public object?[]? ConvertBack(object? value, Type[] targetTypes, object? parameter, CultureInfo culture) + => throw new NotImplementedException(); +} diff --git a/MaterialDesignThemes.Wpf/Converters/FloatingHintTranslateTransformConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/FloatingHintTranslateTransformConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/FloatingHintTranslateTransformConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/FloatingHintTranslateTransformConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/GridLinesVisibilityBorderToThicknessConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/GridLinesVisibilityBorderToThicknessConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/GridLinesVisibilityBorderToThicknessConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/GridLinesVisibilityBorderToThicknessConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/HintProxyFabricConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/HintProxyFabricConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/HintProxyFabricConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/HintProxyFabricConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/HorizontalThicknessConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/HorizontalThicknessConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/HorizontalThicknessConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/HorizontalThicknessConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/HsbLinearGradientConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/HsbLinearGradientConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/HsbLinearGradientConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/HsbLinearGradientConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/HsbToColorConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/HsbToColorConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/HsbToColorConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/HsbToColorConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/InvertBooleanConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/InvertBooleanConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/InvertBooleanConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/InvertBooleanConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/IsDarkConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/IsDarkConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/IsDarkConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/IsDarkConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/IsTransparentBrushConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/IsTransparentBrushConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/IsTransparentBrushConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/IsTransparentBrushConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/ListViewItemContainerStyleConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/ListViewItemContainerStyleConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/ListViewItemContainerStyleConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/ListViewItemContainerStyleConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/MathConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/MathConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/MathConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/MathConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/MathMultipleConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/MathMultipleConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/MathMultipleConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/MathMultipleConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/MathOperation.cs b/src/MaterialDesignThemes.Wpf/Converters/MathOperation.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/MathOperation.cs rename to src/MaterialDesignThemes.Wpf/Converters/MathOperation.cs diff --git a/MaterialDesignThemes.Wpf/Converters/NonDefaultThicknessConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/NonDefaultThicknessConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/NonDefaultThicknessConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/NonDefaultThicknessConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/NotConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/NotConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/NotConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/NotConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/NotZeroConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/NotZeroConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/NotZeroConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/NotZeroConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/NotZeroToVisibilityConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/NotZeroToVisibilityConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/NotZeroToVisibilityConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/NotZeroToVisibilityConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/NullableDateTimeToCurrentDateConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/NullableDateTimeToCurrentDateConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/NullableDateTimeToCurrentDateConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/NullableDateTimeToCurrentDateConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/NullableToVisibilityConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/NullableToVisibilityConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/NullableToVisibilityConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/NullableToVisibilityConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/OutlinedDateTimePickerActiveBorderThicknessConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/OutlinedDateTimePickerActiveBorderThicknessConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/OutlinedDateTimePickerActiveBorderThicknessConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/OutlinedDateTimePickerActiveBorderThicknessConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/OutlinedStyleActiveBorderMarginCompensationConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/OutlinedStyleActiveBorderMarginCompensationConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/OutlinedStyleActiveBorderMarginCompensationConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/OutlinedStyleActiveBorderMarginCompensationConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/OutlinedStyleFloatingHintBackgroundConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/OutlinedStyleFloatingHintBackgroundConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/OutlinedStyleFloatingHintBackgroundConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/OutlinedStyleFloatingHintBackgroundConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/PointValueConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/PointValueConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/PointValueConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/PointValueConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/RangeLengthConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/RangeLengthConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/RangeLengthConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/RangeLengthConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/RemoveAlphaBrushConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/RemoveAlphaBrushConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/RemoveAlphaBrushConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/RemoveAlphaBrushConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/ShadowConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/ShadowConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/ShadowConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/ShadowConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/ShadowOpacityMaskConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/ShadowOpacityMaskConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/ShadowOpacityMaskConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/ShadowOpacityMaskConverter.cs diff --git a/src/MaterialDesignThemes.Wpf/Converters/SizeToRectConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/SizeToRectConverter.cs new file mode 100644 index 0000000000..f3441d8adf --- /dev/null +++ b/src/MaterialDesignThemes.Wpf/Converters/SizeToRectConverter.cs @@ -0,0 +1,37 @@ +using System.Globalization; +using System.Windows.Data; + +namespace MaterialDesignThemes.Wpf.Converters; + +[Obsolete("This will be removed in the 5.0 release as it is no longer used")] +public class CardClipConverter : IMultiValueConverter +{ + /// + /// 1 - Content presenter render size, + /// 2 - Clipping border padding (main control padding) + /// + /// + /// + /// + /// + /// + public object? Convert(object?[]? values, Type targetType, object? parameter, CultureInfo culture) + { + if (values?.Length != 2 || values[0] is not Size || values[1] is not Thickness) + return Binding.DoNothing; + + var size = (Size)values[0]!; + var farPoint = new Point( + Math.Max(0, size.Width), + Math.Max(0, size.Height)); + var padding = (Thickness)values[1]!; + farPoint.Offset(padding.Left + padding.Right, padding.Top + padding.Bottom); + + return new Rect( + new Point(), + new Point(farPoint.X, farPoint.Y)); + } + + public object?[]? ConvertBack(object? value, Type[] targetTypes, object? parameter, CultureInfo culture) + => null; +} diff --git a/MaterialDesignThemes.Wpf/Converters/SliderToolTipConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/SliderToolTipConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/SliderToolTipConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/SliderToolTipConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/SliderValueLabelPositionConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/SliderValueLabelPositionConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/SliderValueLabelPositionConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/SliderValueLabelPositionConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/SnackbarActionButtonPlacementModeConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/SnackbarActionButtonPlacementModeConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/SnackbarActionButtonPlacementModeConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/SnackbarActionButtonPlacementModeConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/SnackbarMessageTypeConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/SnackbarMessageTypeConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/SnackbarMessageTypeConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/SnackbarMessageTypeConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/StringLengthValueConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/StringLengthValueConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/StringLengthValueConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/StringLengthValueConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/TextFieldClearButtonVisibilityConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/TextFieldClearButtonVisibilityConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/TextFieldClearButtonVisibilityConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/TextFieldClearButtonVisibilityConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/TextFieldHintVisibilityConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/TextFieldHintVisibilityConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/TextFieldHintVisibilityConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/TextFieldHintVisibilityConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/TextFieldPrefixTextVisibilityConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/TextFieldPrefixTextVisibilityConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/TextFieldPrefixTextVisibilityConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/TextFieldPrefixTextVisibilityConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/ThicknessCloneConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/ThicknessCloneConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/ThicknessCloneConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/ThicknessCloneConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/TimeToVisibilityConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/TimeToVisibilityConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/TimeToVisibilityConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/TimeToVisibilityConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/ToolBarOverflowButtonVisibilityConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/ToolBarOverflowButtonVisibilityConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/ToolBarOverflowButtonVisibilityConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/ToolBarOverflowButtonVisibilityConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/TopThicknessConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/TopThicknessConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/TopThicknessConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/TopThicknessConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/TreeListViewIndentConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/TreeListViewIndentConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/TreeListViewIndentConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/TreeListViewIndentConverter.cs diff --git a/MaterialDesignThemes.Wpf/Converters/VerticalAlignmentConverter.cs b/src/MaterialDesignThemes.Wpf/Converters/VerticalAlignmentConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Converters/VerticalAlignmentConverter.cs rename to src/MaterialDesignThemes.Wpf/Converters/VerticalAlignmentConverter.cs diff --git a/MaterialDesignThemes.Wpf/CustomColorTheme.cs b/src/MaterialDesignThemes.Wpf/CustomColorTheme.cs similarity index 100% rename from MaterialDesignThemes.Wpf/CustomColorTheme.cs rename to src/MaterialDesignThemes.Wpf/CustomColorTheme.cs diff --git a/MaterialDesignThemes.Wpf/CustomPopupPlacementCallbackHelper.cs b/src/MaterialDesignThemes.Wpf/CustomPopupPlacementCallbackHelper.cs similarity index 100% rename from MaterialDesignThemes.Wpf/CustomPopupPlacementCallbackHelper.cs rename to src/MaterialDesignThemes.Wpf/CustomPopupPlacementCallbackHelper.cs diff --git a/MaterialDesignThemes.Wpf/DataGridAssist.cs b/src/MaterialDesignThemes.Wpf/DataGridAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/DataGridAssist.cs rename to src/MaterialDesignThemes.Wpf/DataGridAssist.cs diff --git a/MaterialDesignThemes.Wpf/DataGridComboBoxColumn.cs b/src/MaterialDesignThemes.Wpf/DataGridComboBoxColumn.cs similarity index 100% rename from MaterialDesignThemes.Wpf/DataGridComboBoxColumn.cs rename to src/MaterialDesignThemes.Wpf/DataGridComboBoxColumn.cs diff --git a/MaterialDesignThemes.Wpf/DataGridTextColumn.cs b/src/MaterialDesignThemes.Wpf/DataGridTextColumn.cs similarity index 100% rename from MaterialDesignThemes.Wpf/DataGridTextColumn.cs rename to src/MaterialDesignThemes.Wpf/DataGridTextColumn.cs diff --git a/MaterialDesignThemes.Wpf/DatePickerAssist.cs b/src/MaterialDesignThemes.Wpf/DatePickerAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/DatePickerAssist.cs rename to src/MaterialDesignThemes.Wpf/DatePickerAssist.cs diff --git a/MaterialDesignThemes.Wpf/DateTimeEx.cs b/src/MaterialDesignThemes.Wpf/DateTimeEx.cs similarity index 100% rename from MaterialDesignThemes.Wpf/DateTimeEx.cs rename to src/MaterialDesignThemes.Wpf/DateTimeEx.cs diff --git a/MaterialDesignThemes.Wpf/DialogClosedEventArgs.cs b/src/MaterialDesignThemes.Wpf/DialogClosedEventArgs.cs similarity index 100% rename from MaterialDesignThemes.Wpf/DialogClosedEventArgs.cs rename to src/MaterialDesignThemes.Wpf/DialogClosedEventArgs.cs diff --git a/MaterialDesignThemes.Wpf/DialogClosedEventHandler.cs b/src/MaterialDesignThemes.Wpf/DialogClosedEventHandler.cs similarity index 100% rename from MaterialDesignThemes.Wpf/DialogClosedEventHandler.cs rename to src/MaterialDesignThemes.Wpf/DialogClosedEventHandler.cs diff --git a/MaterialDesignThemes.Wpf/DialogClosingEventArgs.cs b/src/MaterialDesignThemes.Wpf/DialogClosingEventArgs.cs similarity index 100% rename from MaterialDesignThemes.Wpf/DialogClosingEventArgs.cs rename to src/MaterialDesignThemes.Wpf/DialogClosingEventArgs.cs diff --git a/MaterialDesignThemes.Wpf/DialogClosingEventHandler.cs b/src/MaterialDesignThemes.Wpf/DialogClosingEventHandler.cs similarity index 100% rename from MaterialDesignThemes.Wpf/DialogClosingEventHandler.cs rename to src/MaterialDesignThemes.Wpf/DialogClosingEventHandler.cs diff --git a/MaterialDesignThemes.Wpf/DialogHost.cs b/src/MaterialDesignThemes.Wpf/DialogHost.cs similarity index 100% rename from MaterialDesignThemes.Wpf/DialogHost.cs rename to src/MaterialDesignThemes.Wpf/DialogHost.cs diff --git a/MaterialDesignThemes.Wpf/DialogHostEx.cs b/src/MaterialDesignThemes.Wpf/DialogHostEx.cs similarity index 100% rename from MaterialDesignThemes.Wpf/DialogHostEx.cs rename to src/MaterialDesignThemes.Wpf/DialogHostEx.cs diff --git a/MaterialDesignThemes.Wpf/DialogOpenedEventArgs.cs b/src/MaterialDesignThemes.Wpf/DialogOpenedEventArgs.cs similarity index 100% rename from MaterialDesignThemes.Wpf/DialogOpenedEventArgs.cs rename to src/MaterialDesignThemes.Wpf/DialogOpenedEventArgs.cs diff --git a/MaterialDesignThemes.Wpf/DialogOpenedEventHandler.cs b/src/MaterialDesignThemes.Wpf/DialogOpenedEventHandler.cs similarity index 100% rename from MaterialDesignThemes.Wpf/DialogOpenedEventHandler.cs rename to src/MaterialDesignThemes.Wpf/DialogOpenedEventHandler.cs diff --git a/MaterialDesignThemes.Wpf/DialogSession.cs b/src/MaterialDesignThemes.Wpf/DialogSession.cs similarity index 100% rename from MaterialDesignThemes.Wpf/DialogSession.cs rename to src/MaterialDesignThemes.Wpf/DialogSession.cs diff --git a/MaterialDesignThemes.Wpf/DpiHelper.cs b/src/MaterialDesignThemes.Wpf/DpiHelper.cs similarity index 100% rename from MaterialDesignThemes.Wpf/DpiHelper.cs rename to src/MaterialDesignThemes.Wpf/DpiHelper.cs diff --git a/MaterialDesignThemes.Wpf/DrawerClosingEventArgs.cs b/src/MaterialDesignThemes.Wpf/DrawerClosingEventArgs.cs similarity index 100% rename from MaterialDesignThemes.Wpf/DrawerClosingEventArgs.cs rename to src/MaterialDesignThemes.Wpf/DrawerClosingEventArgs.cs diff --git a/MaterialDesignThemes.Wpf/DrawerHost.cs b/src/MaterialDesignThemes.Wpf/DrawerHost.cs similarity index 100% rename from MaterialDesignThemes.Wpf/DrawerHost.cs rename to src/MaterialDesignThemes.Wpf/DrawerHost.cs diff --git a/MaterialDesignThemes.Wpf/DrawerHostOpenMode.cs b/src/MaterialDesignThemes.Wpf/DrawerHostOpenMode.cs similarity index 100% rename from MaterialDesignThemes.Wpf/DrawerHostOpenMode.cs rename to src/MaterialDesignThemes.Wpf/DrawerHostOpenMode.cs diff --git a/MaterialDesignThemes.Wpf/DrawerOpenedEventArgs.cs b/src/MaterialDesignThemes.Wpf/DrawerOpenedEventArgs.cs similarity index 100% rename from MaterialDesignThemes.Wpf/DrawerOpenedEventArgs.cs rename to src/MaterialDesignThemes.Wpf/DrawerOpenedEventArgs.cs diff --git a/MaterialDesignThemes.Wpf/ElevationAssist.cs b/src/MaterialDesignThemes.Wpf/ElevationAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ElevationAssist.cs rename to src/MaterialDesignThemes.Wpf/ElevationAssist.cs diff --git a/MaterialDesignThemes.Wpf/ExpanderAssist.cs b/src/MaterialDesignThemes.Wpf/ExpanderAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ExpanderAssist.cs rename to src/MaterialDesignThemes.Wpf/ExpanderAssist.cs diff --git a/MaterialDesignThemes.Wpf/Flipper.cs b/src/MaterialDesignThemes.Wpf/Flipper.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Flipper.cs rename to src/MaterialDesignThemes.Wpf/Flipper.cs diff --git a/MaterialDesignThemes.Wpf/FlipperAssist.cs b/src/MaterialDesignThemes.Wpf/FlipperAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/FlipperAssist.cs rename to src/MaterialDesignThemes.Wpf/FlipperAssist.cs diff --git a/MaterialDesignThemes.Wpf/FlipperClassic.cs b/src/MaterialDesignThemes.Wpf/FlipperClassic.cs similarity index 100% rename from MaterialDesignThemes.Wpf/FlipperClassic.cs rename to src/MaterialDesignThemes.Wpf/FlipperClassic.cs diff --git a/MaterialDesignThemes.Wpf/FloatingHintHorizontalAlignment.cs b/src/MaterialDesignThemes.Wpf/FloatingHintHorizontalAlignment.cs similarity index 100% rename from MaterialDesignThemes.Wpf/FloatingHintHorizontalAlignment.cs rename to src/MaterialDesignThemes.Wpf/FloatingHintHorizontalAlignment.cs diff --git a/MaterialDesignThemes.Wpf/GridViewColumnThumb.cs b/src/MaterialDesignThemes.Wpf/GridViewColumnThumb.cs similarity index 100% rename from MaterialDesignThemes.Wpf/GridViewColumnThumb.cs rename to src/MaterialDesignThemes.Wpf/GridViewColumnThumb.cs diff --git a/MaterialDesignThemes.Wpf/HintAssist.cs b/src/MaterialDesignThemes.Wpf/HintAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/HintAssist.cs rename to src/MaterialDesignThemes.Wpf/HintAssist.cs diff --git a/MaterialDesignThemes.Wpf/HintProxyFabric.ComboBox.cs b/src/MaterialDesignThemes.Wpf/HintProxyFabric.ComboBox.cs similarity index 100% rename from MaterialDesignThemes.Wpf/HintProxyFabric.ComboBox.cs rename to src/MaterialDesignThemes.Wpf/HintProxyFabric.ComboBox.cs diff --git a/MaterialDesignThemes.Wpf/HintProxyFabric.PasswordBox.cs b/src/MaterialDesignThemes.Wpf/HintProxyFabric.PasswordBox.cs similarity index 100% rename from MaterialDesignThemes.Wpf/HintProxyFabric.PasswordBox.cs rename to src/MaterialDesignThemes.Wpf/HintProxyFabric.PasswordBox.cs diff --git a/MaterialDesignThemes.Wpf/HintProxyFabric.RichTextBox.cs b/src/MaterialDesignThemes.Wpf/HintProxyFabric.RichTextBox.cs similarity index 100% rename from MaterialDesignThemes.Wpf/HintProxyFabric.RichTextBox.cs rename to src/MaterialDesignThemes.Wpf/HintProxyFabric.RichTextBox.cs diff --git a/MaterialDesignThemes.Wpf/HintProxyFabric.TextBox.cs b/src/MaterialDesignThemes.Wpf/HintProxyFabric.TextBox.cs similarity index 100% rename from MaterialDesignThemes.Wpf/HintProxyFabric.TextBox.cs rename to src/MaterialDesignThemes.Wpf/HintProxyFabric.TextBox.cs diff --git a/MaterialDesignThemes.Wpf/HintProxyFabric.cs b/src/MaterialDesignThemes.Wpf/HintProxyFabric.cs similarity index 100% rename from MaterialDesignThemes.Wpf/HintProxyFabric.cs rename to src/MaterialDesignThemes.Wpf/HintProxyFabric.cs diff --git a/MaterialDesignThemes.Wpf/IHintProxy.cs b/src/MaterialDesignThemes.Wpf/IHintProxy.cs similarity index 100% rename from MaterialDesignThemes.Wpf/IHintProxy.cs rename to src/MaterialDesignThemes.Wpf/IHintProxy.cs diff --git a/MaterialDesignThemes.Wpf/IMaterialDesignThemeDictionary.cs b/src/MaterialDesignThemes.Wpf/IMaterialDesignThemeDictionary.cs similarity index 100% rename from MaterialDesignThemes.Wpf/IMaterialDesignThemeDictionary.cs rename to src/MaterialDesignThemes.Wpf/IMaterialDesignThemeDictionary.cs diff --git a/MaterialDesignThemes.Wpf/ISnackbarMessageQueue.cs b/src/MaterialDesignThemes.Wpf/ISnackbarMessageQueue.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ISnackbarMessageQueue.cs rename to src/MaterialDesignThemes.Wpf/ISnackbarMessageQueue.cs diff --git a/MaterialDesignThemes.Wpf/IThemeManager.cs b/src/MaterialDesignThemes.Wpf/IThemeManager.cs similarity index 100% rename from MaterialDesignThemes.Wpf/IThemeManager.cs rename to src/MaterialDesignThemes.Wpf/IThemeManager.cs diff --git a/MaterialDesignThemes.Wpf/Internal/ClearText.cs b/src/MaterialDesignThemes.Wpf/Internal/ClearText.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Internal/ClearText.cs rename to src/MaterialDesignThemes.Wpf/Internal/ClearText.cs diff --git a/MaterialDesignThemes.Wpf/Internal/Shims/Index.cs b/src/MaterialDesignThemes.Wpf/Internal/Shims/Index.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Internal/Shims/Index.cs rename to src/MaterialDesignThemes.Wpf/Internal/Shims/Index.cs diff --git a/MaterialDesignThemes.Wpf/Internal/TreeListViewContentPresenter.cs b/src/MaterialDesignThemes.Wpf/Internal/TreeListViewContentPresenter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Internal/TreeListViewContentPresenter.cs rename to src/MaterialDesignThemes.Wpf/Internal/TreeListViewContentPresenter.cs diff --git a/MaterialDesignThemes.Wpf/Internal/TreeListViewItemsCollection.cs b/src/MaterialDesignThemes.Wpf/Internal/TreeListViewItemsCollection.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Internal/TreeListViewItemsCollection.cs rename to src/MaterialDesignThemes.Wpf/Internal/TreeListViewItemsCollection.cs diff --git a/MaterialDesignThemes.Wpf/ListBoxAssist.cs b/src/MaterialDesignThemes.Wpf/ListBoxAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ListBoxAssist.cs rename to src/MaterialDesignThemes.Wpf/ListBoxAssist.cs diff --git a/MaterialDesignThemes.Wpf/ListBoxItemAssist.cs b/src/MaterialDesignThemes.Wpf/ListBoxItemAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ListBoxItemAssist.cs rename to src/MaterialDesignThemes.Wpf/ListBoxItemAssist.cs diff --git a/MaterialDesignThemes.Wpf/ListSortDirectionIndicator.cs b/src/MaterialDesignThemes.Wpf/ListSortDirectionIndicator.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ListSortDirectionIndicator.cs rename to src/MaterialDesignThemes.Wpf/ListSortDirectionIndicator.cs diff --git a/MaterialDesignThemes.Wpf/ListViewAssist.cs b/src/MaterialDesignThemes.Wpf/ListViewAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ListViewAssist.cs rename to src/MaterialDesignThemes.Wpf/ListViewAssist.cs diff --git a/MaterialDesignThemes.Wpf/MaterialDateDisplay.cs b/src/MaterialDesignThemes.Wpf/MaterialDateDisplay.cs similarity index 100% rename from MaterialDesignThemes.Wpf/MaterialDateDisplay.cs rename to src/MaterialDesignThemes.Wpf/MaterialDateDisplay.cs diff --git a/MaterialDesignThemes.Wpf/MaterialDesignFont.cs b/src/MaterialDesignThemes.Wpf/MaterialDesignFont.cs similarity index 100% rename from MaterialDesignThemes.Wpf/MaterialDesignFont.cs rename to src/MaterialDesignThemes.Wpf/MaterialDesignFont.cs diff --git a/MaterialDesignThemes.Wpf/MaterialDesignThemes.Wpf.csproj b/src/MaterialDesignThemes.Wpf/MaterialDesignThemes.Wpf.csproj similarity index 100% rename from MaterialDesignThemes.Wpf/MaterialDesignThemes.Wpf.csproj rename to src/MaterialDesignThemes.Wpf/MaterialDesignThemes.Wpf.csproj diff --git a/MaterialDesignThemes.nuspec b/src/MaterialDesignThemes.Wpf/MaterialDesignThemes.nuspec similarity index 64% rename from MaterialDesignThemes.nuspec rename to src/MaterialDesignThemes.Wpf/MaterialDesignThemes.nuspec index b5dd06a055..e06e33ea1e 100644 --- a/MaterialDesignThemes.nuspec +++ b/src/MaterialDesignThemes.Wpf/MaterialDesignThemes.nuspec @@ -10,7 +10,8 @@ https://github.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit http://materialdesigninxaml.net/images/MD4XAML32.png false - ResourceDictionary instances containing Material Design templates and styles for WPF controls in .NET. + ResourceDictionary instances containing Material Design templates and styles for + WPF controls in .NET. docs\README.md https://github.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/releases $copyright$ @@ -31,12 +32,17 @@ - - - - - - - + + + + + + + - + \ No newline at end of file diff --git a/MaterialDesignThemes.Wpf/MaterialDesignThemes.targets b/src/MaterialDesignThemes.Wpf/MaterialDesignThemes.targets similarity index 100% rename from MaterialDesignThemes.Wpf/MaterialDesignThemes.targets rename to src/MaterialDesignThemes.Wpf/MaterialDesignThemes.targets diff --git a/MaterialDesignThemes.Wpf/MenuAssist.cs b/src/MaterialDesignThemes.Wpf/MenuAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/MenuAssist.cs rename to src/MaterialDesignThemes.Wpf/MenuAssist.cs diff --git a/MaterialDesignThemes.Wpf/MenuItemAssist.cs b/src/MaterialDesignThemes.Wpf/MenuItemAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/MenuItemAssist.cs rename to src/MaterialDesignThemes.Wpf/MenuItemAssist.cs diff --git a/MaterialDesignThemes.Wpf/MessageQueueExtension.cs b/src/MaterialDesignThemes.Wpf/MessageQueueExtension.cs similarity index 100% rename from MaterialDesignThemes.Wpf/MessageQueueExtension.cs rename to src/MaterialDesignThemes.Wpf/MessageQueueExtension.cs diff --git a/MaterialDesignThemes.Wpf/NavigationBarAssist.cs b/src/MaterialDesignThemes.Wpf/NavigationBarAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/NavigationBarAssist.cs rename to src/MaterialDesignThemes.Wpf/NavigationBarAssist.cs diff --git a/MaterialDesignThemes.Wpf/NavigationDrawerAssist.cs b/src/MaterialDesignThemes.Wpf/NavigationDrawerAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/NavigationDrawerAssist.cs rename to src/MaterialDesignThemes.Wpf/NavigationDrawerAssist.cs diff --git a/MaterialDesignThemes.Wpf/NavigationRailAssist.cs b/src/MaterialDesignThemes.Wpf/NavigationRailAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/NavigationRailAssist.cs rename to src/MaterialDesignThemes.Wpf/NavigationRailAssist.cs diff --git a/MaterialDesignThemes.Wpf/NotoFontExtension.cs b/src/MaterialDesignThemes.Wpf/NotoFontExtension.cs similarity index 100% rename from MaterialDesignThemes.Wpf/NotoFontExtension.cs rename to src/MaterialDesignThemes.Wpf/NotoFontExtension.cs diff --git a/MaterialDesignThemes.Wpf/PackIcon.cs b/src/MaterialDesignThemes.Wpf/PackIcon.cs similarity index 100% rename from MaterialDesignThemes.Wpf/PackIcon.cs rename to src/MaterialDesignThemes.Wpf/PackIcon.cs diff --git a/MaterialDesignThemes.Wpf/PackIconDataFactory.cs b/src/MaterialDesignThemes.Wpf/PackIconDataFactory.cs similarity index 100% rename from MaterialDesignThemes.Wpf/PackIconDataFactory.cs rename to src/MaterialDesignThemes.Wpf/PackIconDataFactory.cs diff --git a/MaterialDesignThemes.Wpf/PackIconExtension.cs b/src/MaterialDesignThemes.Wpf/PackIconExtension.cs similarity index 100% rename from MaterialDesignThemes.Wpf/PackIconExtension.cs rename to src/MaterialDesignThemes.Wpf/PackIconExtension.cs diff --git a/MaterialDesignThemes.Wpf/PackIconKind.cs b/src/MaterialDesignThemes.Wpf/PackIconKind.cs similarity index 100% rename from MaterialDesignThemes.Wpf/PackIconKind.cs rename to src/MaterialDesignThemes.Wpf/PackIconKind.cs diff --git a/MaterialDesignThemes.Wpf/Palette.cs b/src/MaterialDesignThemes.Wpf/Palette.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Palette.cs rename to src/MaterialDesignThemes.Wpf/Palette.cs diff --git a/MaterialDesignThemes.Wpf/PaletteHelper.cs b/src/MaterialDesignThemes.Wpf/PaletteHelper.cs similarity index 100% rename from MaterialDesignThemes.Wpf/PaletteHelper.cs rename to src/MaterialDesignThemes.Wpf/PaletteHelper.cs diff --git a/MaterialDesignThemes.Wpf/PasswordBoxAssist.cs b/src/MaterialDesignThemes.Wpf/PasswordBoxAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/PasswordBoxAssist.cs rename to src/MaterialDesignThemes.Wpf/PasswordBoxAssist.cs diff --git a/MaterialDesignThemes.Wpf/Plane3D.cs b/src/MaterialDesignThemes.Wpf/Plane3D.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Plane3D.cs rename to src/MaterialDesignThemes.Wpf/Plane3D.cs diff --git a/MaterialDesignThemes.Wpf/PopupBox.cs b/src/MaterialDesignThemes.Wpf/PopupBox.cs similarity index 100% rename from MaterialDesignThemes.Wpf/PopupBox.cs rename to src/MaterialDesignThemes.Wpf/PopupBox.cs diff --git a/MaterialDesignThemes.Wpf/PopupEx.cs b/src/MaterialDesignThemes.Wpf/PopupEx.cs similarity index 100% rename from MaterialDesignThemes.Wpf/PopupEx.cs rename to src/MaterialDesignThemes.Wpf/PopupEx.cs diff --git a/MaterialDesignThemes.Wpf/PrefixSuffixHintBehavior.cs b/src/MaterialDesignThemes.Wpf/PrefixSuffixHintBehavior.cs similarity index 100% rename from MaterialDesignThemes.Wpf/PrefixSuffixHintBehavior.cs rename to src/MaterialDesignThemes.Wpf/PrefixSuffixHintBehavior.cs diff --git a/MaterialDesignThemes.Wpf/PrefixSuffixVisibility.cs b/src/MaterialDesignThemes.Wpf/PrefixSuffixVisibility.cs similarity index 100% rename from MaterialDesignThemes.Wpf/PrefixSuffixVisibility.cs rename to src/MaterialDesignThemes.Wpf/PrefixSuffixVisibility.cs diff --git a/MaterialDesignThemes.Wpf/Properties/AssemblyInfo.cs b/src/MaterialDesignThemes.Wpf/Properties/AssemblyInfo.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Properties/AssemblyInfo.cs rename to src/MaterialDesignThemes.Wpf/Properties/AssemblyInfo.cs diff --git a/MaterialDesignThemes.Wpf/Properties/Resources.Designer.cs b/src/MaterialDesignThemes.Wpf/Properties/Resources.Designer.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Properties/Resources.Designer.cs rename to src/MaterialDesignThemes.Wpf/Properties/Resources.Designer.cs diff --git a/MaterialDesignThemes.Wpf/Properties/Resources.resx b/src/MaterialDesignThemes.Wpf/Properties/Resources.resx similarity index 100% rename from MaterialDesignThemes.Wpf/Properties/Resources.resx rename to src/MaterialDesignThemes.Wpf/Properties/Resources.resx diff --git a/MaterialDesignThemes.Wpf/Properties/Settings.Designer.cs b/src/MaterialDesignThemes.Wpf/Properties/Settings.Designer.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Properties/Settings.Designer.cs rename to src/MaterialDesignThemes.Wpf/Properties/Settings.Designer.cs diff --git a/MaterialDesignThemes.Wpf/Properties/Settings.settings b/src/MaterialDesignThemes.Wpf/Properties/Settings.settings similarity index 100% rename from MaterialDesignThemes.Wpf/Properties/Settings.settings rename to src/MaterialDesignThemes.Wpf/Properties/Settings.settings diff --git a/MaterialDesignThemes.Wpf/RatingBar.cs b/src/MaterialDesignThemes.Wpf/RatingBar.cs similarity index 100% rename from MaterialDesignThemes.Wpf/RatingBar.cs rename to src/MaterialDesignThemes.Wpf/RatingBar.cs diff --git a/MaterialDesignThemes.Wpf/RatingBarButton.cs b/src/MaterialDesignThemes.Wpf/RatingBarButton.cs similarity index 100% rename from MaterialDesignThemes.Wpf/RatingBarButton.cs rename to src/MaterialDesignThemes.Wpf/RatingBarButton.cs diff --git a/MaterialDesignThemes.Wpf/ResourceDictionaryExtensions.cs b/src/MaterialDesignThemes.Wpf/ResourceDictionaryExtensions.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ResourceDictionaryExtensions.cs rename to src/MaterialDesignThemes.Wpf/ResourceDictionaryExtensions.cs diff --git a/MaterialDesignThemes.Wpf/ResourceDictionaryExtensions.g.cs b/src/MaterialDesignThemes.Wpf/ResourceDictionaryExtensions.g.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ResourceDictionaryExtensions.g.cs rename to src/MaterialDesignThemes.Wpf/ResourceDictionaryExtensions.g.cs diff --git a/MaterialDesignThemes.Wpf/Resources/Noto/NotoSans-Bold.ttf b/src/MaterialDesignThemes.Wpf/Resources/Noto/NotoSans-Bold.ttf similarity index 100% rename from MaterialDesignThemes.Wpf/Resources/Noto/NotoSans-Bold.ttf rename to src/MaterialDesignThemes.Wpf/Resources/Noto/NotoSans-Bold.ttf diff --git a/MaterialDesignThemes.Wpf/Resources/Noto/NotoSans-BoldItalic.ttf b/src/MaterialDesignThemes.Wpf/Resources/Noto/NotoSans-BoldItalic.ttf similarity index 100% rename from MaterialDesignThemes.Wpf/Resources/Noto/NotoSans-BoldItalic.ttf rename to src/MaterialDesignThemes.Wpf/Resources/Noto/NotoSans-BoldItalic.ttf diff --git a/MaterialDesignThemes.Wpf/Resources/Noto/NotoSans-Italic.ttf b/src/MaterialDesignThemes.Wpf/Resources/Noto/NotoSans-Italic.ttf similarity index 100% rename from MaterialDesignThemes.Wpf/Resources/Noto/NotoSans-Italic.ttf rename to src/MaterialDesignThemes.Wpf/Resources/Noto/NotoSans-Italic.ttf diff --git a/MaterialDesignThemes.Wpf/Resources/Noto/NotoSans-Regular.ttf b/src/MaterialDesignThemes.Wpf/Resources/Noto/NotoSans-Regular.ttf similarity index 100% rename from MaterialDesignThemes.Wpf/Resources/Noto/NotoSans-Regular.ttf rename to src/MaterialDesignThemes.Wpf/Resources/Noto/NotoSans-Regular.ttf diff --git a/MaterialDesignThemes.Wpf/Resources/Noto/OFL.txt b/src/MaterialDesignThemes.Wpf/Resources/Noto/OFL.txt similarity index 100% rename from MaterialDesignThemes.Wpf/Resources/Noto/OFL.txt rename to src/MaterialDesignThemes.Wpf/Resources/Noto/OFL.txt diff --git a/MaterialDesignThemes.Uwp/Assets/Roboto/Roboto-Black.ttf b/src/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Black.ttf similarity index 100% rename from MaterialDesignThemes.Uwp/Assets/Roboto/Roboto-Black.ttf rename to src/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Black.ttf diff --git a/MaterialDesignThemes.Uwp/Assets/Roboto/Roboto-BlackItalic.ttf b/src/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-BlackItalic.ttf similarity index 100% rename from MaterialDesignThemes.Uwp/Assets/Roboto/Roboto-BlackItalic.ttf rename to src/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-BlackItalic.ttf diff --git a/MaterialDesignThemes.Uwp/Assets/Roboto/Roboto-Bold.ttf b/src/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Bold.ttf similarity index 100% rename from MaterialDesignThemes.Uwp/Assets/Roboto/Roboto-Bold.ttf rename to src/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Bold.ttf diff --git a/MaterialDesignThemes.Uwp/Assets/Roboto/Roboto-BoldItalic.ttf b/src/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-BoldItalic.ttf similarity index 100% rename from MaterialDesignThemes.Uwp/Assets/Roboto/Roboto-BoldItalic.ttf rename to src/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-BoldItalic.ttf diff --git a/MaterialDesignThemes.Uwp/Assets/Roboto/Roboto-Italic.ttf b/src/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Italic.ttf similarity index 100% rename from MaterialDesignThemes.Uwp/Assets/Roboto/Roboto-Italic.ttf rename to src/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Italic.ttf diff --git a/MaterialDesignThemes.Uwp/Assets/Roboto/Roboto-Light.ttf b/src/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Light.ttf similarity index 100% rename from MaterialDesignThemes.Uwp/Assets/Roboto/Roboto-Light.ttf rename to src/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Light.ttf diff --git a/MaterialDesignThemes.Uwp/Assets/Roboto/Roboto-LightItalic.ttf b/src/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-LightItalic.ttf similarity index 100% rename from MaterialDesignThemes.Uwp/Assets/Roboto/Roboto-LightItalic.ttf rename to src/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-LightItalic.ttf diff --git a/MaterialDesignThemes.Uwp/Assets/Roboto/Roboto-Medium.ttf b/src/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Medium.ttf similarity index 100% rename from MaterialDesignThemes.Uwp/Assets/Roboto/Roboto-Medium.ttf rename to src/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Medium.ttf diff --git a/MaterialDesignThemes.Uwp/Assets/Roboto/Roboto-MediumItalic.ttf b/src/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-MediumItalic.ttf similarity index 100% rename from MaterialDesignThemes.Uwp/Assets/Roboto/Roboto-MediumItalic.ttf rename to src/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-MediumItalic.ttf diff --git a/MaterialDesignThemes.Uwp/Assets/Roboto/Roboto-Regular.ttf b/src/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Regular.ttf similarity index 100% rename from MaterialDesignThemes.Uwp/Assets/Roboto/Roboto-Regular.ttf rename to src/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Regular.ttf diff --git a/MaterialDesignThemes.Uwp/Assets/Roboto/Roboto-Thin.ttf b/src/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Thin.ttf similarity index 100% rename from MaterialDesignThemes.Uwp/Assets/Roboto/Roboto-Thin.ttf rename to src/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-Thin.ttf diff --git a/MaterialDesignThemes.Uwp/Assets/Roboto/Roboto-ThinItalic.ttf b/src/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-ThinItalic.ttf similarity index 100% rename from MaterialDesignThemes.Uwp/Assets/Roboto/Roboto-ThinItalic.ttf rename to src/MaterialDesignThemes.Wpf/Resources/Roboto/Roboto-ThinItalic.ttf diff --git a/MaterialDesignThemes.Uwp/Assets/Roboto/RobotoCondensed-Bold.ttf b/src/MaterialDesignThemes.Wpf/Resources/Roboto/RobotoCondensed-Bold.ttf similarity index 100% rename from MaterialDesignThemes.Uwp/Assets/Roboto/RobotoCondensed-Bold.ttf rename to src/MaterialDesignThemes.Wpf/Resources/Roboto/RobotoCondensed-Bold.ttf diff --git a/MaterialDesignThemes.Uwp/Assets/Roboto/RobotoCondensed-BoldItalic.ttf b/src/MaterialDesignThemes.Wpf/Resources/Roboto/RobotoCondensed-BoldItalic.ttf similarity index 100% rename from MaterialDesignThemes.Uwp/Assets/Roboto/RobotoCondensed-BoldItalic.ttf rename to src/MaterialDesignThemes.Wpf/Resources/Roboto/RobotoCondensed-BoldItalic.ttf diff --git a/MaterialDesignThemes.Uwp/Assets/Roboto/RobotoCondensed-Italic.ttf b/src/MaterialDesignThemes.Wpf/Resources/Roboto/RobotoCondensed-Italic.ttf similarity index 100% rename from MaterialDesignThemes.Uwp/Assets/Roboto/RobotoCondensed-Italic.ttf rename to src/MaterialDesignThemes.Wpf/Resources/Roboto/RobotoCondensed-Italic.ttf diff --git a/MaterialDesignThemes.Uwp/Assets/Roboto/RobotoCondensed-Light.ttf b/src/MaterialDesignThemes.Wpf/Resources/Roboto/RobotoCondensed-Light.ttf similarity index 100% rename from MaterialDesignThemes.Uwp/Assets/Roboto/RobotoCondensed-Light.ttf rename to src/MaterialDesignThemes.Wpf/Resources/Roboto/RobotoCondensed-Light.ttf diff --git a/MaterialDesignThemes.Uwp/Assets/Roboto/RobotoCondensed-LightItalic.ttf b/src/MaterialDesignThemes.Wpf/Resources/Roboto/RobotoCondensed-LightItalic.ttf similarity index 100% rename from MaterialDesignThemes.Uwp/Assets/Roboto/RobotoCondensed-LightItalic.ttf rename to src/MaterialDesignThemes.Wpf/Resources/Roboto/RobotoCondensed-LightItalic.ttf diff --git a/MaterialDesignThemes.Uwp/Assets/Roboto/RobotoCondensed-Regular.ttf b/src/MaterialDesignThemes.Wpf/Resources/Roboto/RobotoCondensed-Regular.ttf similarity index 100% rename from MaterialDesignThemes.Uwp/Assets/Roboto/RobotoCondensed-Regular.ttf rename to src/MaterialDesignThemes.Wpf/Resources/Roboto/RobotoCondensed-Regular.ttf diff --git a/MaterialDesignThemes.Wpf/Ripple.cs b/src/MaterialDesignThemes.Wpf/Ripple.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Ripple.cs rename to src/MaterialDesignThemes.Wpf/Ripple.cs diff --git a/MaterialDesignThemes.Wpf/RippleAssist.cs b/src/MaterialDesignThemes.Wpf/RippleAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/RippleAssist.cs rename to src/MaterialDesignThemes.Wpf/RippleAssist.cs diff --git a/MaterialDesignThemes.Wpf/RobotoFontExtension.cs b/src/MaterialDesignThemes.Wpf/RobotoFontExtension.cs similarity index 100% rename from MaterialDesignThemes.Wpf/RobotoFontExtension.cs rename to src/MaterialDesignThemes.Wpf/RobotoFontExtension.cs diff --git a/MaterialDesignThemes.Wpf/ScaleHelper.cs b/src/MaterialDesignThemes.Wpf/ScaleHelper.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ScaleHelper.cs rename to src/MaterialDesignThemes.Wpf/ScaleHelper.cs diff --git a/MaterialDesignThemes.Wpf/ScaleHost.cs b/src/MaterialDesignThemes.Wpf/ScaleHost.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ScaleHost.cs rename to src/MaterialDesignThemes.Wpf/ScaleHost.cs diff --git a/MaterialDesignThemes.Wpf/Screen.cs b/src/MaterialDesignThemes.Wpf/Screen.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Screen.cs rename to src/MaterialDesignThemes.Wpf/Screen.cs diff --git a/MaterialDesignThemes.Wpf/ScrollViewerAssist.cs b/src/MaterialDesignThemes.Wpf/ScrollViewerAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ScrollViewerAssist.cs rename to src/MaterialDesignThemes.Wpf/ScrollViewerAssist.cs diff --git a/MaterialDesignThemes.Wpf/ScrollbarAssist.cs b/src/MaterialDesignThemes.Wpf/ScrollbarAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ScrollbarAssist.cs rename to src/MaterialDesignThemes.Wpf/ScrollbarAssist.cs diff --git a/MaterialDesignThemes.Wpf/ShadowAssist.cs b/src/MaterialDesignThemes.Wpf/ShadowAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ShadowAssist.cs rename to src/MaterialDesignThemes.Wpf/ShadowAssist.cs diff --git a/MaterialDesignThemes.Wpf/SliderAssist.cs b/src/MaterialDesignThemes.Wpf/SliderAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/SliderAssist.cs rename to src/MaterialDesignThemes.Wpf/SliderAssist.cs diff --git a/MaterialDesignThemes.Wpf/SmartHint.cs b/src/MaterialDesignThemes.Wpf/SmartHint.cs similarity index 100% rename from MaterialDesignThemes.Wpf/SmartHint.cs rename to src/MaterialDesignThemes.Wpf/SmartHint.cs diff --git a/MaterialDesignThemes.Wpf/Snackbar.cs b/src/MaterialDesignThemes.Wpf/Snackbar.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Snackbar.cs rename to src/MaterialDesignThemes.Wpf/Snackbar.cs diff --git a/MaterialDesignThemes.Wpf/SnackbarMessage.cs b/src/MaterialDesignThemes.Wpf/SnackbarMessage.cs similarity index 100% rename from MaterialDesignThemes.Wpf/SnackbarMessage.cs rename to src/MaterialDesignThemes.Wpf/SnackbarMessage.cs diff --git a/MaterialDesignThemes.Wpf/SnackbarMessageEventArgs.cs b/src/MaterialDesignThemes.Wpf/SnackbarMessageEventArgs.cs similarity index 100% rename from MaterialDesignThemes.Wpf/SnackbarMessageEventArgs.cs rename to src/MaterialDesignThemes.Wpf/SnackbarMessageEventArgs.cs diff --git a/MaterialDesignThemes.Wpf/SnackbarMessageQueue.cs b/src/MaterialDesignThemes.Wpf/SnackbarMessageQueue.cs similarity index 100% rename from MaterialDesignThemes.Wpf/SnackbarMessageQueue.cs rename to src/MaterialDesignThemes.Wpf/SnackbarMessageQueue.cs diff --git a/MaterialDesignThemes.Wpf/SnackbarMessageQueueItem.cs b/src/MaterialDesignThemes.Wpf/SnackbarMessageQueueItem.cs similarity index 100% rename from MaterialDesignThemes.Wpf/SnackbarMessageQueueItem.cs rename to src/MaterialDesignThemes.Wpf/SnackbarMessageQueueItem.cs diff --git a/MaterialDesignThemes.Wpf/Spelling.cs b/src/MaterialDesignThemes.Wpf/Spelling.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Spelling.cs rename to src/MaterialDesignThemes.Wpf/Spelling.cs diff --git a/MaterialDesignThemes.Wpf/SplitButton.cs b/src/MaterialDesignThemes.Wpf/SplitButton.cs similarity index 100% rename from MaterialDesignThemes.Wpf/SplitButton.cs rename to src/MaterialDesignThemes.Wpf/SplitButton.cs diff --git a/MaterialDesignThemes.Wpf/StringExtensions.cs b/src/MaterialDesignThemes.Wpf/StringExtensions.cs similarity index 100% rename from MaterialDesignThemes.Wpf/StringExtensions.cs rename to src/MaterialDesignThemes.Wpf/StringExtensions.cs diff --git a/MaterialDesignThemes.Wpf/TabAssist.cs b/src/MaterialDesignThemes.Wpf/TabAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/TabAssist.cs rename to src/MaterialDesignThemes.Wpf/TabAssist.cs diff --git a/MaterialDesignThemes.Wpf/TextBlockAssist.cs b/src/MaterialDesignThemes.Wpf/TextBlockAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/TextBlockAssist.cs rename to src/MaterialDesignThemes.Wpf/TextBlockAssist.cs diff --git a/MaterialDesignThemes.Wpf/TextFieldAssist.cs b/src/MaterialDesignThemes.Wpf/TextFieldAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/TextFieldAssist.cs rename to src/MaterialDesignThemes.Wpf/TextFieldAssist.cs diff --git a/MaterialDesignThemes.Wpf/Theme.cs b/src/MaterialDesignThemes.Wpf/Theme.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Theme.cs rename to src/MaterialDesignThemes.Wpf/Theme.cs diff --git a/MaterialDesignThemes.Wpf/Theme.g.cs b/src/MaterialDesignThemes.Wpf/Theme.g.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Theme.g.cs rename to src/MaterialDesignThemes.Wpf/Theme.g.cs diff --git a/MaterialDesignThemes.Wpf/ThemeAssist.cs b/src/MaterialDesignThemes.Wpf/ThemeAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ThemeAssist.cs rename to src/MaterialDesignThemes.Wpf/ThemeAssist.cs diff --git a/MaterialDesignThemes.Wpf/ThemeChangedEventArgs.cs b/src/MaterialDesignThemes.Wpf/ThemeChangedEventArgs.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ThemeChangedEventArgs.cs rename to src/MaterialDesignThemes.Wpf/ThemeChangedEventArgs.cs diff --git a/MaterialDesignThemes.Wpf/ThemeColorReference.cs b/src/MaterialDesignThemes.Wpf/ThemeColorReference.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ThemeColorReference.cs rename to src/MaterialDesignThemes.Wpf/ThemeColorReference.cs diff --git a/MaterialDesignThemes.Wpf/ThemeExtensions.cs b/src/MaterialDesignThemes.Wpf/ThemeExtensions.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ThemeExtensions.cs rename to src/MaterialDesignThemes.Wpf/ThemeExtensions.cs diff --git a/MaterialDesignThemes.Wpf/ThemeExtensions.g.cs b/src/MaterialDesignThemes.Wpf/ThemeExtensions.g.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ThemeExtensions.g.cs rename to src/MaterialDesignThemes.Wpf/ThemeExtensions.g.cs diff --git a/MaterialDesignThemes.Wpf/Themes/Generic.xaml b/src/MaterialDesignThemes.Wpf/Themes/Generic.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/Generic.xaml rename to src/MaterialDesignThemes.Wpf/Themes/Generic.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/Internal/BaseThemeColors.cs b/src/MaterialDesignThemes.Wpf/Themes/Internal/BaseThemeColors.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/Internal/BaseThemeColors.cs rename to src/MaterialDesignThemes.Wpf/Themes/Internal/BaseThemeColors.cs diff --git a/MaterialDesignThemes.Wpf/Themes/Internal/MaterialDesignTheme.BaseThemeColors.xaml b/src/MaterialDesignThemes.Wpf/Themes/Internal/MaterialDesignTheme.BaseThemeColors.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/Internal/MaterialDesignTheme.BaseThemeColors.xaml rename to src/MaterialDesignThemes.Wpf/Themes/Internal/MaterialDesignTheme.BaseThemeColors.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesign2.Defaults.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesign2.Defaults.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesign2.Defaults.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesign2.Defaults.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesign3.Defaults.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesign3.Defaults.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesign3.Defaults.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesign3.Defaults.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesign3.Font.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesign3.Font.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesign3.Font.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesign3.Font.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesign3.NavigationBar.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesign3.NavigationBar.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesign3.NavigationBar.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesign3.NavigationBar.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesign3.NavigationDrawer.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesign3.NavigationDrawer.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesign3.NavigationDrawer.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesign3.NavigationDrawer.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesign3.NavigationRail.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesign3.NavigationRail.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesign3.NavigationRail.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesign3.NavigationRail.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesign3.Slider.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesign3.Slider.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesign3.Slider.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesign3.Slider.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesign3.TextBlock.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesign3.TextBlock.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesign3.TextBlock.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesign3.TextBlock.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesign3.ToggleButton.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesign3.ToggleButton.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesign3.ToggleButton.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesign3.ToggleButton.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesign3.Window.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesign3.Window.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesign3.Window.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesign3.Window.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.AutoSuggestBox.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.AutoSuggestBox.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.AutoSuggestBox.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.AutoSuggestBox.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Badged.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Badged.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Badged.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Badged.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Button.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Button.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Button.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Button.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Calendar.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Calendar.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Calendar.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Calendar.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Card.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Card.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Card.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Card.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.CheckBox.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.CheckBox.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.CheckBox.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.CheckBox.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Chip.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Chip.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Chip.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Chip.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Clock.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Clock.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Clock.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Clock.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ColorPicker.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ColorPicker.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ColorPicker.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ColorPicker.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ComboBox.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ComboBox.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ComboBox.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ComboBox.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Dark.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Dark.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Dark.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Dark.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.DataGrid.ComboBox.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.DataGrid.ComboBox.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.DataGrid.ComboBox.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.DataGrid.ComboBox.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.DataGrid.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.DataGrid.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.DataGrid.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.DataGrid.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.DatePicker.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.DatePicker.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.DatePicker.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.DatePicker.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.DialogHost.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.DialogHost.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.DialogHost.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.DialogHost.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Expander.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Expander.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Expander.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Expander.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Flipper.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Flipper.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Flipper.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Flipper.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.FlipperClassic.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.FlipperClassic.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.FlipperClassic.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.FlipperClassic.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Font.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Font.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Font.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Font.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.GridSplitter.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.GridSplitter.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.GridSplitter.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.GridSplitter.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.GroupBox.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.GroupBox.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.GroupBox.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.GroupBox.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Hyperlink.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Hyperlink.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Hyperlink.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Hyperlink.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Label.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Label.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Label.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Label.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Light.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Light.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Light.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Light.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ListBox.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ListBox.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ListBox.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ListBox.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ListView.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ListView.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ListView.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ListView.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Menu.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Menu.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Menu.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Menu.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ObsoleteBrushes.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ObsoleteBrushes.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ObsoleteBrushes.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ObsoleteBrushes.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ObsoleteStyles.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ObsoleteStyles.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ObsoleteStyles.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ObsoleteStyles.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.PasswordBox.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.PasswordBox.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.PasswordBox.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.PasswordBox.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.PopupBox.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.PopupBox.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.PopupBox.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.PopupBox.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ProgressBar.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ProgressBar.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ProgressBar.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ProgressBar.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.RadioButton.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.RadioButton.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.RadioButton.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.RadioButton.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.RatingBar.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.RatingBar.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.RatingBar.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.RatingBar.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.RichTextBox.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.RichTextBox.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.RichTextBox.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.RichTextBox.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ScrollBar.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ScrollBar.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ScrollBar.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ScrollBar.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ScrollViewer.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ScrollViewer.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ScrollViewer.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ScrollViewer.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Shadows.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Shadows.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Shadows.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Shadows.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Slider.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Slider.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Slider.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Slider.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.SmartHint.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.SmartHint.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.SmartHint.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.SmartHint.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Snackbar.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Snackbar.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Snackbar.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Snackbar.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.SplitButton.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.SplitButton.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.SplitButton.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.SplitButton.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.TabControl.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.TabControl.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.TabControl.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.TabControl.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.TextBlock.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.TextBlock.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.TextBlock.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.TextBlock.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.TextBox.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.TextBox.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.TextBox.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.TextBox.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Thumb.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Thumb.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Thumb.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Thumb.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.TimePicker.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.TimePicker.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.TimePicker.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.TimePicker.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ToggleButton.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ToggleButton.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ToggleButton.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ToggleButton.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ToolBar.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ToolBar.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ToolBar.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ToolBar.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ToolBarTray.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ToolBarTray.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ToolBarTray.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ToolBarTray.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ToolTip.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ToolTip.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ToolTip.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ToolTip.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.TreeListView.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.TreeListView.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.TreeListView.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.TreeListView.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.TreeView.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.TreeView.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.TreeView.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.TreeView.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ValidationErrorTemplate.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ValidationErrorTemplate.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ValidationErrorTemplate.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ValidationErrorTemplate.xaml diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Window.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Window.xaml similarity index 100% rename from MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Window.xaml rename to src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Window.xaml diff --git a/MaterialDesignThemes.Wpf/TimeChangedEventArgs.cs b/src/MaterialDesignThemes.Wpf/TimeChangedEventArgs.cs similarity index 100% rename from MaterialDesignThemes.Wpf/TimeChangedEventArgs.cs rename to src/MaterialDesignThemes.Wpf/TimeChangedEventArgs.cs diff --git a/MaterialDesignThemes.Wpf/TimePicker.cs b/src/MaterialDesignThemes.Wpf/TimePicker.cs similarity index 100% rename from MaterialDesignThemes.Wpf/TimePicker.cs rename to src/MaterialDesignThemes.Wpf/TimePicker.cs diff --git a/MaterialDesignThemes.Wpf/TimePickerAssist.cs b/src/MaterialDesignThemes.Wpf/TimePickerAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/TimePickerAssist.cs rename to src/MaterialDesignThemes.Wpf/TimePickerAssist.cs diff --git a/MaterialDesignThemes.Wpf/TimePickerTextBox.cs b/src/MaterialDesignThemes.Wpf/TimePickerTextBox.cs similarity index 100% rename from MaterialDesignThemes.Wpf/TimePickerTextBox.cs rename to src/MaterialDesignThemes.Wpf/TimePickerTextBox.cs diff --git a/MaterialDesignThemes.Wpf/ToggleButtonAssist.cs b/src/MaterialDesignThemes.Wpf/ToggleButtonAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ToggleButtonAssist.cs rename to src/MaterialDesignThemes.Wpf/ToggleButtonAssist.cs diff --git a/MaterialDesignThemes.Wpf/ToolTipAssist.cs b/src/MaterialDesignThemes.Wpf/ToolTipAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ToolTipAssist.cs rename to src/MaterialDesignThemes.Wpf/ToolTipAssist.cs diff --git a/MaterialDesignThemes.Wpf/TransitionAssist.cs b/src/MaterialDesignThemes.Wpf/TransitionAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/TransitionAssist.cs rename to src/MaterialDesignThemes.Wpf/TransitionAssist.cs diff --git a/MaterialDesignThemes.Wpf/Transitions/CircleWipe.cs b/src/MaterialDesignThemes.Wpf/Transitions/CircleWipe.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Transitions/CircleWipe.cs rename to src/MaterialDesignThemes.Wpf/Transitions/CircleWipe.cs diff --git a/MaterialDesignThemes.Wpf/Transitions/FadeWipe.cs b/src/MaterialDesignThemes.Wpf/Transitions/FadeWipe.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Transitions/FadeWipe.cs rename to src/MaterialDesignThemes.Wpf/Transitions/FadeWipe.cs diff --git a/MaterialDesignThemes.Wpf/Transitions/ITransitionEffect.cs b/src/MaterialDesignThemes.Wpf/Transitions/ITransitionEffect.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Transitions/ITransitionEffect.cs rename to src/MaterialDesignThemes.Wpf/Transitions/ITransitionEffect.cs diff --git a/MaterialDesignThemes.Wpf/Transitions/ITransitionEffectSubject.cs b/src/MaterialDesignThemes.Wpf/Transitions/ITransitionEffectSubject.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Transitions/ITransitionEffectSubject.cs rename to src/MaterialDesignThemes.Wpf/Transitions/ITransitionEffectSubject.cs diff --git a/MaterialDesignThemes.Wpf/Transitions/ITransitionWipe.cs b/src/MaterialDesignThemes.Wpf/Transitions/ITransitionWipe.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Transitions/ITransitionWipe.cs rename to src/MaterialDesignThemes.Wpf/Transitions/ITransitionWipe.cs diff --git a/MaterialDesignThemes.Wpf/Transitions/IZIndexController.cs b/src/MaterialDesignThemes.Wpf/Transitions/IZIndexController.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Transitions/IZIndexController.cs rename to src/MaterialDesignThemes.Wpf/Transitions/IZIndexController.cs diff --git a/MaterialDesignThemes.Wpf/Transitions/IndexedItemOffsetMultiplierExtension.cs b/src/MaterialDesignThemes.Wpf/Transitions/IndexedItemOffsetMultiplierExtension.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Transitions/IndexedItemOffsetMultiplierExtension.cs rename to src/MaterialDesignThemes.Wpf/Transitions/IndexedItemOffsetMultiplierExtension.cs diff --git a/MaterialDesignThemes.Wpf/Transitions/SlideDirection.cs b/src/MaterialDesignThemes.Wpf/Transitions/SlideDirection.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Transitions/SlideDirection.cs rename to src/MaterialDesignThemes.Wpf/Transitions/SlideDirection.cs diff --git a/MaterialDesignThemes.Wpf/Transitions/SlideOutWipe.cs b/src/MaterialDesignThemes.Wpf/Transitions/SlideOutWipe.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Transitions/SlideOutWipe.cs rename to src/MaterialDesignThemes.Wpf/Transitions/SlideOutWipe.cs diff --git a/MaterialDesignThemes.Wpf/Transitions/SlideWipe.cs b/src/MaterialDesignThemes.Wpf/Transitions/SlideWipe.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Transitions/SlideWipe.cs rename to src/MaterialDesignThemes.Wpf/Transitions/SlideWipe.cs diff --git a/MaterialDesignThemes.Wpf/Transitions/TransitionEffect.cs b/src/MaterialDesignThemes.Wpf/Transitions/TransitionEffect.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Transitions/TransitionEffect.cs rename to src/MaterialDesignThemes.Wpf/Transitions/TransitionEffect.cs diff --git a/MaterialDesignThemes.Wpf/Transitions/TransitionEffectBase.cs b/src/MaterialDesignThemes.Wpf/Transitions/TransitionEffectBase.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Transitions/TransitionEffectBase.cs rename to src/MaterialDesignThemes.Wpf/Transitions/TransitionEffectBase.cs diff --git a/MaterialDesignThemes.Wpf/Transitions/TransitionEffectExtension.cs b/src/MaterialDesignThemes.Wpf/Transitions/TransitionEffectExtension.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Transitions/TransitionEffectExtension.cs rename to src/MaterialDesignThemes.Wpf/Transitions/TransitionEffectExtension.cs diff --git a/MaterialDesignThemes.Wpf/Transitions/TransitionEffectKind.cs b/src/MaterialDesignThemes.Wpf/Transitions/TransitionEffectKind.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Transitions/TransitionEffectKind.cs rename to src/MaterialDesignThemes.Wpf/Transitions/TransitionEffectKind.cs diff --git a/MaterialDesignThemes.Wpf/Transitions/TransitionEffectTypeConverter.cs b/src/MaterialDesignThemes.Wpf/Transitions/TransitionEffectTypeConverter.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Transitions/TransitionEffectTypeConverter.cs rename to src/MaterialDesignThemes.Wpf/Transitions/TransitionEffectTypeConverter.cs diff --git a/MaterialDesignThemes.Wpf/Transitions/Transitioner.cs b/src/MaterialDesignThemes.Wpf/Transitions/Transitioner.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Transitions/Transitioner.cs rename to src/MaterialDesignThemes.Wpf/Transitions/Transitioner.cs diff --git a/MaterialDesignThemes.Wpf/Transitions/TransitionerSlide.cs b/src/MaterialDesignThemes.Wpf/Transitions/TransitionerSlide.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Transitions/TransitionerSlide.cs rename to src/MaterialDesignThemes.Wpf/Transitions/TransitionerSlide.cs diff --git a/MaterialDesignThemes.Wpf/Transitions/TransitionerSlideState.cs b/src/MaterialDesignThemes.Wpf/Transitions/TransitionerSlideState.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Transitions/TransitionerSlideState.cs rename to src/MaterialDesignThemes.Wpf/Transitions/TransitionerSlideState.cs diff --git a/MaterialDesignThemes.Wpf/Transitions/TransitioningContent.cs b/src/MaterialDesignThemes.Wpf/Transitions/TransitioningContent.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Transitions/TransitioningContent.cs rename to src/MaterialDesignThemes.Wpf/Transitions/TransitioningContent.cs diff --git a/MaterialDesignThemes.Wpf/Transitions/TransitioningContentBase.cs b/src/MaterialDesignThemes.Wpf/Transitions/TransitioningContentBase.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Transitions/TransitioningContentBase.cs rename to src/MaterialDesignThemes.Wpf/Transitions/TransitioningContentBase.cs diff --git a/MaterialDesignThemes.Wpf/TreeHelper.cs b/src/MaterialDesignThemes.Wpf/TreeHelper.cs similarity index 100% rename from MaterialDesignThemes.Wpf/TreeHelper.cs rename to src/MaterialDesignThemes.Wpf/TreeHelper.cs diff --git a/MaterialDesignThemes.Wpf/TreeListView.cs b/src/MaterialDesignThemes.Wpf/TreeListView.cs similarity index 100% rename from MaterialDesignThemes.Wpf/TreeListView.cs rename to src/MaterialDesignThemes.Wpf/TreeListView.cs diff --git a/MaterialDesignThemes.Wpf/TreeListViewItem.cs b/src/MaterialDesignThemes.Wpf/TreeListViewItem.cs similarity index 100% rename from MaterialDesignThemes.Wpf/TreeListViewItem.cs rename to src/MaterialDesignThemes.Wpf/TreeListViewItem.cs diff --git a/MaterialDesignThemes.Wpf/TreeViewAssist.cs b/src/MaterialDesignThemes.Wpf/TreeViewAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/TreeViewAssist.cs rename to src/MaterialDesignThemes.Wpf/TreeViewAssist.cs diff --git a/MaterialDesignThemes.Wpf/Underline.cs b/src/MaterialDesignThemes.Wpf/Underline.cs similarity index 100% rename from MaterialDesignThemes.Wpf/Underline.cs rename to src/MaterialDesignThemes.Wpf/Underline.cs diff --git a/MaterialDesignThemes.Wpf/ValidationAssist.cs b/src/MaterialDesignThemes.Wpf/ValidationAssist.cs similarity index 100% rename from MaterialDesignThemes.Wpf/ValidationAssist.cs rename to src/MaterialDesignThemes.Wpf/ValidationAssist.cs diff --git a/MaterialDesignThemes.Wpf/VisualStudioToolsManifest.xml b/src/MaterialDesignThemes.Wpf/VisualStudioToolsManifest.xml similarity index 100% rename from MaterialDesignThemes.Wpf/VisualStudioToolsManifest.xml rename to src/MaterialDesignThemes.Wpf/VisualStudioToolsManifest.xml diff --git a/MaterialDesignThemes.Wpf/VisualTreeExtensions.cs b/src/MaterialDesignThemes.Wpf/VisualTreeExtensions.cs similarity index 100% rename from MaterialDesignThemes.Wpf/VisualTreeExtensions.cs rename to src/MaterialDesignThemes.Wpf/VisualTreeExtensions.cs diff --git a/mdresgen/Brushes.cs b/src/MaterialDesignToolkit.ResourceGeneration/Brushes.cs similarity index 97% rename from mdresgen/Brushes.cs rename to src/MaterialDesignToolkit.ResourceGeneration/Brushes.cs index 0eaa40d611..ca1354b481 100644 --- a/mdresgen/Brushes.cs +++ b/src/MaterialDesignToolkit.ResourceGeneration/Brushes.cs @@ -5,7 +5,7 @@ using System.Windows.Media; using Humanizer; -namespace mdresgen; +namespace MaterialDesignToolkit.ResourceGeneration; public static partial class Brushes { @@ -15,7 +15,7 @@ public static partial class Brushes private const string AutoGeneratedHeader = """ //------------------------------------------------------------------------------ // - // This code was generated by mdresgen. + // This code was generated by MaterialDesignToolkit.ResourceGeneration. // //------------------------------------------------------------------------------ @@ -57,7 +57,7 @@ private static void GenerateBuiltInThemingDictionaries(IEnumerable brushe void WriteFile(string theme) { - using var writer = new StreamWriter(Path.Combine(repoRoot.FullName, "MaterialDesignThemes.Wpf", "Themes", $"MaterialDesignTheme.{theme}.xaml")); + using var writer = new StreamWriter(Path.Combine(repoRoot.FullName, "src", "MaterialDesignThemes.Wpf", "Themes", $"MaterialDesignTheme.{theme}.xaml")); writer.WriteLine($""" """); } - else if(value.StartsWith(ColorReferencePrefix)) + else if (value.StartsWith(ColorReferencePrefix)) { string resourceKey = value[ColorReferencePrefix.Length..] switch { @@ -134,13 +134,13 @@ private static void GenerateObsoleteBrushesDictionary(IEnumerable brushes string existingDictionary = reader.ReadToEnd(); string dictionaryContents = TemplateReplaceRegex().Replace(existingDictionary, output.ToString()); - using var writer = new StreamWriter(Path.Combine(repoRoot.FullName, "MaterialDesignThemes.Wpf", "Themes", "MaterialDesignTheme.ObsoleteBrushes.xaml")); + using var writer = new StreamWriter(Path.Combine(repoRoot.FullName, "src", "MaterialDesignThemes.Wpf", "Themes", "MaterialDesignTheme.ObsoleteBrushes.xaml")); writer.Write(dictionaryContents); } private static void GenerateThemeClass(TreeItem brushes, DirectoryInfo repoRoot) { - using var writer = new StreamWriter(Path.Combine(repoRoot.FullName, "MaterialDesignThemes.Wpf", "Theme.g.cs")); + using var writer = new StreamWriter(Path.Combine(repoRoot.FullName, "src", "MaterialDesignThemes.Wpf", "Theme.g.cs")); writer.WriteLine(AutoGeneratedHeader); writer.WriteLine(""" @@ -222,7 +222,7 @@ static void WriteTreeItem(TreeItem treeItem, StreamWriter writer, int ind private static void GenerateThemeExtensionsClass(TreeItem brushes, DirectoryInfo repoRoot) { - using var writer = new StreamWriter(Path.Combine(repoRoot.FullName, "MaterialDesignThemes.Wpf", "ThemeExtensions.g.cs")); + using var writer = new StreamWriter(Path.Combine(repoRoot.FullName, "src", "MaterialDesignThemes.Wpf", "ThemeExtensions.g.cs")); writer.WriteLine(AutoGeneratedHeader); writer.WriteLine(""" @@ -292,7 +292,7 @@ static void WriteTreeItem(TreeItem treeItem, StreamWriter writer, string private static void GenerateResourceDictionaryExtensions(TreeItem brushes, DirectoryInfo repoRoot) { - using var writer = new StreamWriter(Path.Combine(repoRoot.FullName, "MaterialDesignThemes.Wpf", "ResourceDictionaryExtensions.g.cs")); + using var writer = new StreamWriter(Path.Combine(repoRoot.FullName, "src", "MaterialDesignThemes.Wpf", "ResourceDictionaryExtensions.g.cs")); string indent = new(' ', CSharpIndentSize); writer.WriteLine(AutoGeneratedHeader); @@ -395,7 +395,7 @@ private static void GenerateThemeBrushTests(IEnumerable brushes, Director { string indent = new(' ', CSharpIndentSize); string xamlIndent = new(' ', XamlIndentSize); - using var writer = new StreamWriter(Path.Combine(repoRoot.FullName, "MaterialDesignThemes.UITests", "WPF", "Theme", "ThemeTests.g.cs")); + using var writer = new StreamWriter(Path.Combine(repoRoot.FullName, "tests", "MaterialDesignThemes.UITests", "WPF", "Theme", "ThemeTests.g.cs")); writer.WriteLine($$""" {{AutoGeneratedHeader}} using System.Windows.Media; @@ -560,7 +560,7 @@ private static void GenerateMigrationScript(IEnumerable brushes, Director //ReplaceBrushes("*.cs", "SetResourceReference(*, `\"{BrushName}`\")"); //ReplaceBrushes("*.cs", "[`\"{BrushName}`\"]"); - using var writer = new StreamWriter(Path.Combine(repoRoot.FullName, "Scripts", "MigrateBrushes.ps1")); + using var writer = new StreamWriter(Path.Combine(repoRoot.FullName, "build", "MigrateBrushes.ps1")); writer.Write(output); void ReplaceBrushes(string fileMatch, string replaceFormat) diff --git a/mdresgen/Icon.cs b/src/MaterialDesignToolkit.ResourceGeneration/Icon.cs similarity index 84% rename from mdresgen/Icon.cs rename to src/MaterialDesignToolkit.ResourceGeneration/Icon.cs index 706fbd8e54..5f0ef4c05f 100644 --- a/mdresgen/Icon.cs +++ b/src/MaterialDesignToolkit.ResourceGeneration/Icon.cs @@ -1,4 +1,4 @@ -namespace mdresgen; +namespace MaterialDesignToolkit.ResourceGeneration; internal class Icon { diff --git a/mdresgen/IconDataFactorySyntaxRewriter.cs b/src/MaterialDesignToolkit.ResourceGeneration/IconDataFactorySyntaxRewriter.cs similarity index 98% rename from mdresgen/IconDataFactorySyntaxRewriter.cs rename to src/MaterialDesignToolkit.ResourceGeneration/IconDataFactorySyntaxRewriter.cs index f27cc834c4..652e45d49f 100644 --- a/mdresgen/IconDataFactorySyntaxRewriter.cs +++ b/src/MaterialDesignToolkit.ResourceGeneration/IconDataFactorySyntaxRewriter.cs @@ -2,7 +2,7 @@ using Microsoft.CodeAnalysis.CSharp; using Microsoft.CodeAnalysis.CSharp.Syntax; -namespace mdresgen; +namespace MaterialDesignToolkit.ResourceGeneration; internal class IconDataFactorySyntaxRewriter : CSharpSyntaxRewriter { diff --git a/mdresgen/IconDiff.cs b/src/MaterialDesignToolkit.ResourceGeneration/IconDiff.cs similarity index 98% rename from mdresgen/IconDiff.cs rename to src/MaterialDesignToolkit.ResourceGeneration/IconDiff.cs index 90136ab1f1..465cfa9472 100644 --- a/mdresgen/IconDiff.cs +++ b/src/MaterialDesignToolkit.ResourceGeneration/IconDiff.cs @@ -4,7 +4,7 @@ using System.Runtime.Loader; using System.Text.RegularExpressions; -namespace mdresgen; +namespace MaterialDesignToolkit.ResourceGeneration; internal static partial class IconDiff { @@ -14,7 +14,7 @@ internal static partial class IconDiff public static async Task RunAsync() { var nugetDir = Path.Combine(PathHelper.RepositoryRoot, "nugets"); - var nugets =( + var nugets = ( from file in Directory.EnumerateFiles(nugetDir) let match = FileNameRegex().Match(Path.GetFileName(file)) where match.Success @@ -26,7 +26,7 @@ orderby version var newNuget = nugets.Last(); string output = await CompareNuGets(oldNuget.File, oldNuget.Version, newNuget.File, newNuget.Version); - + await File.WriteAllTextAsync(Path.Combine(PathHelper.RepositoryRoot, $"IconChanges-{GetVersionString(oldNuget.Version)}--{GetVersionString(newNuget.Version)}.md"), output); static string GetVersionString(Version version) diff --git a/mdresgen/IconThing.cs b/src/MaterialDesignToolkit.ResourceGeneration/IconThing.cs similarity index 96% rename from mdresgen/IconThing.cs rename to src/MaterialDesignToolkit.ResourceGeneration/IconThing.cs index 30a9789264..fb3393e312 100644 --- a/mdresgen/IconThing.cs +++ b/src/MaterialDesignToolkit.ResourceGeneration/IconThing.cs @@ -6,7 +6,7 @@ using Microsoft.CodeAnalysis.Text; using Newtonsoft.Json.Linq; -namespace mdresgen; +namespace MaterialDesignToolkit.ResourceGeneration; static class IconThing { @@ -23,11 +23,11 @@ public static async Task RunAsync() Console.WriteLine("Updating enum..."); var newEnumSource = UpdateEnum("PackIconKind.template.cs", nameDataPairs); - Write(newEnumSource, Path.Combine("MaterialDesignThemes.Wpf", "PackIconKind.cs")); + Write(newEnumSource, Path.Combine("src", "MaterialDesignThemes.Wpf", "PackIconKind.cs")); Console.WriteLine("Updating data factory..."); var newDataFactorySource = UpdateDataFactory("PackIconDataFactory.template.cs", nameDataPairs); - Write(newDataFactorySource, Path.Combine("MaterialDesignThemes.Wpf", "PackIconDataFactory.cs")); + Write(newDataFactorySource, Path.Combine("src", "MaterialDesignThemes.Wpf", "PackIconDataFactory.cs")); Console.WriteLine("done"); } diff --git a/mdresgen/MaterialColourSwatchesSnippet.xml b/src/MaterialDesignToolkit.ResourceGeneration/MaterialColourSwatchesSnippet.xml similarity index 100% rename from mdresgen/MaterialColourSwatchesSnippet.xml rename to src/MaterialDesignToolkit.ResourceGeneration/MaterialColourSwatchesSnippet.xml diff --git a/mdresgen/MaterialDesignTheme.ObsoleteBrushes.xaml b/src/MaterialDesignToolkit.ResourceGeneration/MaterialDesignTheme.ObsoleteBrushes.xaml similarity index 100% rename from mdresgen/MaterialDesignTheme.ObsoleteBrushes.xaml rename to src/MaterialDesignToolkit.ResourceGeneration/MaterialDesignTheme.ObsoleteBrushes.xaml diff --git a/mdresgen/mdresgen.csproj b/src/MaterialDesignToolkit.ResourceGeneration/MaterialDesignToolkit.ResourceGeneration.csproj similarity index 100% rename from mdresgen/mdresgen.csproj rename to src/MaterialDesignToolkit.ResourceGeneration/MaterialDesignToolkit.ResourceGeneration.csproj diff --git a/mdresgen/MdPalette.cs b/src/MaterialDesignToolkit.ResourceGeneration/MdPalette.cs similarity index 88% rename from mdresgen/MdPalette.cs rename to src/MaterialDesignToolkit.ResourceGeneration/MdPalette.cs index 88bf8250c3..425879fe2a 100644 --- a/mdresgen/MdPalette.cs +++ b/src/MaterialDesignToolkit.ResourceGeneration/MdPalette.cs @@ -1,6 +1,6 @@ using System.Text.Json.Serialization; -namespace mdresgen; +namespace MaterialDesignToolkit.ResourceGeneration; public class MdPalette { diff --git a/mdresgen/PackIconDataFactory.template.cs b/src/MaterialDesignToolkit.ResourceGeneration/PackIconDataFactory.template.cs similarity index 100% rename from mdresgen/PackIconDataFactory.template.cs rename to src/MaterialDesignToolkit.ResourceGeneration/PackIconDataFactory.template.cs diff --git a/mdresgen/PackIconKind.template.cs b/src/MaterialDesignToolkit.ResourceGeneration/PackIconKind.template.cs similarity index 100% rename from mdresgen/PackIconKind.template.cs rename to src/MaterialDesignToolkit.ResourceGeneration/PackIconKind.template.cs diff --git a/mdresgen/Palette.json b/src/MaterialDesignToolkit.ResourceGeneration/Palette.json similarity index 100% rename from mdresgen/Palette.json rename to src/MaterialDesignToolkit.ResourceGeneration/Palette.json diff --git a/mdresgen/PathHelper.cs b/src/MaterialDesignToolkit.ResourceGeneration/PathHelper.cs similarity index 92% rename from mdresgen/PathHelper.cs rename to src/MaterialDesignToolkit.ResourceGeneration/PathHelper.cs index ee0a47e54f..9ad1b9e35d 100644 --- a/mdresgen/PathHelper.cs +++ b/src/MaterialDesignToolkit.ResourceGeneration/PathHelper.cs @@ -1,10 +1,10 @@ -namespace mdresgen; +namespace MaterialDesignToolkit.ResourceGeneration; public static class PathHelper { private static readonly Lazy _repoRoot = new(FindRepoRoot); public static string RepositoryRoot => _repoRoot.Value; - + private static string FindRepoRoot() { diff --git a/mdresgen/Program.cs b/src/MaterialDesignToolkit.ResourceGeneration/Program.cs similarity index 99% rename from mdresgen/Program.cs rename to src/MaterialDesignToolkit.ResourceGeneration/Program.cs index 07e9024843..7839fc82c8 100644 --- a/mdresgen/Program.cs +++ b/src/MaterialDesignToolkit.ResourceGeneration/Program.cs @@ -2,7 +2,7 @@ using System.Xml.Linq; using Newtonsoft.Json.Linq; -namespace mdresgen; +namespace MaterialDesignToolkit.ResourceGeneration; public class Program { @@ -79,7 +79,7 @@ static async Task Main(string[] args) await IconDiff.RunAsync(); if (args.Contains("brushes")) await Brushes.GenerateBrushesAsync(); - + Console.WriteLine(); Console.WriteLine(); Console.WriteLine("FINISHED"); diff --git a/mdresgen/Properties/launchSettings.json b/src/MaterialDesignToolkit.ResourceGeneration/Properties/launchSettings.json similarity index 100% rename from mdresgen/Properties/launchSettings.json rename to src/MaterialDesignToolkit.ResourceGeneration/Properties/launchSettings.json diff --git a/mdresgen/RecommendedPrimaryTemplate.xaml b/src/MaterialDesignToolkit.ResourceGeneration/RecommendedPrimaryTemplate.xaml similarity index 100% rename from mdresgen/RecommendedPrimaryTemplate.xaml rename to src/MaterialDesignToolkit.ResourceGeneration/RecommendedPrimaryTemplate.xaml diff --git a/mdresgen/RecommendedSecondaryTemplate.xaml b/src/MaterialDesignToolkit.ResourceGeneration/RecommendedSecondaryTemplate.xaml similarity index 100% rename from mdresgen/RecommendedSecondaryTemplate.xaml rename to src/MaterialDesignToolkit.ResourceGeneration/RecommendedSecondaryTemplate.xaml diff --git a/mdresgen/ThemeColors.json b/src/MaterialDesignToolkit.ResourceGeneration/ThemeColors.json similarity index 100% rename from mdresgen/ThemeColors.json rename to src/MaterialDesignToolkit.ResourceGeneration/ThemeColors.json diff --git a/mdresgen/TreeItem.cs b/src/MaterialDesignToolkit.ResourceGeneration/TreeItem.cs similarity index 94% rename from mdresgen/TreeItem.cs rename to src/MaterialDesignToolkit.ResourceGeneration/TreeItem.cs index 4e6ef2e6fd..8ab43db94c 100644 --- a/mdresgen/TreeItem.cs +++ b/src/MaterialDesignToolkit.ResourceGeneration/TreeItem.cs @@ -1,7 +1,7 @@ using System.Collections; using System.Diagnostics; -namespace mdresgen; +namespace MaterialDesignToolkit.ResourceGeneration; [DebuggerDisplay($"{{{nameof(Name)}}} [Values: {{{nameof(Values)}.Count}}] [Children: {{{nameof(Children)}.Count}}]")] public class TreeItem(string name) : IEnumerable diff --git a/Shims/IsExternalInit.cs b/src/Shims/IsExternalInit.cs similarity index 100% rename from Shims/IsExternalInit.cs rename to src/Shims/IsExternalInit.cs diff --git a/web/PaletteBuilder.html b/src/web/PaletteBuilder.html similarity index 100% rename from web/PaletteBuilder.html rename to src/web/PaletteBuilder.html diff --git a/web/images/Cards.png b/src/web/images/Cards.png similarity index 100% rename from web/images/Cards.png rename to src/web/images/Cards.png diff --git a/web/images/ClockDemo.gif b/src/web/images/ClockDemo.gif similarity index 100% rename from web/images/ClockDemo.gif rename to src/web/images/ClockDemo.gif diff --git a/web/images/DatePicker.gif b/src/web/images/DatePicker.gif similarity index 100% rename from web/images/DatePicker.gif rename to src/web/images/DatePicker.gif diff --git a/web/images/Dialogs.gif b/src/web/images/Dialogs.gif similarity index 100% rename from web/images/Dialogs.gif rename to src/web/images/Dialogs.gif diff --git a/web/images/Dialogs.png b/src/web/images/Dialogs.png similarity index 100% rename from web/images/Dialogs.png rename to src/web/images/Dialogs.png diff --git a/web/images/FieldsDemo.gif b/src/web/images/FieldsDemo.gif similarity index 100% rename from web/images/FieldsDemo.gif rename to src/web/images/FieldsDemo.gif diff --git a/web/images/MD4XAML.png b/src/web/images/MD4XAML.png similarity index 100% rename from web/images/MD4XAML.png rename to src/web/images/MD4XAML.png diff --git a/web/images/MD4XAML.psd b/src/web/images/MD4XAML.psd similarity index 100% rename from web/images/MD4XAML.psd rename to src/web/images/MD4XAML.psd diff --git a/web/images/MD4XAML.xcf b/src/web/images/MD4XAML.xcf similarity index 100% rename from web/images/MD4XAML.xcf rename to src/web/images/MD4XAML.xcf diff --git a/web/images/MD4XAML100.png b/src/web/images/MD4XAML100.png similarity index 100% rename from web/images/MD4XAML100.png rename to src/web/images/MD4XAML100.png diff --git a/web/images/MD4XAML128.png b/src/web/images/MD4XAML128.png similarity index 100% rename from web/images/MD4XAML128.png rename to src/web/images/MD4XAML128.png diff --git a/web/images/MD4XAML28.png b/src/web/images/MD4XAML28.png similarity index 100% rename from web/images/MD4XAML28.png rename to src/web/images/MD4XAML28.png diff --git a/web/images/MD4XAML32.png b/src/web/images/MD4XAML32.png similarity index 100% rename from web/images/MD4XAML32.png rename to src/web/images/MD4XAML32.png diff --git a/web/images/MD4XAML64.png b/src/web/images/MD4XAML64.png similarity index 100% rename from web/images/MD4XAML64.png rename to src/web/images/MD4XAML64.png diff --git a/web/images/MD4XAMLclipped.png b/src/web/images/MD4XAMLclipped.png similarity index 100% rename from web/images/MD4XAMLclipped.png rename to src/web/images/MD4XAMLclipped.png diff --git a/web/images/MashUp.gif b/src/web/images/MashUp.gif similarity index 100% rename from web/images/MashUp.gif rename to src/web/images/MashUp.gif diff --git a/web/images/MashUp_2016_01_31.gif b/src/web/images/MashUp_2016_01_31.gif similarity index 100% rename from web/images/MashUp_2016_01_31.gif rename to src/web/images/MashUp_2016_01_31.gif diff --git a/web/images/MaterialDesign.MahApps.png b/src/web/images/MaterialDesign.MahApps.png similarity index 100% rename from web/images/MaterialDesign.MahApps.png rename to src/web/images/MaterialDesign.MahApps.png diff --git a/web/images/MaterialDesign.MahApps.xcf b/src/web/images/MaterialDesign.MahApps.xcf similarity index 100% rename from web/images/MaterialDesign.MahApps.xcf rename to src/web/images/MaterialDesign.MahApps.xcf diff --git a/web/images/MenusDemo.jpg b/src/web/images/MenusDemo.jpg similarity index 100% rename from web/images/MenusDemo.jpg rename to src/web/images/MenusDemo.jpg diff --git a/web/images/MultiFloatingActionButton.gif b/src/web/images/MultiFloatingActionButton.gif similarity index 100% rename from web/images/MultiFloatingActionButton.gif rename to src/web/images/MultiFloatingActionButton.gif diff --git a/web/images/SliderDemo.gif b/src/web/images/SliderDemo.gif similarity index 100% rename from web/images/SliderDemo.gif rename to src/web/images/SliderDemo.gif diff --git a/web/images/modern-wpf.png b/src/web/images/modern-wpf.png similarity index 100% rename from web/images/modern-wpf.png rename to src/web/images/modern-wpf.png diff --git a/web/images/modern-wpf.xcf b/src/web/images/modern-wpf.xcf similarity index 100% rename from web/images/modern-wpf.xcf rename to src/web/images/modern-wpf.xcf diff --git a/web/images/screen-buttons.png b/src/web/images/screen-buttons.png similarity index 100% rename from web/images/screen-buttons.png rename to src/web/images/screen-buttons.png diff --git a/web/images/screen-cards.png b/src/web/images/screen-cards.png similarity index 100% rename from web/images/screen-cards.png rename to src/web/images/screen-cards.png diff --git a/web/images/screen-chips.png b/src/web/images/screen-chips.png similarity index 100% rename from web/images/screen-chips.png rename to src/web/images/screen-chips.png diff --git a/web/images/screen-colortools.png b/src/web/images/screen-colortools.png similarity index 100% rename from web/images/screen-colortools.png rename to src/web/images/screen-colortools.png diff --git a/web/images/screen-colorzones.png b/src/web/images/screen-colorzones.png similarity index 100% rename from web/images/screen-colorzones.png rename to src/web/images/screen-colorzones.png diff --git a/web/images/screen-comboboxes.png b/src/web/images/screen-comboboxes.png similarity index 100% rename from web/images/screen-comboboxes.png rename to src/web/images/screen-comboboxes.png diff --git a/web/images/screen-datagrid.png b/src/web/images/screen-datagrid.png similarity index 100% rename from web/images/screen-datagrid.png rename to src/web/images/screen-datagrid.png diff --git a/web/images/screen-dialogs.png b/src/web/images/screen-dialogs.png similarity index 100% rename from web/images/screen-dialogs.png rename to src/web/images/screen-dialogs.png diff --git a/web/images/screen-elevation.png b/src/web/images/screen-elevation.png similarity index 100% rename from web/images/screen-elevation.png rename to src/web/images/screen-elevation.png diff --git a/web/images/screen-fields.png b/src/web/images/screen-fields.png similarity index 100% rename from web/images/screen-fields.png rename to src/web/images/screen-fields.png diff --git a/web/images/screen-groupbox.png b/src/web/images/screen-groupbox.png similarity index 100% rename from web/images/screen-groupbox.png rename to src/web/images/screen-groupbox.png diff --git a/web/images/screen-home.png b/src/web/images/screen-home.png similarity index 100% rename from web/images/screen-home.png rename to src/web/images/screen-home.png diff --git a/web/images/screen-iconpack.png b/src/web/images/screen-iconpack.png similarity index 100% rename from web/images/screen-iconpack.png rename to src/web/images/screen-iconpack.png diff --git a/web/images/screen-lists.png b/src/web/images/screen-lists.png similarity index 100% rename from web/images/screen-lists.png rename to src/web/images/screen-lists.png diff --git a/web/images/screen-menutoolbar.png b/src/web/images/screen-menutoolbar.png similarity index 100% rename from web/images/screen-menutoolbar.png rename to src/web/images/screen-menutoolbar.png diff --git a/web/images/screen-palette.png b/src/web/images/screen-palette.png similarity index 100% rename from web/images/screen-palette.png rename to src/web/images/screen-palette.png diff --git a/web/images/screen-pickers.png b/src/web/images/screen-pickers.png similarity index 100% rename from web/images/screen-pickers.png rename to src/web/images/screen-pickers.png diff --git a/web/images/screen-progress.png b/src/web/images/screen-progress.png similarity index 100% rename from web/images/screen-progress.png rename to src/web/images/screen-progress.png diff --git a/web/images/screen-sliders.png b/src/web/images/screen-sliders.png similarity index 100% rename from web/images/screen-sliders.png rename to src/web/images/screen-sliders.png diff --git a/web/images/screen-snackbars.png b/src/web/images/screen-snackbars.png similarity index 100% rename from web/images/screen-snackbars.png rename to src/web/images/screen-snackbars.png diff --git a/web/images/screen-toggles.png b/src/web/images/screen-toggles.png similarity index 100% rename from web/images/screen-toggles.png rename to src/web/images/screen-toggles.png diff --git a/web/images/screen-treeview.png b/src/web/images/screen-treeview.png similarity index 100% rename from web/images/screen-treeview.png rename to src/web/images/screen-treeview.png diff --git a/web/images/screen-typography.png b/src/web/images/screen-typography.png similarity index 100% rename from web/images/screen-typography.png rename to src/web/images/screen-typography.png diff --git a/web/images/transitions-preview.gif b/src/web/images/transitions-preview.gif similarity index 100% rename from web/images/transitions-preview.gif rename to src/web/images/transitions-preview.gif diff --git a/web/images/wikiscreen-quickstart.png b/src/web/images/wikiscreen-quickstart.png similarity index 100% rename from web/images/wikiscreen-quickstart.png rename to src/web/images/wikiscreen-quickstart.png diff --git a/web/jsx/PaletteBuilder.js b/src/web/jsx/PaletteBuilder.js similarity index 100% rename from web/jsx/PaletteBuilder.js rename to src/web/jsx/PaletteBuilder.js diff --git a/web/scripts/PaletteBuilder.js b/src/web/scripts/PaletteBuilder.js similarity index 100% rename from web/scripts/PaletteBuilder.js rename to src/web/scripts/PaletteBuilder.js diff --git a/web/scripts/Swatches.js b/src/web/scripts/Swatches.js similarity index 100% rename from web/scripts/Swatches.js rename to src/web/scripts/Swatches.js diff --git a/web/scripts/react.js b/src/web/scripts/react.js similarity index 100% rename from web/scripts/react.js rename to src/web/scripts/react.js diff --git a/web/scripts/react.min.js b/src/web/scripts/react.min.js similarity index 100% rename from web/scripts/react.min.js rename to src/web/scripts/react.min.js diff --git a/web/styles/style.css b/src/web/styles/style.css similarity index 100% rename from web/styles/style.css rename to src/web/styles/style.css diff --git a/MaterialDesignColors.Wpf.Tests/ColorAssistTests.cs b/tests/MaterialDesignColors.Wpf.Tests/ColorAssistTests.cs similarity index 100% rename from MaterialDesignColors.Wpf.Tests/ColorAssistTests.cs rename to tests/MaterialDesignColors.Wpf.Tests/ColorAssistTests.cs diff --git a/MaterialDesignColors.Wpf.Tests/MaterialDesignColors.Wpf.Tests.csproj b/tests/MaterialDesignColors.Wpf.Tests/MaterialDesignColors.Wpf.Tests.csproj similarity index 92% rename from MaterialDesignColors.Wpf.Tests/MaterialDesignColors.Wpf.Tests.csproj rename to tests/MaterialDesignColors.Wpf.Tests/MaterialDesignColors.Wpf.Tests.csproj index 874b42986d..2c2dd5f43d 100644 --- a/MaterialDesignColors.Wpf.Tests/MaterialDesignColors.Wpf.Tests.csproj +++ b/tests/MaterialDesignColors.Wpf.Tests/MaterialDesignColors.Wpf.Tests.csproj @@ -18,7 +18,7 @@ - + diff --git a/MaterialDesignColors.Wpf.Tests/Properties/AssemblyInfo.cs b/tests/MaterialDesignColors.Wpf.Tests/Properties/AssemblyInfo.cs similarity index 100% rename from MaterialDesignColors.Wpf.Tests/Properties/AssemblyInfo.cs rename to tests/MaterialDesignColors.Wpf.Tests/Properties/AssemblyInfo.cs diff --git a/MaterialDesignColors.Wpf.Tests/ResourceProviderFixture.cs b/tests/MaterialDesignColors.Wpf.Tests/ResourceProviderFixture.cs similarity index 100% rename from MaterialDesignColors.Wpf.Tests/ResourceProviderFixture.cs rename to tests/MaterialDesignColors.Wpf.Tests/ResourceProviderFixture.cs diff --git a/MaterialDesignThemes.UITests/AllStyles.cs b/tests/MaterialDesignThemes.UITests/AllStyles.cs similarity index 100% rename from MaterialDesignThemes.UITests/AllStyles.cs rename to tests/MaterialDesignThemes.UITests/AllStyles.cs diff --git a/MaterialDesignThemes.UITests/MaterialDesignSpec.cs b/tests/MaterialDesignThemes.UITests/MaterialDesignSpec.cs similarity index 100% rename from MaterialDesignThemes.UITests/MaterialDesignSpec.cs rename to tests/MaterialDesignThemes.UITests/MaterialDesignSpec.cs diff --git a/MaterialDesignThemes.UITests/MaterialDesignThemes.UITests.csproj b/tests/MaterialDesignThemes.UITests/MaterialDesignThemes.UITests.csproj similarity index 92% rename from MaterialDesignThemes.UITests/MaterialDesignThemes.UITests.csproj rename to tests/MaterialDesignThemes.UITests/MaterialDesignThemes.UITests.csproj index a1e1361ccf..5eea0a74ee 100644 --- a/MaterialDesignThemes.UITests/MaterialDesignThemes.UITests.csproj +++ b/tests/MaterialDesignThemes.UITests/MaterialDesignThemes.UITests.csproj @@ -33,6 +33,6 @@ - + - + \ No newline at end of file diff --git a/MaterialDesignThemes.UITests/Samples/AutoSuggestBoxes/AutoSuggestTextBoxWithCollectionView.xaml b/tests/MaterialDesignThemes.UITests/Samples/AutoSuggestBoxes/AutoSuggestTextBoxWithCollectionView.xaml similarity index 100% rename from MaterialDesignThemes.UITests/Samples/AutoSuggestBoxes/AutoSuggestTextBoxWithCollectionView.xaml rename to tests/MaterialDesignThemes.UITests/Samples/AutoSuggestBoxes/AutoSuggestTextBoxWithCollectionView.xaml diff --git a/MaterialDesignThemes.UITests/Samples/AutoSuggestBoxes/AutoSuggestTextBoxWithCollectionView.xaml.cs b/tests/MaterialDesignThemes.UITests/Samples/AutoSuggestBoxes/AutoSuggestTextBoxWithCollectionView.xaml.cs similarity index 100% rename from MaterialDesignThemes.UITests/Samples/AutoSuggestBoxes/AutoSuggestTextBoxWithCollectionView.xaml.cs rename to tests/MaterialDesignThemes.UITests/Samples/AutoSuggestBoxes/AutoSuggestTextBoxWithCollectionView.xaml.cs diff --git a/MaterialDesignThemes.UITests/Samples/AutoSuggestBoxes/AutoSuggestTextBoxWithTemplate.xaml b/tests/MaterialDesignThemes.UITests/Samples/AutoSuggestBoxes/AutoSuggestTextBoxWithTemplate.xaml similarity index 100% rename from MaterialDesignThemes.UITests/Samples/AutoSuggestBoxes/AutoSuggestTextBoxWithTemplate.xaml rename to tests/MaterialDesignThemes.UITests/Samples/AutoSuggestBoxes/AutoSuggestTextBoxWithTemplate.xaml diff --git a/MaterialDesignThemes.UITests/Samples/AutoSuggestBoxes/AutoSuggestTextBoxWithTemplate.xaml.cs b/tests/MaterialDesignThemes.UITests/Samples/AutoSuggestBoxes/AutoSuggestTextBoxWithTemplate.xaml.cs similarity index 100% rename from MaterialDesignThemes.UITests/Samples/AutoSuggestBoxes/AutoSuggestTextBoxWithTemplate.xaml.cs rename to tests/MaterialDesignThemes.UITests/Samples/AutoSuggestBoxes/AutoSuggestTextBoxWithTemplate.xaml.cs diff --git a/MaterialDesignThemes.UITests/Samples/DialogHost/ClosingEventCounter.xaml b/tests/MaterialDesignThemes.UITests/Samples/DialogHost/ClosingEventCounter.xaml similarity index 100% rename from MaterialDesignThemes.UITests/Samples/DialogHost/ClosingEventCounter.xaml rename to tests/MaterialDesignThemes.UITests/Samples/DialogHost/ClosingEventCounter.xaml diff --git a/MaterialDesignThemes.UITests/Samples/DialogHost/ClosingEventCounter.xaml.cs b/tests/MaterialDesignThemes.UITests/Samples/DialogHost/ClosingEventCounter.xaml.cs similarity index 100% rename from MaterialDesignThemes.UITests/Samples/DialogHost/ClosingEventCounter.xaml.cs rename to tests/MaterialDesignThemes.UITests/Samples/DialogHost/ClosingEventCounter.xaml.cs diff --git a/MaterialDesignThemes.UITests/Samples/DialogHost/ClosingEventViewModel.cs b/tests/MaterialDesignThemes.UITests/Samples/DialogHost/ClosingEventViewModel.cs similarity index 100% rename from MaterialDesignThemes.UITests/Samples/DialogHost/ClosingEventViewModel.cs rename to tests/MaterialDesignThemes.UITests/Samples/DialogHost/ClosingEventViewModel.cs diff --git a/MaterialDesignThemes.UITests/Samples/DialogHost/LoadAndUnloadControl.xaml b/tests/MaterialDesignThemes.UITests/Samples/DialogHost/LoadAndUnloadControl.xaml similarity index 100% rename from MaterialDesignThemes.UITests/Samples/DialogHost/LoadAndUnloadControl.xaml rename to tests/MaterialDesignThemes.UITests/Samples/DialogHost/LoadAndUnloadControl.xaml diff --git a/MaterialDesignThemes.UITests/Samples/DialogHost/LoadAndUnloadControl.xaml.cs b/tests/MaterialDesignThemes.UITests/Samples/DialogHost/LoadAndUnloadControl.xaml.cs similarity index 100% rename from MaterialDesignThemes.UITests/Samples/DialogHost/LoadAndUnloadControl.xaml.cs rename to tests/MaterialDesignThemes.UITests/Samples/DialogHost/LoadAndUnloadControl.xaml.cs diff --git a/MaterialDesignThemes.UITests/Samples/DialogHost/RestoreFocus.xaml b/tests/MaterialDesignThemes.UITests/Samples/DialogHost/RestoreFocus.xaml similarity index 100% rename from MaterialDesignThemes.UITests/Samples/DialogHost/RestoreFocus.xaml rename to tests/MaterialDesignThemes.UITests/Samples/DialogHost/RestoreFocus.xaml diff --git a/MaterialDesignThemes.UITests/Samples/DialogHost/RestoreFocus.xaml.cs b/tests/MaterialDesignThemes.UITests/Samples/DialogHost/RestoreFocus.xaml.cs similarity index 100% rename from MaterialDesignThemes.UITests/Samples/DialogHost/RestoreFocus.xaml.cs rename to tests/MaterialDesignThemes.UITests/Samples/DialogHost/RestoreFocus.xaml.cs diff --git a/MaterialDesignThemes.UITests/Samples/DialogHost/RestoreFocusDisabled.xaml b/tests/MaterialDesignThemes.UITests/Samples/DialogHost/RestoreFocusDisabled.xaml similarity index 100% rename from MaterialDesignThemes.UITests/Samples/DialogHost/RestoreFocusDisabled.xaml rename to tests/MaterialDesignThemes.UITests/Samples/DialogHost/RestoreFocusDisabled.xaml diff --git a/MaterialDesignThemes.UITests/Samples/DialogHost/RestoreFocusDisabled.xaml.cs b/tests/MaterialDesignThemes.UITests/Samples/DialogHost/RestoreFocusDisabled.xaml.cs similarity index 100% rename from MaterialDesignThemes.UITests/Samples/DialogHost/RestoreFocusDisabled.xaml.cs rename to tests/MaterialDesignThemes.UITests/Samples/DialogHost/RestoreFocusDisabled.xaml.cs diff --git a/MaterialDesignThemes.UITests/Samples/DialogHost/WithComboBox.xaml b/tests/MaterialDesignThemes.UITests/Samples/DialogHost/WithComboBox.xaml similarity index 100% rename from MaterialDesignThemes.UITests/Samples/DialogHost/WithComboBox.xaml rename to tests/MaterialDesignThemes.UITests/Samples/DialogHost/WithComboBox.xaml diff --git a/MaterialDesignThemes.UITests/Samples/DialogHost/WithComboBox.xaml.cs b/tests/MaterialDesignThemes.UITests/Samples/DialogHost/WithComboBox.xaml.cs similarity index 100% rename from MaterialDesignThemes.UITests/Samples/DialogHost/WithComboBox.xaml.cs rename to tests/MaterialDesignThemes.UITests/Samples/DialogHost/WithComboBox.xaml.cs diff --git a/MaterialDesignThemes.UITests/Samples/DialogHost/WithCounter.xaml b/tests/MaterialDesignThemes.UITests/Samples/DialogHost/WithCounter.xaml similarity index 100% rename from MaterialDesignThemes.UITests/Samples/DialogHost/WithCounter.xaml rename to tests/MaterialDesignThemes.UITests/Samples/DialogHost/WithCounter.xaml diff --git a/MaterialDesignThemes.UITests/Samples/DialogHost/WithCounter.xaml.cs b/tests/MaterialDesignThemes.UITests/Samples/DialogHost/WithCounter.xaml.cs similarity index 100% rename from MaterialDesignThemes.UITests/Samples/DialogHost/WithCounter.xaml.cs rename to tests/MaterialDesignThemes.UITests/Samples/DialogHost/WithCounter.xaml.cs diff --git a/MaterialDesignThemes.UITests/Samples/DrawerHost/CancellingDrawerHost.xaml b/tests/MaterialDesignThemes.UITests/Samples/DrawerHost/CancellingDrawerHost.xaml similarity index 100% rename from MaterialDesignThemes.UITests/Samples/DrawerHost/CancellingDrawerHost.xaml rename to tests/MaterialDesignThemes.UITests/Samples/DrawerHost/CancellingDrawerHost.xaml diff --git a/MaterialDesignThemes.UITests/Samples/DrawerHost/CancellingDrawerHost.xaml.cs b/tests/MaterialDesignThemes.UITests/Samples/DrawerHost/CancellingDrawerHost.xaml.cs similarity index 100% rename from MaterialDesignThemes.UITests/Samples/DrawerHost/CancellingDrawerHost.xaml.cs rename to tests/MaterialDesignThemes.UITests/Samples/DrawerHost/CancellingDrawerHost.xaml.cs diff --git a/MaterialDesignThemes.UITests/Samples/PasswordBox/BoundPasswordBox.xaml b/tests/MaterialDesignThemes.UITests/Samples/PasswordBox/BoundPasswordBox.xaml similarity index 100% rename from MaterialDesignThemes.UITests/Samples/PasswordBox/BoundPasswordBox.xaml rename to tests/MaterialDesignThemes.UITests/Samples/PasswordBox/BoundPasswordBox.xaml diff --git a/MaterialDesignThemes.UITests/Samples/PasswordBox/BoundPasswordBox.xaml.cs b/tests/MaterialDesignThemes.UITests/Samples/PasswordBox/BoundPasswordBox.xaml.cs similarity index 100% rename from MaterialDesignThemes.UITests/Samples/PasswordBox/BoundPasswordBox.xaml.cs rename to tests/MaterialDesignThemes.UITests/Samples/PasswordBox/BoundPasswordBox.xaml.cs diff --git a/MaterialDesignThemes.UITests/Samples/PasswordBox/BoundPasswordBoxViewModel.cs b/tests/MaterialDesignThemes.UITests/Samples/PasswordBox/BoundPasswordBoxViewModel.cs similarity index 100% rename from MaterialDesignThemes.UITests/Samples/PasswordBox/BoundPasswordBoxViewModel.cs rename to tests/MaterialDesignThemes.UITests/Samples/PasswordBox/BoundPasswordBoxViewModel.cs diff --git a/MaterialDesignThemes.UITests/Samples/PasswordBox/BoundPasswordBoxWindow.xaml b/tests/MaterialDesignThemes.UITests/Samples/PasswordBox/BoundPasswordBoxWindow.xaml similarity index 100% rename from MaterialDesignThemes.UITests/Samples/PasswordBox/BoundPasswordBoxWindow.xaml rename to tests/MaterialDesignThemes.UITests/Samples/PasswordBox/BoundPasswordBoxWindow.xaml diff --git a/MaterialDesignThemes.UITests/Samples/PasswordBox/BoundPasswordBoxWindow.xaml.cs b/tests/MaterialDesignThemes.UITests/Samples/PasswordBox/BoundPasswordBoxWindow.xaml.cs similarity index 100% rename from MaterialDesignThemes.UITests/Samples/PasswordBox/BoundPasswordBoxWindow.xaml.cs rename to tests/MaterialDesignThemes.UITests/Samples/PasswordBox/BoundPasswordBoxWindow.xaml.cs diff --git a/MaterialDesignThemes.UITests/Samples/PopupBox/PopupBoxWithTemplateSelector.xaml b/tests/MaterialDesignThemes.UITests/Samples/PopupBox/PopupBoxWithTemplateSelector.xaml similarity index 100% rename from MaterialDesignThemes.UITests/Samples/PopupBox/PopupBoxWithTemplateSelector.xaml rename to tests/MaterialDesignThemes.UITests/Samples/PopupBox/PopupBoxWithTemplateSelector.xaml diff --git a/MaterialDesignThemes.UITests/Samples/PopupBox/PopupBoxWithTemplateSelector.xaml.cs b/tests/MaterialDesignThemes.UITests/Samples/PopupBox/PopupBoxWithTemplateSelector.xaml.cs similarity index 100% rename from MaterialDesignThemes.UITests/Samples/PopupBox/PopupBoxWithTemplateSelector.xaml.cs rename to tests/MaterialDesignThemes.UITests/Samples/PopupBox/PopupBoxWithTemplateSelector.xaml.cs diff --git a/MaterialDesignThemes.UITests/Samples/SplitButton/SplitButtonWithCommandBinding.xaml b/tests/MaterialDesignThemes.UITests/Samples/SplitButton/SplitButtonWithCommandBinding.xaml similarity index 100% rename from MaterialDesignThemes.UITests/Samples/SplitButton/SplitButtonWithCommandBinding.xaml rename to tests/MaterialDesignThemes.UITests/Samples/SplitButton/SplitButtonWithCommandBinding.xaml diff --git a/MaterialDesignThemes.UITests/Samples/SplitButton/SplitButtonWithCommandBinding.xaml.cs b/tests/MaterialDesignThemes.UITests/Samples/SplitButton/SplitButtonWithCommandBinding.xaml.cs similarity index 100% rename from MaterialDesignThemes.UITests/Samples/SplitButton/SplitButtonWithCommandBinding.xaml.cs rename to tests/MaterialDesignThemes.UITests/Samples/SplitButton/SplitButtonWithCommandBinding.xaml.cs diff --git a/MaterialDesignThemes.UITests/Samples/SplitButton/SplitButtonWithCommandBindingWindow.xaml b/tests/MaterialDesignThemes.UITests/Samples/SplitButton/SplitButtonWithCommandBindingWindow.xaml similarity index 100% rename from MaterialDesignThemes.UITests/Samples/SplitButton/SplitButtonWithCommandBindingWindow.xaml rename to tests/MaterialDesignThemes.UITests/Samples/SplitButton/SplitButtonWithCommandBindingWindow.xaml diff --git a/MaterialDesignThemes.UITests/Samples/SplitButton/SplitButtonWithCommandBindingWindow.xaml.cs b/tests/MaterialDesignThemes.UITests/Samples/SplitButton/SplitButtonWithCommandBindingWindow.xaml.cs similarity index 100% rename from MaterialDesignThemes.UITests/Samples/SplitButton/SplitButtonWithCommandBindingWindow.xaml.cs rename to tests/MaterialDesignThemes.UITests/Samples/SplitButton/SplitButtonWithCommandBindingWindow.xaml.cs diff --git a/MaterialDesignThemes.UITests/Samples/Theme/ColorAdjustWindow.xaml b/tests/MaterialDesignThemes.UITests/Samples/Theme/ColorAdjustWindow.xaml similarity index 100% rename from MaterialDesignThemes.UITests/Samples/Theme/ColorAdjustWindow.xaml rename to tests/MaterialDesignThemes.UITests/Samples/Theme/ColorAdjustWindow.xaml diff --git a/MaterialDesignThemes.UITests/Samples/Theme/ColorAdjustWindow.xaml.cs b/tests/MaterialDesignThemes.UITests/Samples/Theme/ColorAdjustWindow.xaml.cs similarity index 100% rename from MaterialDesignThemes.UITests/Samples/Theme/ColorAdjustWindow.xaml.cs rename to tests/MaterialDesignThemes.UITests/Samples/Theme/ColorAdjustWindow.xaml.cs diff --git a/MaterialDesignThemes.UITests/Samples/Validation/ValidationUpdates.xaml b/tests/MaterialDesignThemes.UITests/Samples/Validation/ValidationUpdates.xaml similarity index 100% rename from MaterialDesignThemes.UITests/Samples/Validation/ValidationUpdates.xaml rename to tests/MaterialDesignThemes.UITests/Samples/Validation/ValidationUpdates.xaml diff --git a/MaterialDesignThemes.UITests/Samples/Validation/ValidationUpdates.xaml.cs b/tests/MaterialDesignThemes.UITests/Samples/Validation/ValidationUpdates.xaml.cs similarity index 100% rename from MaterialDesignThemes.UITests/Samples/Validation/ValidationUpdates.xaml.cs rename to tests/MaterialDesignThemes.UITests/Samples/Validation/ValidationUpdates.xaml.cs diff --git a/MaterialDesignThemes.UITests/TestBase.cs b/tests/MaterialDesignThemes.UITests/TestBase.cs similarity index 100% rename from MaterialDesignThemes.UITests/TestBase.cs rename to tests/MaterialDesignThemes.UITests/TestBase.cs diff --git a/MaterialDesignThemes.UITests/WPF/AutoSuggestBoxes/AutoSuggestTextBoxTests.cs b/tests/MaterialDesignThemes.UITests/WPF/AutoSuggestBoxes/AutoSuggestTextBoxTests.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/AutoSuggestBoxes/AutoSuggestTextBoxTests.cs rename to tests/MaterialDesignThemes.UITests/WPF/AutoSuggestBoxes/AutoSuggestTextBoxTests.cs diff --git a/MaterialDesignThemes.UITests/WPF/Buttons/OutlineButtonTests.cs b/tests/MaterialDesignThemes.UITests/WPF/Buttons/OutlineButtonTests.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/Buttons/OutlineButtonTests.cs rename to tests/MaterialDesignThemes.UITests/WPF/Buttons/OutlineButtonTests.cs diff --git a/MaterialDesignThemes.UITests/WPF/Buttons/RaisedButtonTests.cs b/tests/MaterialDesignThemes.UITests/WPF/Buttons/RaisedButtonTests.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/Buttons/RaisedButtonTests.cs rename to tests/MaterialDesignThemes.UITests/WPF/Buttons/RaisedButtonTests.cs diff --git a/MaterialDesignThemes.UITests/WPF/Cards/ElevatedCardTests.cs b/tests/MaterialDesignThemes.UITests/WPF/Cards/ElevatedCardTests.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/Cards/ElevatedCardTests.cs rename to tests/MaterialDesignThemes.UITests/WPF/Cards/ElevatedCardTests.cs diff --git a/MaterialDesignThemes.UITests/WPF/Cards/OutlinedCardTests.cs b/tests/MaterialDesignThemes.UITests/WPF/Cards/OutlinedCardTests.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/Cards/OutlinedCardTests.cs rename to tests/MaterialDesignThemes.UITests/WPF/Cards/OutlinedCardTests.cs diff --git a/MaterialDesignThemes.UITests/WPF/ColorPickerTests.cs b/tests/MaterialDesignThemes.UITests/WPF/ColorPickerTests.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/ColorPickerTests.cs rename to tests/MaterialDesignThemes.UITests/WPF/ColorPickerTests.cs diff --git a/MaterialDesignThemes.UITests/WPF/ColorZones/ColorZoneTests.cs b/tests/MaterialDesignThemes.UITests/WPF/ColorZones/ColorZoneTests.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/ColorZones/ColorZoneTests.cs rename to tests/MaterialDesignThemes.UITests/WPF/ColorZones/ColorZoneTests.cs diff --git a/MaterialDesignThemes.UITests/WPF/ComboBoxes/ComboBoxTests.cs b/tests/MaterialDesignThemes.UITests/WPF/ComboBoxes/ComboBoxTests.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/ComboBoxes/ComboBoxTests.cs rename to tests/MaterialDesignThemes.UITests/WPF/ComboBoxes/ComboBoxTests.cs diff --git a/MaterialDesignThemes.UITests/WPF/ContentControls/ContentControlTests.cs b/tests/MaterialDesignThemes.UITests/WPF/ContentControls/ContentControlTests.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/ContentControls/ContentControlTests.cs rename to tests/MaterialDesignThemes.UITests/WPF/ContentControls/ContentControlTests.cs diff --git a/MaterialDesignThemes.UITests/WPF/DatePickers/DatePickerTests.cs b/tests/MaterialDesignThemes.UITests/WPF/DatePickers/DatePickerTests.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/DatePickers/DatePickerTests.cs rename to tests/MaterialDesignThemes.UITests/WPF/DatePickers/DatePickerTests.cs diff --git a/MaterialDesignThemes.UITests/WPF/DialogHosts/DialogHostTests.cs b/tests/MaterialDesignThemes.UITests/WPF/DialogHosts/DialogHostTests.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/DialogHosts/DialogHostTests.cs rename to tests/MaterialDesignThemes.UITests/WPF/DialogHosts/DialogHostTests.cs diff --git a/MaterialDesignThemes.UITests/WPF/DrawerHosts/DrawerHostTests.cs b/tests/MaterialDesignThemes.UITests/WPF/DrawerHosts/DrawerHostTests.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/DrawerHosts/DrawerHostTests.cs rename to tests/MaterialDesignThemes.UITests/WPF/DrawerHosts/DrawerHostTests.cs diff --git a/MaterialDesignThemes.UITests/WPF/Flippers/ClassicFlipperTests.cs b/tests/MaterialDesignThemes.UITests/WPF/Flippers/ClassicFlipperTests.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/Flippers/ClassicFlipperTests.cs rename to tests/MaterialDesignThemes.UITests/WPF/Flippers/ClassicFlipperTests.cs diff --git a/MaterialDesignThemes.UITests/WPF/ListBoxes/ListBoxTests.cs b/tests/MaterialDesignThemes.UITests/WPF/ListBoxes/ListBoxTests.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/ListBoxes/ListBoxTests.cs rename to tests/MaterialDesignThemes.UITests/WPF/ListBoxes/ListBoxTests.cs diff --git a/MaterialDesignThemes.UITests/WPF/PasswordBoxes/PasswordBoxTests.cs b/tests/MaterialDesignThemes.UITests/WPF/PasswordBoxes/PasswordBoxTests.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/PasswordBoxes/PasswordBoxTests.cs rename to tests/MaterialDesignThemes.UITests/WPF/PasswordBoxes/PasswordBoxTests.cs diff --git a/MaterialDesignThemes.UITests/WPF/PopupBoxes/PopupBoxTests.cs b/tests/MaterialDesignThemes.UITests/WPF/PopupBoxes/PopupBoxTests.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/PopupBoxes/PopupBoxTests.cs rename to tests/MaterialDesignThemes.UITests/WPF/PopupBoxes/PopupBoxTests.cs diff --git a/MaterialDesignThemes.UITests/WPF/SnackBars/SnackBarTests.cs b/tests/MaterialDesignThemes.UITests/WPF/SnackBars/SnackBarTests.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/SnackBars/SnackBarTests.cs rename to tests/MaterialDesignThemes.UITests/WPF/SnackBars/SnackBarTests.cs diff --git a/MaterialDesignThemes.UITests/WPF/SplitButtons/SplitButtonTests.cs b/tests/MaterialDesignThemes.UITests/WPF/SplitButtons/SplitButtonTests.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/SplitButtons/SplitButtonTests.cs rename to tests/MaterialDesignThemes.UITests/WPF/SplitButtons/SplitButtonTests.cs diff --git a/MaterialDesignThemes.UITests/WPF/TabControls/TabControlTests.cs b/tests/MaterialDesignThemes.UITests/WPF/TabControls/TabControlTests.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/TabControls/TabControlTests.cs rename to tests/MaterialDesignThemes.UITests/WPF/TabControls/TabControlTests.cs diff --git a/MaterialDesignThemes.UITests/WPF/TextBoxes/MaterialDesignTextBox.cs b/tests/MaterialDesignThemes.UITests/WPF/TextBoxes/MaterialDesignTextBox.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/TextBoxes/MaterialDesignTextBox.cs rename to tests/MaterialDesignThemes.UITests/WPF/TextBoxes/MaterialDesignTextBox.cs diff --git a/MaterialDesignThemes.UITests/WPF/TextBoxes/TextBoxTests.cs b/tests/MaterialDesignThemes.UITests/WPF/TextBoxes/TextBoxTests.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/TextBoxes/TextBoxTests.cs rename to tests/MaterialDesignThemes.UITests/WPF/TextBoxes/TextBoxTests.cs diff --git a/MaterialDesignThemes.UITests/WPF/TextFieldDefaultHeightTests.cs b/tests/MaterialDesignThemes.UITests/WPF/TextFieldDefaultHeightTests.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/TextFieldDefaultHeightTests.cs rename to tests/MaterialDesignThemes.UITests/WPF/TextFieldDefaultHeightTests.cs diff --git a/MaterialDesignThemes.UITests/WPF/Theme/ColorAdjustTests.cs b/tests/MaterialDesignThemes.UITests/WPF/Theme/ColorAdjustTests.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/Theme/ColorAdjustTests.cs rename to tests/MaterialDesignThemes.UITests/WPF/Theme/ColorAdjustTests.cs diff --git a/MaterialDesignThemes.UITests/WPF/Theme/ThemeTests.cs b/tests/MaterialDesignThemes.UITests/WPF/Theme/ThemeTests.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/Theme/ThemeTests.cs rename to tests/MaterialDesignThemes.UITests/WPF/Theme/ThemeTests.cs diff --git a/MaterialDesignThemes.UITests/WPF/Theme/ThemeTests.g.cs b/tests/MaterialDesignThemes.UITests/WPF/Theme/ThemeTests.g.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/Theme/ThemeTests.g.cs rename to tests/MaterialDesignThemes.UITests/WPF/Theme/ThemeTests.g.cs diff --git a/MaterialDesignThemes.UITests/WPF/TimePickers/MaterialDesignTimePicker.cs b/tests/MaterialDesignThemes.UITests/WPF/TimePickers/MaterialDesignTimePicker.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/TimePickers/MaterialDesignTimePicker.cs rename to tests/MaterialDesignThemes.UITests/WPF/TimePickers/MaterialDesignTimePicker.cs diff --git a/MaterialDesignThemes.UITests/WPF/TimePickers/TimePickerTests.cs b/tests/MaterialDesignThemes.UITests/WPF/TimePickers/TimePickerTests.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/TimePickers/TimePickerTests.cs rename to tests/MaterialDesignThemes.UITests/WPF/TimePickers/TimePickerTests.cs diff --git a/MaterialDesignThemes.UITests/WPF/ToolBars/ToolBarTests.cs b/tests/MaterialDesignThemes.UITests/WPF/ToolBars/ToolBarTests.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/ToolBars/ToolBarTests.cs rename to tests/MaterialDesignThemes.UITests/WPF/ToolBars/ToolBarTests.cs diff --git a/MaterialDesignThemes.UITests/WPF/TreeListViews/TestableCollection.cs b/tests/MaterialDesignThemes.UITests/WPF/TreeListViews/TestableCollection.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/TreeListViews/TestableCollection.cs rename to tests/MaterialDesignThemes.UITests/WPF/TreeListViews/TestableCollection.cs diff --git a/MaterialDesignThemes.UITests/WPF/TreeListViews/TreeItem.cs b/tests/MaterialDesignThemes.UITests/WPF/TreeListViews/TreeItem.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/TreeListViews/TreeItem.cs rename to tests/MaterialDesignThemes.UITests/WPF/TreeListViews/TreeItem.cs diff --git a/MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewDataBinding.xaml b/tests/MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewDataBinding.xaml similarity index 100% rename from MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewDataBinding.xaml rename to tests/MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewDataBinding.xaml diff --git a/MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewDataBinding.xaml.cs b/tests/MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewDataBinding.xaml.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewDataBinding.xaml.cs rename to tests/MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewDataBinding.xaml.cs diff --git a/MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewExtensions.cs b/tests/MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewExtensions.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewExtensions.cs rename to tests/MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewExtensions.cs diff --git a/MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewImplicitTemplate.xaml b/tests/MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewImplicitTemplate.xaml similarity index 100% rename from MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewImplicitTemplate.xaml rename to tests/MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewImplicitTemplate.xaml diff --git a/MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewImplicitTemplate.xaml.cs b/tests/MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewImplicitTemplate.xaml.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewImplicitTemplate.xaml.cs rename to tests/MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewImplicitTemplate.xaml.cs diff --git a/MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewTemplateSelector.xaml b/tests/MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewTemplateSelector.xaml similarity index 100% rename from MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewTemplateSelector.xaml rename to tests/MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewTemplateSelector.xaml diff --git a/MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewTemplateSelector.xaml.cs b/tests/MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewTemplateSelector.xaml.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewTemplateSelector.xaml.cs rename to tests/MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewTemplateSelector.xaml.cs diff --git a/MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewTests.cs b/tests/MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewTests.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewTests.cs rename to tests/MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewTests.cs diff --git a/MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewWithCollectionView.xaml b/tests/MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewWithCollectionView.xaml similarity index 100% rename from MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewWithCollectionView.xaml rename to tests/MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewWithCollectionView.xaml diff --git a/MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewWithCollectionView.xaml.cs b/tests/MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewWithCollectionView.xaml.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewWithCollectionView.xaml.cs rename to tests/MaterialDesignThemes.UITests/WPF/TreeListViews/TreeListViewWithCollectionView.xaml.cs diff --git a/MaterialDesignThemes.UITests/WPF/TreeViews/TreeViewTests.cs b/tests/MaterialDesignThemes.UITests/WPF/TreeViews/TreeViewTests.cs similarity index 100% rename from MaterialDesignThemes.UITests/WPF/TreeViews/TreeViewTests.cs rename to tests/MaterialDesignThemes.UITests/WPF/TreeViews/TreeViewTests.cs diff --git a/MaterialDesignThemes.UITests/XamlTestExtensions.cs b/tests/MaterialDesignThemes.UITests/XamlTestExtensions.cs similarity index 100% rename from MaterialDesignThemes.UITests/XamlTestExtensions.cs rename to tests/MaterialDesignThemes.UITests/XamlTestExtensions.cs diff --git a/MaterialDesignThemes.Wpf.Tests/AdornerExtensionsTests.cs b/tests/MaterialDesignThemes.Wpf.Tests/AdornerExtensionsTests.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/AdornerExtensionsTests.cs rename to tests/MaterialDesignThemes.Wpf.Tests/AdornerExtensionsTests.cs diff --git a/MaterialDesignThemes.Wpf.Tests/AllStyles.cs b/tests/MaterialDesignThemes.Wpf.Tests/AllStyles.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/AllStyles.cs rename to tests/MaterialDesignThemes.Wpf.Tests/AllStyles.cs diff --git a/MaterialDesignThemes.Wpf.Tests/BundledThemeTests.cs b/tests/MaterialDesignThemes.Wpf.Tests/BundledThemeTests.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/BundledThemeTests.cs rename to tests/MaterialDesignThemes.Wpf.Tests/BundledThemeTests.cs diff --git a/MaterialDesignThemes.Wpf.Tests/ButtonProgressAssistTests.cs b/tests/MaterialDesignThemes.Wpf.Tests/ButtonProgressAssistTests.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/ButtonProgressAssistTests.cs rename to tests/MaterialDesignThemes.Wpf.Tests/ButtonProgressAssistTests.cs diff --git a/MaterialDesignThemes.Wpf.Tests/CalendarFormatInfoTests.cs b/tests/MaterialDesignThemes.Wpf.Tests/CalendarFormatInfoTests.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/CalendarFormatInfoTests.cs rename to tests/MaterialDesignThemes.Wpf.Tests/CalendarFormatInfoTests.cs diff --git a/MaterialDesignThemes.Wpf.Tests/CheckBoxAssistTests.cs b/tests/MaterialDesignThemes.Wpf.Tests/CheckBoxAssistTests.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/CheckBoxAssistTests.cs rename to tests/MaterialDesignThemes.Wpf.Tests/CheckBoxAssistTests.cs diff --git a/MaterialDesignThemes.Wpf.Tests/ClockTests.cs b/tests/MaterialDesignThemes.Wpf.Tests/ClockTests.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/ClockTests.cs rename to tests/MaterialDesignThemes.Wpf.Tests/ClockTests.cs diff --git a/MaterialDesignThemes.Wpf.Tests/ColorPickerTests.cs b/tests/MaterialDesignThemes.Wpf.Tests/ColorPickerTests.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/ColorPickerTests.cs rename to tests/MaterialDesignThemes.Wpf.Tests/ColorPickerTests.cs diff --git a/MaterialDesignThemes.Wpf.Tests/Converters/BrushOpacityConverterTests.cs b/tests/MaterialDesignThemes.Wpf.Tests/Converters/BrushOpacityConverterTests.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/Converters/BrushOpacityConverterTests.cs rename to tests/MaterialDesignThemes.Wpf.Tests/Converters/BrushOpacityConverterTests.cs diff --git a/MaterialDesignThemes.Wpf.Tests/Converters/DoubleToCornerRadiusConverterTests.cs b/tests/MaterialDesignThemes.Wpf.Tests/Converters/DoubleToCornerRadiusConverterTests.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/Converters/DoubleToCornerRadiusConverterTests.cs rename to tests/MaterialDesignThemes.Wpf.Tests/Converters/DoubleToCornerRadiusConverterTests.cs diff --git a/tests/MaterialDesignThemes.Wpf.Tests/Converters/FloatingHintTransformConverterTests.cs b/tests/MaterialDesignThemes.Wpf.Tests/Converters/FloatingHintTransformConverterTests.cs new file mode 100644 index 0000000000..941e672fba --- /dev/null +++ b/tests/MaterialDesignThemes.Wpf.Tests/Converters/FloatingHintTransformConverterTests.cs @@ -0,0 +1,83 @@ +using System.Globalization; +using System.Windows.Media; +using MaterialDesignThemes.Wpf.Converters; +using Xunit; + +namespace MaterialDesignThemes.Wpf.Tests.Converters; + +public class FloatingHintTransformConverterTests +{ + public static IEnumerable InvalidParameters => + new[] + { + new object?[] {null, null, null, null}, + new object?[] {1.0, null, null, null}, + new object?[] {null, 1.0, null, null}, + new object?[] {null, null, 1.0, null}, + new object?[] {null, null, null, new Point()}, + new object?[] {1.0, DependencyProperty.UnsetValue, DependencyProperty.UnsetValue, DependencyProperty.UnsetValue}, + new object?[] {DependencyProperty.UnsetValue, 1.0, DependencyProperty.UnsetValue, DependencyProperty.UnsetValue}, + new object?[] {DependencyProperty.UnsetValue, DependencyProperty.UnsetValue, 1.0, DependencyProperty.UnsetValue}, + new object?[] {DependencyProperty.UnsetValue, DependencyProperty.UnsetValue, DependencyProperty.UnsetValue, new Point() }, + }; + + [Theory] + [MemberData(nameof(InvalidParameters))] + public void WhenParametersAreNotSetItReturnsIdentity(object? scale, object? lower, object? upper, object? offset) + { + var converter = new FloatingHintTransformConverter(); + + var result = converter.Convert(new[] { scale, lower, upper, offset }, + typeof(Transform), null, CultureInfo.CurrentUICulture); + + Assert.Equal(Transform.Identity, result); + } + + [Theory] + [InlineData(2.0, 1.5, 3.0, 3.0, -4.0)] + [InlineData(1.5, 2.0, 3.0, 2.0, -3.0)] + public void WhenParametersAreSpecifiedItReturnsTransforms(double scale, double lower, double upper, double x, double y) + { + var converter = new FloatingHintTransformConverter(); + + var result = (TransformGroup?)converter.Convert(new object?[] { scale, lower, upper, new Point(x, y), 0 }, typeof(Transform), null, CultureInfo.CurrentUICulture); + + Assert.NotNull(result); + var scaleTransform = (ScaleTransform)result!.Children[0]; + var translateTransform = (TranslateTransform)result.Children[1]; + + Assert.Equal(upper + (lower - upper) * scale, scaleTransform.ScaleX); + Assert.Equal(upper + (lower - upper) * scale, scaleTransform.ScaleY); + + Assert.Equal(scale * x, translateTransform.X); + Assert.Equal(scale * y, translateTransform.Y); + } + + [Theory] + [InlineData(2.0, 1.5, 3.0, 3.0, 4.0)] + [InlineData(1.5, 2.0, 3.0, 2.0, 3.0)] + public void WhenParametersAreSpecifiedAndScaleTransformDisabledItReturnsTransforms(double scale, double lower, double upper, double x, double y) + { + var converter = new FloatingHintTransformConverter { ApplyScaleTransform = false }; + + var result = (TransformGroup?)converter.Convert(new object?[] { scale, lower, upper, new Point(x, y), 0 }, typeof(Transform), null, CultureInfo.CurrentUICulture); + + Assert.NotNull(result); + Assert.Single(result.Children); + Assert.IsType(result.Children[0]); + } + + [Theory] + [InlineData(2.0, 1.5, 3.0, 3.0, 4.0)] + [InlineData(1.5, 2.0, 3.0, 2.0, 3.0)] + public void WhenParametersAreSpecifiedAndTranslateTransformDisabledItReturnsTransforms(double scale, double lower, double upper, double x, double y) + { + var converter = new FloatingHintTransformConverter { ApplyTranslateTransform = false }; + + var result = (TransformGroup?)converter.Convert(new object?[] { scale, lower, upper, new Point(x, y), 0 }, typeof(Transform), null, CultureInfo.CurrentUICulture); + + Assert.NotNull(result); + Assert.Single(result.Children); + Assert.IsType(result.Children[0]); + } +} diff --git a/MaterialDesignThemes.Wpf.Tests/Converters/MathConverterTests.cs b/tests/MaterialDesignThemes.Wpf.Tests/Converters/MathConverterTests.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/Converters/MathConverterTests.cs rename to tests/MaterialDesignThemes.Wpf.Tests/Converters/MathConverterTests.cs diff --git a/MaterialDesignThemes.Wpf.Tests/Converters/MathMultipleConverterTests.cs b/tests/MaterialDesignThemes.Wpf.Tests/Converters/MathMultipleConverterTests.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/Converters/MathMultipleConverterTests.cs rename to tests/MaterialDesignThemes.Wpf.Tests/Converters/MathMultipleConverterTests.cs diff --git a/MaterialDesignThemes.Wpf.Tests/Converters/SliderToolTipConverterTests.cs b/tests/MaterialDesignThemes.Wpf.Tests/Converters/SliderToolTipConverterTests.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/Converters/SliderToolTipConverterTests.cs rename to tests/MaterialDesignThemes.Wpf.Tests/Converters/SliderToolTipConverterTests.cs diff --git a/MaterialDesignThemes.Wpf.Tests/CustomColorThemeTests.cs b/tests/MaterialDesignThemes.Wpf.Tests/CustomColorThemeTests.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/CustomColorThemeTests.cs rename to tests/MaterialDesignThemes.Wpf.Tests/CustomColorThemeTests.cs diff --git a/MaterialDesignThemes.Wpf.Tests/DataGridAssistTests.cs b/tests/MaterialDesignThemes.Wpf.Tests/DataGridAssistTests.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/DataGridAssistTests.cs rename to tests/MaterialDesignThemes.Wpf.Tests/DataGridAssistTests.cs diff --git a/MaterialDesignThemes.Wpf.Tests/DialogHostTests.cs b/tests/MaterialDesignThemes.Wpf.Tests/DialogHostTests.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/DialogHostTests.cs rename to tests/MaterialDesignThemes.Wpf.Tests/DialogHostTests.cs diff --git a/MaterialDesignThemes.Wpf.Tests/DrawerHostTests.cs b/tests/MaterialDesignThemes.Wpf.Tests/DrawerHostTests.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/DrawerHostTests.cs rename to tests/MaterialDesignThemes.Wpf.Tests/DrawerHostTests.cs diff --git a/MaterialDesignThemes.Wpf.Tests/EnumDataAttribute.cs b/tests/MaterialDesignThemes.Wpf.Tests/EnumDataAttribute.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/EnumDataAttribute.cs rename to tests/MaterialDesignThemes.Wpf.Tests/EnumDataAttribute.cs diff --git a/MaterialDesignThemes.Wpf.Tests/FlipperAssistTests.cs b/tests/MaterialDesignThemes.Wpf.Tests/FlipperAssistTests.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/FlipperAssistTests.cs rename to tests/MaterialDesignThemes.Wpf.Tests/FlipperAssistTests.cs diff --git a/MaterialDesignThemes.Wpf.Tests/Internal/TreeListViewItemsCollectionTests.cs b/tests/MaterialDesignThemes.Wpf.Tests/Internal/TreeListViewItemsCollectionTests.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/Internal/TreeListViewItemsCollectionTests.cs rename to tests/MaterialDesignThemes.Wpf.Tests/Internal/TreeListViewItemsCollectionTests.cs diff --git a/MaterialDesignThemes.Wpf.Tests/LabelTests.cs b/tests/MaterialDesignThemes.Wpf.Tests/LabelTests.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/LabelTests.cs rename to tests/MaterialDesignThemes.Wpf.Tests/LabelTests.cs diff --git a/MaterialDesignThemes.Wpf.Tests/MaterialDesignThemes.Wpf.Tests.csproj b/tests/MaterialDesignThemes.Wpf.Tests/MaterialDesignThemes.Wpf.Tests.csproj similarity index 87% rename from MaterialDesignThemes.Wpf.Tests/MaterialDesignThemes.Wpf.Tests.csproj rename to tests/MaterialDesignThemes.Wpf.Tests/MaterialDesignThemes.Wpf.Tests.csproj index 2bca20ffbf..e931ccdda3 100644 --- a/MaterialDesignThemes.Wpf.Tests/MaterialDesignThemes.Wpf.Tests.csproj +++ b/tests/MaterialDesignThemes.Wpf.Tests/MaterialDesignThemes.Wpf.Tests.csproj @@ -18,8 +18,8 @@ - - + + diff --git a/MaterialDesignThemes.Wpf.Tests/MdixHelper.cs b/tests/MaterialDesignThemes.Wpf.Tests/MdixHelper.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/MdixHelper.cs rename to tests/MaterialDesignThemes.Wpf.Tests/MdixHelper.cs diff --git a/MaterialDesignThemes.Wpf.Tests/PackIconTests.cs b/tests/MaterialDesignThemes.Wpf.Tests/PackIconTests.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/PackIconTests.cs rename to tests/MaterialDesignThemes.Wpf.Tests/PackIconTests.cs diff --git a/MaterialDesignThemes.Wpf.Tests/PopupBoxTests.cs b/tests/MaterialDesignThemes.Wpf.Tests/PopupBoxTests.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/PopupBoxTests.cs rename to tests/MaterialDesignThemes.Wpf.Tests/PopupBoxTests.cs diff --git a/MaterialDesignThemes.Wpf.Tests/Properties/AssemblyInfo.cs b/tests/MaterialDesignThemes.Wpf.Tests/Properties/AssemblyInfo.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/Properties/AssemblyInfo.cs rename to tests/MaterialDesignThemes.Wpf.Tests/Properties/AssemblyInfo.cs diff --git a/MaterialDesignThemes.Wpf.Tests/RatingBarTests.cs b/tests/MaterialDesignThemes.Wpf.Tests/RatingBarTests.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/RatingBarTests.cs rename to tests/MaterialDesignThemes.Wpf.Tests/RatingBarTests.cs diff --git a/MaterialDesignThemes.Wpf.Tests/SnackbarMessageQueueItemTests.cs b/tests/MaterialDesignThemes.Wpf.Tests/SnackbarMessageQueueItemTests.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/SnackbarMessageQueueItemTests.cs rename to tests/MaterialDesignThemes.Wpf.Tests/SnackbarMessageQueueItemTests.cs diff --git a/MaterialDesignThemes.Wpf.Tests/SnackbarMessageQueueTests.cs b/tests/MaterialDesignThemes.Wpf.Tests/SnackbarMessageQueueTests.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/SnackbarMessageQueueTests.cs rename to tests/MaterialDesignThemes.Wpf.Tests/SnackbarMessageQueueTests.cs diff --git a/MaterialDesignThemes.Wpf.Tests/TextBlockTests.cs b/tests/MaterialDesignThemes.Wpf.Tests/TextBlockTests.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/TextBlockTests.cs rename to tests/MaterialDesignThemes.Wpf.Tests/TextBlockTests.cs diff --git a/MaterialDesignThemes.Wpf.Tests/TextBoxTests.cs b/tests/MaterialDesignThemes.Wpf.Tests/TextBoxTests.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/TextBoxTests.cs rename to tests/MaterialDesignThemes.Wpf.Tests/TextBoxTests.cs diff --git a/MaterialDesignThemes.Wpf.Tests/ThemeTests.cs b/tests/MaterialDesignThemes.Wpf.Tests/ThemeTests.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/ThemeTests.cs rename to tests/MaterialDesignThemes.Wpf.Tests/ThemeTests.cs diff --git a/MaterialDesignThemes.Wpf.Tests/TimePickerUnitTests.cs b/tests/MaterialDesignThemes.Wpf.Tests/TimePickerUnitTests.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/TimePickerUnitTests.cs rename to tests/MaterialDesignThemes.Wpf.Tests/TimePickerUnitTests.cs diff --git a/MaterialDesignThemes.Wpf.Tests/TransitionerTests.cs b/tests/MaterialDesignThemes.Wpf.Tests/TransitionerTests.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/TransitionerTests.cs rename to tests/MaterialDesignThemes.Wpf.Tests/TransitionerTests.cs diff --git a/MaterialDesignThemes.Wpf.Tests/TreeViewTests.cs b/tests/MaterialDesignThemes.Wpf.Tests/TreeViewTests.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/TreeViewTests.cs rename to tests/MaterialDesignThemes.Wpf.Tests/TreeViewTests.cs diff --git a/MaterialDesignThemes.Wpf.Tests/VisualTreeHelper.cs b/tests/MaterialDesignThemes.Wpf.Tests/VisualTreeHelper.cs similarity index 100% rename from MaterialDesignThemes.Wpf.Tests/VisualTreeHelper.cs rename to tests/MaterialDesignThemes.Wpf.Tests/VisualTreeHelper.cs